repo_name
stringlengths 6
97
| path
stringlengths 3
341
| text
stringlengths 8
1.02M
|
|---|---|---|
daoluan/Leaderboard-python
|
test.py
|
<gh_stars>1-10
# -*- coding: utf-8 -*-
#!/usr/bin/python
import redis
from main import Leaderboard
def print_list(thing):
for item in thing:
print "--->",item
print ""
def print_with_score(thing):
for item in thing:
print "--->",item[0],item[1]
print ""
if __name__ == "__main__":
"""test"""
topic = {
"深入剖析 redis 数据结构 intset":10,
"深入剖析 redis 事务机制":20,
"深入剖析 redis 数据结构 skiplist":30,
"深入剖析 redis 数据结构 redisObject":40,
"深入剖析 redis 数据结构 dict":50,
"redis 数据结构综述":60,
"红黑树并没有我们想象的那么难(上)":70,
"红黑树并没有我们想象的那么难(下)":100}
lb = Leaderboard("127.0.0.1",6379,"hot-spot",0)
for item,score in topic.iteritems():
lb.addMember(item,score)
print_with_score(lb.getWholeLeaderboard(True,True))
print_list(lb.getLeaderboardByPage(3,2))
print "红黑树并没有我们想象的那么难(下)'s ranking: ", \
lb.getRankByMember("红黑树并没有我们想象的那么难(下)"),"\n"
print "Test Leaderboard.addMember: ",lb.addMember("post-to-delete",1000),"\n"
print_list(lb.getWholeLeaderboard())
print "Test Leaderboard.delMember: ",lb.delMember("post-to-delete"),"\n"
print_list(lb.getWholeLeaderboard())
print "Test Leaderboard.incrScore: ",lb.incrScore("红黑树并没有我们想象的那么难(下)",100),"\n"
print_list(lb.getWholeLeaderboard())
|
SamDSchofield/t3d
|
t3d/__init__.py
|
"""Top-level package for T3D."""
__author__ = """<NAME>"""
__email__ = '<EMAIL>'
__version__ = '0.1.0'
|
SamDSchofield/t3d
|
t3d/t3d.py
|
<filename>t3d/t3d.py<gh_stars>0
"""
* Converting to and from lines, quaternions, matrices, etc
* Transforming a point or points"""
import cv2
import numpy as np
import transforms3d
def T_from_line(line):
"""Takes a stamp, x,y,z,q w,qx,qy,qz array and converts it to a 4x4 matrix
:param line: 1x8 array
:return: 4x4 array
"""
t = line[1:4]
quat = line[4:]
return T_from_quat(t, quat)
def T_to_line(T, stamp):
t, r, _, _ = transforms3d.affines.decompose(T)
r_quat = transforms3d.quaternions.mat2quat(r)
return np.hstack((stamp, t, r_quat))
def T_from_quat(t, quat):
r_mat = transforms3d.quaternions.quat2mat(quat)
T = transforms3d.affines.compose(t, r_mat, np.ones(3))
return T
def T_from_vec(t, vec):
r_mat, _ = cv2.Rodrigues(vec)
r_quat = transforms3d.quaternions.mat2quat(r_mat)
return T_from_quat(t, r_quat)
def T_to_quat(T):
pass
def T_to_vec(T):
t, r_mat, _, _ = transforms3d.affines.decompose(T)
r_vec, _ = cv2.Rodrigues(r_mat)
return t, r_vec.flatten()
def apply_T(T, points):
"""Convert an array of 3D points into homogeneous coords, left-multiply by T, then convert back."""
flipped = True
points = points.T
points_h = np.vstack((points, np.ones_like(points[0, :])))
points_transformed_h = np.dot(T, points_h)
points_transformed = points_transformed_h[:-1]
if flipped:
return points_transformed.T
return points_transformed
def apply_offset_before(trajectory, offset):
offset_trajectory = []
for pose in trajectory:
offset_pose = np.matmul(offset, pose)
offset_trajectory.append(offset_pose)
return np.array(offset_trajectory)
def apply_offset(trajectory, offset):
offset_trajectory = []
for pose in trajectory:
offset_pose = np.matmul(pose, offset)
offset_trajectory.append(offset_pose)
return np.array(offset_trajectory)
def compose_transform(position, rotation):
return transforms3d.affines.compose(T=position, R=rotation, Z=np.ones(3))
def traj_quat2euler(trajectory):
"""Take a (N,8) trajectory consisting of stamp, position, quaternion and convert
to stamp, position, euler.
"""
converted_trajectory = []
for stamp, *pose in trajectory:
quaternion = pose[3:]
euler = transforms3d.euler.quat2euler(quaternion)
converted_pose = np.concatenate([[stamp], pose[:3], euler]).T
converted_trajectory.append(converted_pose)
return np.array(converted_trajectory)
def traj_array2mat(trajectory):
"""Take a (N,8) trajectory consisting of stamp, position, quaternion and convert it
to a list of 4x4 pose matrices
"""
stamps = trajectory[:, 0]
mats = []
for pose in trajectory[:, 1:]:
position = pose[:3]
quaternion = pose[3:]
rotation_mat = transforms3d.quaternions.quat2mat(quaternion)
pose_mat = compose_transform(position, rotation_mat)
mats.append(pose_mat)
return stamps, np.array(mats)
def traj_mat2array(stamps, mat_traj):
flat_traj = []
for stamp, pose in zip(stamps, mat_traj):
flat_traj.append(T_to_line(pose, stamp))
return flat_traj
|
SamDSchofield/t3d
|
tests/__init__.py
|
"""Unit test package for t3d."""
|
kchida/aptly
|
system/t08_db/__init__.py
|
<reponame>kchida/aptly
"""
Testing DB operations
"""
from .cleanup import *
from .recover import *
|
kchida/aptly
|
system/t11_package/show.py
|
from lib import BaseTest
class ShowPackage1Test(BaseTest):
"""
show package: regular show
"""
fixtureDB = True
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
runCmd = "aptly package show 'Name (% nginx-extras*)'"
class ShowPackage2Test(BaseTest):
"""
show package: missing package
"""
runCmd = "aptly package show 'Name (package-xx)'"
class ShowPackage3Test(BaseTest):
"""
show package: by key
"""
fixtureDB = True
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
runCmd = "aptly package show nginx-full_1.2.1-2.2+wheezy2_amd64"
class ShowPackage4Test(BaseTest):
"""
show package: with files
"""
fixtureDB = True
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
gold_processor = BaseTest.expand_environ
runCmd = "aptly package show -with-files nginx-full_1.2.1-2.2+wheezy2_amd64"
class ShowPackage5Test(BaseTest):
"""
show package: with inclusion
"""
fixtureDB = True
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
runCmd = "aptly package show -with-references nginx-full_1.2.1-2.2+wheezy2_amd64"
class ShowPackage6Test(BaseTest):
"""
show package: with inclusion + more inclusions
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror wheezy-main",
"aptly snapshot create snap2 from mirror wheezy-contrib",
"aptly snapshot create snap3 from mirror wheezy-main-src",
"aptly snapshot merge snap4 snap1 snap2 snap3",
"aptly repo create repo1",
"aptly repo import wheezy-main repo1 nginx",
]
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
runCmd = "aptly package show -with-references nginx-full_1.2.1-2.2+wheezy2_amd64"
|
kchida/aptly
|
system/t06_publish/drop.py
|
<gh_stars>10-100
from lib import BaseTest
class PublishDrop1Test(BaseTest):
"""
publish drop: existing snapshot
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1",
]
runCmd = "aptly publish drop maverick"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishDrop1Test, self).check()
self.check_not_exists('public/dists/')
self.check_not_exists('public/pool/')
class PublishDrop2Test(BaseTest):
"""
publish drop: under prefix
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1 ppa/smira",
]
runCmd = "aptly publish drop maverick ppa/smira"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishDrop2Test, self).check()
self.check_not_exists('public/ppa/smira/dists/')
self.check_not_exists('public/ppa/smira/pool/')
self.check_exists('public/ppa/smira/')
class PublishDrop3Test(BaseTest):
"""
publish drop: drop one distribution
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq1 snap1",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq2 snap1",
]
runCmd = "aptly publish drop sq1"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishDrop3Test, self).check()
self.check_not_exists('public/dists/sq1')
self.check_exists('public/dists/sq2')
self.check_exists('public/pool/main/')
class PublishDrop4Test(BaseTest):
"""
publish drop: drop one of components
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq1 -component=contrib snap1",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq2 snap1",
]
runCmd = "aptly publish drop sq1"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishDrop4Test, self).check()
self.check_not_exists('public/dists/sq1')
self.check_exists('public/dists/sq2')
self.check_not_exists('public/pool/contrib/')
self.check_exists('public/pool/main/')
class PublishDrop5Test(BaseTest):
"""
publish drop: component cleanup
"""
fixtureCmds = [
"aptly repo create local1",
"aptly repo create local2",
"aptly repo add local1 ${files}/libboost-program-options-dev_1.49.0.1_i386.deb",
"aptly repo add local2 ${files}",
"aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq1 local1",
"aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq2 local2",
]
runCmd = "aptly publish drop sq2"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishDrop5Test, self).check()
self.check_exists('public/dists/sq1')
self.check_not_exists('public/dists/sq2')
self.check_exists('public/pool/main/')
self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc')
self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz')
self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz')
self.check_not_exists('public/pool/main/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc')
self.check_exists('public/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb')
class PublishDrop6Test(BaseTest):
"""
publish drop: no publish
"""
runCmd = "aptly publish drop sq1"
expectedCode = 1
|
kchida/aptly
|
system/t12_api/__init__.py
|
"""
Testing aptly REST API
"""
from .repos import *
from .files import *
|
kchida/aptly
|
system/t09_repo/edit.py
|
from lib import BaseTest
class EditRepo1Test(BaseTest):
"""
edit repo: change comment
"""
fixtureCmds = [
"aptly repo create repo1",
]
runCmd = "aptly repo edit -comment=Lala repo1"
def check(self):
self.check_output()
self.check_cmd_output("aptly repo show repo1", "repo-show")
class EditRepo2Test(BaseTest):
"""
edit repo: change distribution & component
"""
fixtureCmds = [
"aptly repo create -comment=Lala -component=non-free repo2",
]
runCmd = "aptly repo edit -distribution=wheezy -component=contrib repo2"
def check(self):
self.check_output()
self.check_cmd_output("aptly repo show repo2", "repo-show")
class EditRepo3Test(BaseTest):
"""
edit repo: no such repo
"""
runCmd = "aptly repo edit repo3"
expectedCode = 1
|
kchida/aptly
|
system/t07_serve/__init__.py
|
"""
Testing serving public repo
"""
import httplib
import os
import signal
import subprocess
import shlex
import time
from lib import BaseTest
class Serve1Test(BaseTest):
"""
serve public: two publishes, verify HTTP
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly snapshot create snap2 from mirror gnuplot-maverick-src",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap2 debian",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -component=main,contrib snap1 snap2 multi",
]
runCmd = "aptly serve -listen=127.0.0.1:8765"
def run(self):
try:
proc = subprocess.Popen(shlex.split(self.runCmd), stderr=subprocess.STDOUT, stdout=subprocess.PIPE, bufsize=0)
try:
time.sleep(1)
conn = httplib.HTTPConnection("127.0.0.1", 8765)
conn.request("GET", "/")
r = conn.getresponse()
if r.status != 200:
raise Exception("Expected status 200 != %d" % r.status)
self.http_response = r.read()
output = os.read(proc.stdout.fileno(), 8192)
finally:
proc.send_signal(signal.SIGINT)
proc.wait()
if proc.returncode != 2:
raise Exception("exit code %d != %d (output: %s)" % (proc.returncode, 2, output))
self.output = output
except Exception, e:
raise Exception("Running command %s failed: %s" % (self.runCmd, str(e)))
def check(self):
self.check_output()
self.verify_match(self.get_gold('http'), self.http_response, match_prepare=lambda s: "\n".join(sorted(s.split("\n"))))
class Serve2Test(BaseTest):
"""
serve public: no publishes
"""
runCmd = "aptly serve -listen=127.0.0.1:8765"
|
kchida/aptly
|
system/t09_repo/create.py
|
from lib import BaseTest
class CreateRepo1Test(BaseTest):
"""
create local repo: regular repo
"""
runCmd = "aptly repo create repo1"
def check(self):
self.check_output()
self.check_cmd_output("aptly repo show repo1", "repo_show")
class CreateRepo2Test(BaseTest):
"""
create local repo: regular repo with comment & publishing defaults
"""
runCmd = "aptly repo create -comment=Repository2 -distribution=maverick -component=non-free repo2"
def check(self):
self.check_output()
self.check_cmd_output("aptly repo show repo2", "repo_show")
class CreateRepo3Test(BaseTest):
"""
create local repo: duplicate name
"""
fixtureCmds = ["aptly repo create repo3"]
runCmd = "aptly repo create -comment=Repository3 repo3"
expectedCode = 1
|
kchida/aptly
|
system/t06_publish/switch.py
|
import os
import hashlib
import inspect
from lib import BaseTest
def strip_processor(output):
return "\n".join([l for l in output.split("\n") if not l.startswith(' ') and not l.startswith('Date:')])
class PublishSwitch1Test(BaseTest):
"""
publish switch: removed some packages
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly snapshot create snap2 empty",
"aptly snapshot pull -no-deps -architectures=i386,amd64 snap2 snap1 snap3 gnuplot-x11",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap1",
]
runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick snap3"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishSwitch1Test, self).check()
self.check_exists('public/dists/maverick/InRelease')
self.check_exists('public/dists/maverick/Release')
self.check_exists('public/dists/maverick/Release.gpg')
self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz')
self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2')
self.check_exists('public/dists/maverick/main/binary-amd64/Packages')
self.check_exists('public/dists/maverick/main/binary-amd64/Packages.gz')
self.check_exists('public/dists/maverick/main/binary-amd64/Packages.bz2')
self.check_exists('public/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb')
self.check_exists('public/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb')
self.check_not_exists('public/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb')
self.check_not_exists('public/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb')
# verify contents except of sums
self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor)
self.check_file_contents('public/dists/maverick/main/binary-i386/Packages', 'binary', match_prepare=lambda s: "\n".join(sorted(s.split("\n"))))
# verify signatures
self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"),
"--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/InRelease')])
self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"),
"--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release.gpg'),
os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release')])
# verify sums
release = self.read_file('public/dists/maverick/Release').split("\n")
release = [l for l in release if l.startswith(" ")]
pathsSeen = set()
for l in release:
fileHash, fileSize, path = l.split()
pathsSeen.add(path)
fileSize = int(fileSize)
st = os.stat(os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/', path))
if fileSize != st.st_size:
raise Exception("file size doesn't match for %s: %d != %d" % (path, fileSize, st.st_size))
if len(fileHash) == 32:
h = hashlib.md5()
elif len(fileHash) == 40:
h = hashlib.sha1()
else:
h = hashlib.sha256()
h.update(self.read_file(os.path.join('public/dists/maverick', path)))
if h.hexdigest() != fileHash:
raise Exception("file hash doesn't match for %s: %s != %s" % (path, fileHash, h.hexdigest()))
if pathsSeen != set(['main/binary-amd64/Packages', 'main/binary-i386/Packages', 'main/binary-i386/Packages.gz',
'main/binary-amd64/Packages.gz', 'main/binary-amd64/Packages.bz2', 'main/binary-i386/Packages.bz2',
'main/binary-amd64/Release', 'main/binary-i386/Release']):
raise Exception("path seen wrong: %r" % (pathsSeen, ))
class PublishSwitch2Test(BaseTest):
"""
publish switch: added some packages
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly snapshot create snap2 empty",
"aptly snapshot pull -no-deps -architectures=i386,amd64 snap2 snap1 snap3 gnuplot-x11",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap3 ppa",
]
runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick ppa snap1"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishSwitch2Test, self).check()
self.check_exists('public/ppa/dists/maverick/InRelease')
self.check_exists('public/ppa/dists/maverick/Release')
self.check_exists('public/ppa/dists/maverick/Release.gpg')
self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.gz')
self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.bz2')
self.check_exists('public/ppa/dists/maverick/main/binary-amd64/Packages')
self.check_exists('public/ppa/dists/maverick/main/binary-amd64/Packages.gz')
self.check_exists('public/ppa/dists/maverick/main/binary-amd64/Packages.bz2')
self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb')
self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb')
self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb')
self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb')
# verify contents except of sums
self.check_file_contents('public/ppa/dists/maverick/main/binary-i386/Packages', 'binary', match_prepare=lambda s: "\n".join(sorted(s.split("\n"))))
class PublishSwitch3Test(BaseTest):
"""
publish switch: removed some packages, files occupied by another package
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly snapshot create snap2 empty",
"aptly snapshot pull -no-deps -architectures=i386,amd64 snap2 snap1 snap3 gnuplot-x11",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap1",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick2 snap1",
]
runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick snap3"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishSwitch3Test, self).check()
self.check_exists('public/dists/maverick/InRelease')
self.check_exists('public/dists/maverick/Release')
self.check_exists('public/dists/maverick/Release.gpg')
self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz')
self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2')
self.check_exists('public/dists/maverick/main/binary-amd64/Packages')
self.check_exists('public/dists/maverick/main/binary-amd64/Packages.gz')
self.check_exists('public/dists/maverick/main/binary-amd64/Packages.bz2')
self.check_exists('public/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb')
self.check_exists('public/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb')
self.check_exists('public/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb')
self.check_exists('public/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb')
class PublishSwitch4Test(BaseTest):
"""
publish switch: added some packages, but list of published archs doesn't change
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly snapshot create snap2 empty",
"aptly snapshot pull -no-deps -architectures=i386 snap2 snap1 snap3 gnuplot-x11",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap3 ppa",
]
runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick ppa snap1"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishSwitch4Test, self).check()
self.check_exists('public/ppa/dists/maverick/InRelease')
self.check_exists('public/ppa/dists/maverick/Release')
self.check_exists('public/ppa/dists/maverick/Release.gpg')
self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.gz')
self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.bz2')
self.check_not_exists('public/ppa/dists/maverick/main/binary-amd64/Packages')
self.check_not_exists('public/ppa/dists/maverick/main/binary-amd64/Packages.gz')
self.check_not_exists('public/ppa/dists/maverick/main/binary-amd64/Packages.bz2')
self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb')
self.check_not_exists('public/ppa/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb')
self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb')
self.check_not_exists('public/ppa/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb')
class PublishSwitch5Test(BaseTest):
"""
publish switch: no such publish
"""
fixtureCmds = [
"aptly snapshot create snap1 empty",
]
runCmd = "aptly publish switch maverick ppa snap1"
expectedCode = 1
class PublishSwitch6Test(BaseTest):
"""
publish switch: not a snapshot
"""
fixtureCmds = [
"aptly snapshot create snap1 empty",
"aptly repo create local-repo",
"aptly repo add local-repo ${files}",
"aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo",
]
runCmd = "aptly publish switch maverick snap1"
expectedCode = 1
class PublishSwitch7Test(BaseTest):
"""
publish switch: no snapshot
"""
fixtureDB = True
fixturePool = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap1",
]
runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick snap3"
expectedCode = 1
class PublishSwitch8Test(BaseTest):
"""
publish switch: multi-component switching
"""
fixtureDB = True
fixturePoolCopy = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror gnuplot-maverick",
"aptly snapshot create snap2 empty",
"aptly repo create local-repo",
"aptly repo add local-repo ${files}",
"aptly snapshot create local1 from repo local-repo",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick -component=a,b,c snap1 snap2 local1",
"aptly snapshot pull -no-deps -architectures=i386,amd64 snap2 snap1 snap3 gnuplot-x11",
"aptly repo remove local-repo pyspi",
"aptly snapshot create local2 from repo local-repo",
]
runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -component=b,c maverick snap3 local2"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishSwitch8Test, self).check()
self.check_exists('public/dists/maverick/InRelease')
self.check_exists('public/dists/maverick/Release')
self.check_exists('public/dists/maverick/Release.gpg')
for component in ("a", "b", "c"):
self.check_exists('public/dists/maverick/' + component + '/binary-i386/Packages')
self.check_exists('public/dists/maverick/' + component + '/binary-i386/Packages.gz')
self.check_exists('public/dists/maverick/' + component + '/binary-i386/Packages.bz2')
self.check_exists('public/dists/maverick/' + component + '/binary-amd64/Packages')
self.check_exists('public/dists/maverick/' + component + '/binary-amd64/Packages.gz')
self.check_exists('public/dists/maverick/' + component + '/binary-amd64/Packages.bz2')
self.check_exists('public/dists/maverick/' + component + '/source/Sources')
self.check_exists('public/dists/maverick/' + component + '/source/Sources.gz')
self.check_exists('public/dists/maverick/' + component + '/source/Sources.bz2')
self.check_exists('public/pool/a/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb')
self.check_exists('public/pool/a/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb')
self.check_exists('public/pool/a/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb')
self.check_exists('public/pool/a/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb')
self.check_exists('public/pool/b/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb')
self.check_exists('public/pool/b/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb')
self.check_not_exists('public/pool/b/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb')
self.check_not_exists('public/pool/b/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb')
self.check_exists('public/pool/c/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb')
self.check_not_exists('public/pool/c/p/pyspi/pyspi_0.6.1-1.3.dsc')
self.check_not_exists('public/pool/c/p/pyspi/pyspi_0.6.1-1.3.diff.gz')
self.check_not_exists('public/pool/c/p/pyspi/pyspi_0.6.1.orig.tar.gz')
self.check_not_exists('public/pool/c/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc')
# verify contents except of sums
self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor)
self.check_file_contents('public/dists/maverick/a/binary-i386/Packages', 'binaryA', match_prepare=lambda s: "\n".join(sorted(s.split("\n"))))
self.check_file_contents('public/dists/maverick/b/binary-i386/Packages', 'binaryB', match_prepare=lambda s: "\n".join(sorted(s.split("\n"))))
self.check_file_contents('public/dists/maverick/c/binary-i386/Packages', 'binaryC', match_prepare=lambda s: "\n".join(sorted(s.split("\n"))))
# verify signatures
self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"),
"--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/InRelease')])
self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"),
"--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release.gpg'),
os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release')])
# verify sums
release = self.read_file('public/dists/maverick/Release').split("\n")
release = [l for l in release if l.startswith(" ")]
pathsSeen = set()
for l in release:
fileHash, fileSize, path = l.split()
pathsSeen.add(path)
fileSize = int(fileSize)
st = os.stat(os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/', path))
if fileSize != st.st_size:
raise Exception("file size doesn't match for %s: %d != %d" % (path, fileSize, st.st_size))
if len(fileHash) == 32:
h = hashlib.md5()
elif len(fileHash) == 40:
h = hashlib.sha1()
else:
h = hashlib.sha256()
h.update(self.read_file(os.path.join('public/dists/maverick', path)))
if h.hexdigest() != fileHash:
raise Exception("file hash doesn't match for %s: %s != %s" % (path, fileHash, h.hexdigest()))
if pathsSeen != set(['a/binary-amd64/Packages', 'c/source/Sources', 'c/binary-amd64/Packages.bz2', 'b/binary-amd64/Packages',
'a/source/Sources', 'a/binary-i386/Packages.bz2', 'b/source/Sources.bz2', 'b/binary-amd64/Packages.bz2',
'c/binary-i386/Packages', 'a/binary-i386/Packages', 'c/binary-amd64/Packages', 'a/source/Sources.gz',
'b/binary-i386/Packages.gz', 'c/binary-amd64/Packages.gz', 'a/binary-amd64/Packages.bz2', 'c/source/Sources.bz2',
'c/source/Sources.gz', 'a/source/Sources.bz2', 'b/binary-i386/Packages.bz2', 'a/binary-i386/Packages.gz',
'a/binary-amd64/Packages.gz', 'c/binary-i386/Packages.bz2', 'b/binary-amd64/Packages.gz', 'b/source/Sources',
'c/binary-i386/Packages.gz', 'b/source/Sources.gz', 'b/binary-i386/Packages',
'a/binary-amd64/Release', 'b/binary-amd64/Release', 'c/binary-amd64/Release',
'a/binary-i386/Release', 'b/binary-i386/Release', 'c/binary-i386/Release',
'a/source/Release', 'b/source/Release', 'c/source/Release']):
raise Exception("path seen wrong: %r" % (pathsSeen, ))
class PublishSwitch9Test(BaseTest):
"""
publish switch: components/snapshots mismatch
"""
fixtureCmds = [
"aptly snapshot create snap1 empty",
"aptly snapshot create snap2 empty",
"aptly publish snapshot -architectures=i386 -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick -component=a,b snap1 snap2",
]
runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -component=a,b maverick snap2"
expectedCode = 2
outputMatchPrepare = lambda _, s: "\n".join([l for l in s.split("\n") if l.startswith("ERROR")])
class PublishSwitch10Test(BaseTest):
"""
publish switch: conflicting files in the snapshot
"""
fixtureCmds = [
"aptly repo create local-repo1",
"aptly repo add local-repo1 ${files}",
"aptly snapshot create snap1 from repo local-repo1",
"aptly repo create local-repo2",
"aptly repo add local-repo2 ${testfiles}",
"aptly snapshot create snap2 from repo local-repo2",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap1",
]
runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick snap2"
expectedCode = 1
gold_processor = BaseTest.expand_environ
class PublishSwitch11Test(BaseTest):
"""
publish switch: -force-overwrite
"""
fixtureCmds = [
"aptly repo create local-repo1",
"aptly repo add local-repo1 ${files}",
"aptly snapshot create snap1 from repo local-repo1",
"aptly repo create local-repo2",
"aptly repo add local-repo2 ${testfiles}",
"aptly snapshot create snap2 from repo local-repo2",
"aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap1",
]
runCmd = "aptly publish switch -force-overwrite -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick snap2"
gold_processor = BaseTest.expand_environ
def check(self):
super(PublishSwitch11Test, self).check()
self.check_file_contents("public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz", "file")
|
kchida/aptly
|
system/t11_package/search.py
|
<filename>system/t11_package/search.py
from lib import BaseTest
class SearchPackage1Test(BaseTest):
"""
search package: regular search
"""
fixtureDB = True
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
runCmd = "aptly package search '$$Architecture (i386), Name (% *-dev)'"
class SearchPackage2Test(BaseTest):
"""
search package: missing package
"""
runCmd = "aptly package search 'Name (package-xx)'"
class SearchPackage3Test(BaseTest):
"""
search package: by key
"""
fixtureDB = True
runCmd = "aptly package search nginx-full_1.2.1-2.2+wheezy2_amd64"
class SearchPackage4Test(BaseTest):
"""
search package: by dependency
"""
fixtureDB = True
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
runCmd = "aptly package search coreutils"
|
kchida/aptly
|
system/t04_mirror/search.py
|
from lib import BaseTest
class SearchMirror1Test(BaseTest):
"""
search mirror: regular search
"""
fixtureDB = True
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
runCmd = "aptly mirror search wheezy-main '$$Architecture (i386), Name (% *-dev)'"
class SearchMirror2Test(BaseTest):
"""
search mirror: missing mirror
"""
runCmd = "aptly mirror search mirror-xx 'Name'"
expectedCode = 1
class SearchMirror3Test(BaseTest):
"""
search mirror: wrong expression
"""
fixtureDB = True
expectedCode = 1
runCmd = "aptly mirror search wheezy-main '$$Architecture (i386'"
class SearchMirror4Test(BaseTest):
"""
search mirror: with-deps search
"""
fixtureDB = True
outputMatchPrepare = lambda _, s: "\n".join(sorted(s.split("\n")))
runCmd = "aptly mirror search -with-deps wheezy-main 'Name (nginx)'"
|
kchida/aptly
|
system/t10_task/__init__.py
|
<reponame>kchida/aptly
"""
Test aptly task run
"""
from .run import *
|
kchida/aptly
|
system/t11_package/__init__.py
|
<filename>system/t11_package/__init__.py
"""
Testing package subcommands
"""
from .search import *
from .show import *
|
kchida/aptly
|
system/t09_repo/remove.py
|
from lib import BaseTest
class RemoveRepo1Test(BaseTest):
"""
remove from local repo: as dep
"""
fixtureCmds = [
"aptly repo create -comment=Cool -distribution=squeeze local-repo",
"aptly repo add local-repo ${files}"
]
runCmd = "aptly repo remove local-repo pyspi some"
def check(self):
self.check_output()
self.check_cmd_output("aptly repo show -with-packages local-repo", "repo_show")
def output_processor(self, output):
return "\n".join(sorted(output.split("\n")))
class RemoveRepo2Test(BaseTest):
"""
remove from local repo: as dep with version, key
"""
fixtureCmds = [
"aptly repo create -comment=Cool -distribution=squeeze local-repo",
"aptly repo add local-repo ${files}"
]
runCmd = "aptly repo remove local-repo 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386"
def check(self):
self.check_output()
self.check_cmd_output("aptly repo show -with-packages local-repo", "repo_show")
def output_processor(self, output):
return "\n".join(sorted(output.split("\n")))
class RemoveRepo3Test(BaseTest):
"""
remove from local repo: no such repo
"""
runCmd = "aptly repo remove local-repo 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386"
expectedCode = 1
class RemoveRepo4Test(BaseTest):
"""
remove from local repo: dry run
"""
fixtureCmds = [
"aptly repo create -comment=Cool -distribution=squeeze local-repo",
"aptly repo add local-repo ${files}"
]
runCmd = "aptly repo remove -dry-run local-repo 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386"
def check(self):
self.check_output()
self.check_cmd_output("aptly repo show -with-packages local-repo", "repo_show")
def output_processor(self, output):
return "\n".join(sorted(output.split("\n")))
|
kchida/aptly
|
system/t05_snapshot/list.py
|
<reponame>kchida/aptly
from lib import BaseTest
class ListSnapshot1Test(BaseTest):
"""
list snapshots: regular list
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror wheezy-main",
"aptly snapshot create snap2 from mirror wheezy-contrib",
"aptly snapshot merge snap3 snap1 snap2",
"aptly snapshot pull snap1 snap2 snap4 mame unrar",
"aptly repo create local-repo",
"aptly repo add local-repo ${files}",
"aptly snapshot create snap5 from repo local-repo",
]
runCmd = "aptly snapshot list"
class ListSnapshot2Test(BaseTest):
"""
list snapshots: empty list
"""
runCmd = "aptly snapshot list"
class ListSnapshot3Test(BaseTest):
"""
list snapshots: raw regular list
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror wheezy-main",
"aptly snapshot create snap2 from mirror wheezy-contrib",
"aptly snapshot merge snap3 snap1 snap2",
"aptly snapshot pull snap1 snap2 snap4 mame unrar",
"aptly repo create local-repo",
"aptly repo add local-repo ${files}",
"aptly snapshot create snap5 from repo local-repo",
]
runCmd = "aptly -raw snapshot list"
class ListSnapshot4Test(BaseTest):
"""
list snapshots: raw empty list
"""
runCmd = "aptly snapshot -raw list"
class ListSnapshot5Test(BaseTest):
"""
list snapshots: raw regular list sorted by time
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap2 from mirror wheezy-main",
"aptly snapshot create snap1 from mirror wheezy-contrib",
"aptly snapshot merge snap3 snap1 snap2",
"aptly snapshot pull snap1 snap2 snap4 mame unrar",
"aptly repo create local-repo",
"aptly repo add local-repo ${files}",
"aptly snapshot create snap5 from repo local-repo",
]
runCmd = "aptly -raw -sort=time snapshot list"
class ListSnapshot6Test(BaseTest):
"""
list snapshots: regular list sorted by time
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap2 from mirror wheezy-contrib",
"aptly snapshot create snap1 from mirror wheezy-main",
"aptly snapshot merge snap3 snap1 snap2",
"aptly snapshot pull snap1 snap2 snap4 mame unrar",
"aptly repo create local-repo",
"aptly repo add local-repo ${files}",
"aptly snapshot create snap5 from repo local-repo",
]
runCmd = "aptly -sort=time snapshot list"
class ListSnapshot7Test(BaseTest):
"""
list snapshots: wrong parameter sort
"""
runCmd = "aptly -sort=planet snapshot list"
expectedCode = 1
|
kchida/aptly
|
system/t05_snapshot/show.py
|
from lib import BaseTest
import re
class ShowSnapshot1Test(BaseTest):
"""
show snapshot: from mirror
"""
fixtureDB = True
fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-non-free"]
runCmd = "aptly snapshot show --with-packages snap1"
outputMatchPrepare = lambda _, s: re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s)
class ShowSnapshot2Test(BaseTest):
"""
show snapshot: no snapshot
"""
fixtureDB = True
runCmd = "aptly snapshot show no-such-snapshot"
expectedCode = 1
class ShowSnapshot3Test(BaseTest):
"""
show snapshot: from mirror w/o packages
"""
fixtureDB = True
fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-non-free"]
runCmd = "aptly snapshot show snap1"
outputMatchPrepare = lambda _, s: re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s)
|
kchida/aptly
|
system/t05_snapshot/__init__.py
|
<gh_stars>10-100
"""
Testing snapshot management
"""
from .create import *
from .show import *
from .list import *
from .verify import *
from .pull import *
from .diff import *
from .merge import *
from .drop import *
from .rename import *
from .search import *
from .filter import *
|
kchida/aptly
|
system/s3_lib.py
|
<gh_stars>1-10
from lib import BaseTest
import uuid
import os
try:
import boto
if 'AWS_SECRET_ACCESS_KEY' in os.environ and 'AWS_ACCESS_KEY_ID' in os.environ:
s3_conn = boto.connect_s3()
else:
s3_conn = None
except ImportError:
s3_conn = None
class S3Test(BaseTest):
"""
BaseTest + support for S3
"""
def fixture_available(self):
return super(S3Test, self).fixture_available() and s3_conn is not None
def prepare(self):
self.bucket_name = "aptly-sys-test-" + str(uuid.uuid4())
self.bucket = s3_conn.create_bucket(self.bucket_name)
self.configOverride = {"S3PublishEndpoints": {
"test1": {
"region": "us-east-1",
"bucket": self.bucket_name,
}
}}
super(S3Test, self).prepare()
def shutdown(self):
if hasattr(self, "bucket_name"):
if hasattr(self, "bucket"):
keys = self.bucket.list()
if keys:
self.bucket.delete_keys(keys)
s3_conn.delete_bucket(self.bucket_name)
super(S3Test, self).shutdown()
def check_path(self, path):
if not hasattr(self, "bucket_contents"):
self.bucket_contents = [key.name for key in self.bucket.list()]
if path.startswith("public/"):
path = path[7:]
if path in self.bucket_contents:
return True
if not path.endswith("/"):
path = path + "/"
for item in self.bucket_contents:
if item.startswith(path):
return True
return False
def check_exists(self, path):
if not self.check_path(path):
raise Exception("path %s doesn't exist" % (path, ))
def check_not_exists(self, path):
if self.check_path(path):
raise Exception("path %s exists" % (path, ))
def read_file(self, path):
if path.startswith("public/"):
path = path[7:]
key = self.bucket.get_key(path)
return key.get_contents_as_string()
|
kchida/aptly
|
system/t12_api/files.py
|
from api_lib import APITest
class FilesAPITestUpload(APITest):
"""
POST /files/:dir
"""
def check(self):
d = self.random_name()
resp = self.upload("/api/files/" + d, "pyspi_0.6.1-1.3.dsc")
self.check_equal(resp.status_code, 200)
self.check_equal(resp.json(), [d + '/pyspi_0.6.1-1.3.dsc'])
self.check_exists("upload/" + d + '/pyspi_0.6.1-1.3.dsc')
class FilesAPITestUploadMulti(APITest):
"""
POST /files/:dir, GET /files/:dir multi files
"""
def check(self):
d = self.random_name()
self.check_equal(self.get("/api/files/" + d).status_code, 404)
resp = self.upload("/api/files/" + d, "pyspi_0.6.1-1.3.dsc", "pyspi_0.6.1-1.3.diff.gz", "pyspi_0.6.1.orig.tar.gz")
self.check_equal(resp.status_code, 200)
self.check_equal(sorted(resp.json()),
[d + '/pyspi_0.6.1-1.3.diff.gz', d + '/pyspi_0.6.1-1.3.dsc', d + '/pyspi_0.6.1.orig.tar.gz'])
self.check_exists("upload/" + d + '/pyspi_0.6.1-1.3.dsc')
self.check_exists("upload/" + d + '/pyspi_0.6.1-1.3.diff.gz')
self.check_exists("upload/" + d + '/pyspi_0.6.1.orig.tar.gz')
resp = self.get("/api/files/" + d)
self.check_equal(resp.status_code, 200)
self.check_equal(sorted(resp.json()),
['pyspi_0.6.1-1.3.diff.gz', 'pyspi_0.6.1-1.3.dsc', 'pyspi_0.6.1.orig.tar.gz'])
class FilesAPITestList(APITest):
"""
GET /files/
"""
def check(self):
d1, d2, d3 = self.random_name(), self.random_name(), self.random_name()
resp = self.get("/api/files")
self.check_equal(resp.status_code, 200)
self.check_equal(resp.json(), [])
self.check_equal(self.upload("/api/files/" + d1, "pyspi_0.6.1-1.3.dsc").status_code, 200)
self.check_equal(self.upload("/api/files/" + d2, "pyspi_0.6.1-1.3.dsc").status_code, 200)
self.check_equal(self.upload("/api/files/" + d3, "pyspi_0.6.1-1.3.dsc").status_code, 200)
resp = self.get("/api/files")
self.check_equal(resp.status_code, 200)
self.check_equal(sorted(resp.json()), sorted([d1, d2, d3]))
class FilesAPITestDelete(APITest):
"""
DELETE /files/:dir, DELETE /files/:dir/:name
"""
def check(self):
d1, d2 = self.random_name(), self.random_name()
self.check_equal(self.get("/api/files").json(), [])
self.check_equal(self.delete("/api/files/" + d1).status_code, 200)
self.check_equal(self.delete("/api/files/" + d1 + "/" + "pyspi_0.6.1-1.3.dsc").status_code, 200)
self.check_equal(self.upload("/api/files/" + d1, "pyspi_0.6.1-1.3.dsc").status_code, 200)
self.check_equal(self.upload("/api/files/" + d2, "pyspi_0.6.1-1.3.dsc").status_code, 200)
self.check_equal(self.delete("/api/files/" + d1).status_code, 200)
self.check_equal(self.get("/api/files").json(), [d2])
self.check_equal(self.delete("/api/files/" + d2 + "/" + "no-such-file").status_code, 200)
self.check_equal(self.get("/api/files/" + d2).json(), ["pyspi_0.6.1-1.3.dsc"])
self.check_equal(self.delete("/api/files/" + d2 + "/" + "pyspi_0.6.1-1.3.dsc").status_code, 200)
self.check_equal(self.get("/api/files").json(), [d2])
self.check_equal(self.get("/api/files/" + d2).json(), [])
class FilesAPITestSecurity(APITest):
"""
delete & upload security
"""
def check(self):
self.check_equal(self.delete("/api/files/.").status_code, 400)
self.check_equal(self.delete("/api/files").status_code, 404)
self.check_equal(self.delete("/api/files/../.").status_code, 400)
self.check_equal(self.delete("/api/files/./..").status_code, 400)
self.check_equal(self.delete("/api/files/dir/..").status_code, 400)
|
kchida/aptly
|
system/t09_repo/__init__.py
|
"""
Testing local repo management
"""
from .add import *
from .copy import *
from .create import *
from .drop import *
from .edit import *
from .cmdimport import *
from .list import *
from .move import *
from .remove import *
from .show import *
from .rename import *
from .search import *
|
kchida/aptly
|
system/t04_mirror/__init__.py
|
"""
Testing mirror management
"""
from .create import *
from .show import *
from .list import *
from .update import *
from .drop import *
from .rename import *
from .edit import *
from .search import *
|
fromRussiaImportLove/yatube
|
yatube/posts/tests/tests_posts.py
|
<gh_stars>0
from django.shortcuts import reverse
from django.test import TestCase
from posts.models import Group, Post, User
class TestCreatePost(TestCase):
def setUp(self):
self.text = 'I\'m Muzzy! I\'m big Muzzy!'
self.user = User.objects.create(username='muzzy')
self.group = Group.objects.create(title='Gondoland', slug='gondoland')
self.path = reverse('new_post')
self.client.force_login(self.user)
def test_newpost_auth_user_post_redirect_to_index(self):
response = self.client.post(self.path, {'text': self.text})
self.assertRedirects(response, reverse('index'))
def test_newpost_with_text_added_to_model(self):
self.client.post(self.path, {'text': self.text})
self.assertTrue(Post.objects.filter(text=self.text).exists())
def test_newpost_with_group_added_to_model(self):
self.client.post(self.path, {
'text': self.text, 'group': self.group.id})
self.assertEqual(self.group.posts.last().text, self.text)
def test_newpost_with_image_added_to_model(self):
with open('posts/tests/image.png', 'rb') as img:
self.client.post(self.path, {
'text': self.text, 'image': img})
self.assertTrue(Post.objects.first().image)
def test_newpost_with_group_image_added_to_model(self):
with open('posts/tests/image.png', 'rb') as img:
self.client.post(self.path, {
'text': self.text, 'group': self.group.id, 'image': img})
self.assertTrue(self.group.posts.last().image)
def test_newpost_form_error_with_nonimage(self):
with open('posts/tests/nonimage.png', 'rb') as img:
response = self.client.post(
self.path,
{'text': 'text', 'image': img},
)
self.assertIn('image', response.context['form'].errors)
class TestEditPost(TestCase):
def setUp(self):
self.text = 'I\'m Muzzy! I\'m big Muzzy!'
self.new_text = 'I love parking meters'
self.user = User.objects.create(username='muzzy')
self.group1 = Group.objects.create(title='Gondoland', slug='gondoland')
self.group2 = Group.objects.create(title='Neverland', slug='neverland')
self.image_path = 'posts/photo.png'
self.post = Post.objects.create(author=self.user,
text=self.text,
group=self.group1,
image=self.image_path)
self.path = reverse('post_edit',
kwargs={
'username': self.user.username,
'post_id': self.post.id})
self.client.force_login(self.user)
def test_editpost_auth_user_post_redirect_to_index(self):
response = self.client.post(self.path, {'text': self.text})
self.post = Post.objects.first()
self.assertRedirects(response,
reverse('post_view',
kwargs={
'username': self.user.username,
'post_id': self.post.id}))
def test_editpost_text_changed(self):
self.client.post(self.path, {'text': self.new_text})
self.post = Post.objects.first()
self.assertEqual(self.post.text, self.new_text)
self.assertNotEqual(self.post.text, self.text)
def test_editpost_group_changed(self):
self.client.post(self.path, {
'text': self.text, 'group': self.group2.id})
self.post = Post.objects.first()
self.assertEqual(self.post.group, self.group2)
self.assertNotEqual(self.post.group, self.group1)
self.assertEqual(self.group1.posts.count(), 0)
self.assertEqual(self.group2.posts.count(), 1)
def test_editpost_image_changed(self):
with open('posts/tests/image.png', 'rb') as img:
self.client.post(self.path, {
'text': self.text, 'group': self.group1.id, 'image': img})
self.post = Post.objects.first()
self.assertEqual(self.post.text, self.text)
self.assertEqual(self.post.group, self.group1)
self.assertTrue(self.post.image)
self.assertNotEqual(self.post.image, self.image_path)
def test_editpost_image_remove(self):
self.client.post(self.path, {
'text': self.text, 'group': self.group1.id, 'image-clear': 'True'})
self.post = Post.objects.first()
self.assertEqual(self.post.text, self.text)
self.assertEqual(self.post.group, self.group1)
self.assertFalse(self.post.image)
self.assertNotEqual(self.post.image, self.image_path)
def test_editpost_group_remove(self):
self.client.post(self.path, {'text': self.text, 'group': ''})
self.post = Post.objects.first()
self.assertFalse(self.post.group)
self.assertNotEqual(self.post.group, self.group1)
self.assertNotEqual(self.post.group, self.group2)
self.assertEqual(self.group1.posts.count(), 0)
self.assertEqual(self.group2.posts.count(), 0)
def test_newpost_form_error_with_nonimage(self):
with open('posts/tests/nonimage.png', 'rb') as img:
response = self.client.post(
self.path,
{'text': 'text', 'image': img},
)
self.assertIn('image', response.context['form'].errors)
class TestGetPostInPages(TestCase):
def setUp(self):
self.text = 'I love parking meters'
self.img_tag = 'img class="card-img" src="/media/'
self.user = User.objects.create(username='muzzy')
self.group = Group.objects.create(title='Gondoland', slug='gondoland')
self.image_path = 'posts/photo.png'
self.post = Post.objects.create(author=self.user,
text=self.text,
group=self.group,
image=self.image_path)
self.paths = (
reverse('index'),
reverse('profile', args=(self.user.username,)),
reverse('group_posts', args=(self.group.slug,)),
reverse('post_view', kwargs={
'username': self.user.username, 'post_id': self.post.id
}),
)
def test_get_newpost_text_at_paths(self):
for path in self.paths:
with self.subTest(path=path):
self.assertContains(self.client.get(path), self.text)
def test_get_newpost_image_at_paths(self):
for path in self.paths:
with self.subTest(path=path):
self.assertContains(self.client.get(path), self.img_tag)
|
fromRussiaImportLove/yatube
|
yatube/posts/migrations/0010_auto_20200525_1735.py
|
# Generated by Django 2.2.6 on 2020-05-25 14:35
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('posts', '0009_follow'),
]
operations = [
migrations.AlterField(
model_name='follow',
name='author',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='followers', to=settings.AUTH_USER_MODEL),
),
migrations.AlterField(
model_name='follow',
name='user',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='favorite_authors', to=settings.AUTH_USER_MODEL),
),
]
|
fromRussiaImportLove/yatube
|
yatube/posts/models.py
|
from django.contrib.auth import get_user_model
from django.db import models
User = get_user_model()
class Group(models.Model):
title = models.CharField(max_length=200)
slug = models.SlugField(max_length=200, unique=True)
description = models.TextField()
def __str__(self):
return f'{self.slug}: {self.title}'
class Post(models.Model):
text = models.TextField()
pub_date = models.DateTimeField(
verbose_name='date published',
auto_now_add=True)
author = models.ForeignKey(
User,
on_delete=models.CASCADE,
related_name='posts')
group = models.ForeignKey(
Group,
on_delete=models.SET_NULL,
blank=True,
null=True,
related_name='posts')
image = models.ImageField(
upload_to='posts/',
blank=True,
null=True)
class Meta:
ordering = ['-pub_date']
def __str__(self):
return f'{self.pub_date.date()} {self.text[:15]} ({self.pk})'
class Comment(models.Model):
post = models.ForeignKey(
Post,
on_delete=models.CASCADE,
related_name='comments'
)
author = models.ForeignKey(
User,
on_delete=models.CASCADE,
related_name='comments')
text = models.TextField()
created = models.DateTimeField(
verbose_name='date commented',
auto_now_add=True)
class Meta:
ordering = ['-created']
def __str__(self):
return f'{self.author.username} {self.text[:15]} ({self.pk})'
class FollowManager(models.Manager):
def is_follow(self, author, user):
if user.is_authenticated:
return super().filter(author=author, user=user).exists()
return False
def posts(self):
authors = self.all().values('author_id')
posts_list = Post.objects.filter(
author__in=authors).order_by('-pub_date')
return posts_list
def check_related_name(self, user_obj):
"""
Расставляем автора и пользователя в зависимости от realted_name
Дополнительная функция, которая в зависимости от отношений
(соответствующего сета) понимает кто есть автор, а кто пользователь
сделана для универсальности вызова функций contains, append, remove
"""
user, author = self.instance, user_obj
if self.field.name == 'author':
user, author = author, user
return user, author
def contains(self, user_obj):
"""
Универсальный метод для проверки followers и following
Одинаково корректно проверят вне зависимости от related_name.
Можно использовать как user.follower.contains(author)
Чтобы проверить есть ли автор в подписках пользователя
И можно наоборот author.following.contains(user)
Чтобы проверить есть ли пользователь в последователях у автора.
:param user_obj: в зависимости от контекста user или author
"""
user, author = self.check_related_name(user_obj)
return self.is_follow(author=author, user=user)
def append(self, user_obj):
"""
Универасальный метод добавить как любимого автора так и подписчика
Вызывается подобно contains:
user.follower.append(author)
author.following.append(user)
"""
user, author = self.check_related_name(user_obj)
if author != user:
self.get_or_create(user=user, author=author)
def remove(self, user_obj):
""" Универсальный метод по удалению любимого автора или подписчика """
user, author = self.check_related_name(user_obj)
follow = self.filter(user=user, author=author)
follow.delete()
def switch(self, user_obj):
""" Метод который позволят переключать состояние: подписан/нет """
if self.contains(user_obj):
self.remove(user_obj)
else:
self.append(user_obj)
class Follow(models.Model):
user = models.ForeignKey(
User,
on_delete=models.CASCADE,
related_name='follower')
author = models.ForeignKey(
User,
on_delete=models.CASCADE,
related_name='following')
objects = FollowManager()
class Meta:
models.UniqueConstraint(fields=['user', 'author'],
name='unique_follow')
def __str__(self):
return f'{self.user.username} follow to {self.author.username}'
|
fromRussiaImportLove/yatube
|
yatube/posts/tests/tests_cache.py
|
from django.core.cache import cache
from django.shortcuts import reverse
from django.test import TestCase, override_settings
from posts.models import Post, User
class TestCachingPost(TestCase):
def setUp(self):
self.text = 'I love parking meters'
self.user = User.objects.create(username='muzzy')
self.post = Post.objects.create(author=self.user,
text=self.text,)
self.paths = (
reverse('index'),
reverse('profile', args=(self.user.username,)),
)
cache.clear()
@override_settings(
CACHES={
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
}
}
)
def test_caching_text(self):
cache.clear()
self.assertContains(self.client.get(reverse('index')), self.text)
self.post.text = 'SOME_ANOTHER_TEXT'
self.post.save()
self.assertContains(self.client.get(reverse('index')), self.text)
def test_new_post_is_on_index(self):
text = 'SOME_ANOTHER_TEXT'
cache.clear()
with self.settings(CACHES={
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}}):
self.client.get(reverse('index'))
self.client.force_login(self.user)
self.client.post(reverse('new_post'), {'text': text}, follow=True)
response_index = self.client.get(reverse('index'))
self.assertNotContains(response_index, text)
def test_header(self):
response = self.client.get(reverse('index'))
self.assertTrue(response.has_header('Cache-Control'))
|
fromRussiaImportLove/yatube
|
yatube/users/templatetags/user_filters.py
|
from django import template
from django.template.defaultfilters import stringfilter
"""
В template.Library зарегистрированы все теги и фильтры шаблонов
добавляем к ним и наш фильтры
"""
register = template.Library()
@register.filter
def addclass(field, css):
""" Стоит разобраться, что это за фильтр """
return field.as_widget(attrs={'class': css})
@register.filter
@stringfilter
def pluralized(value, forms):
"""
Подбирает окончание существительному после числа
{{someval|pluralize:"товар,товара,товаров"}}
"""
try:
one, two, many = forms.split(u',')
value = str(value)
if (21 > int(value) > 4):
return value + ' ' + many
if value.endswith('1'):
return value + ' ' + one
elif value.endswith(('2', '3', '4')):
return value + ' ' + two
else:
return value + ' ' + many
except (ValueError, TypeError):
return ''
|
fromRussiaImportLove/yatube
|
yatube/posts/forms.py
|
from django.forms import ModelForm, Textarea
from posts.models import Comment, Post
class PostForm(ModelForm):
class Meta:
model = Post
fields = ('group', 'text', 'image')
labels = {
'group': 'Тематическая группа',
'text': 'Ваша заметка',
'image': 'Изображение',
}
help_texts = {
'group': 'Ваш пост появиться в этой группе',
'text:': 'Здесь вы можете излить свои мысли',
'image': 'Иллюстрация добавит выразительности',
}
widgets = {
'text': Textarea(attrs={
'placeholder': 'Здесь вы можете излить свои мысли',
'overflow': 'auto',
}),
}
error_messages = {
'image': {
'images': 'нужна каринка',
'invalid_extension': 'картинка нужна',
},
'text': {
'required': 'без гениальных мыслей нельзя',
}
}
class CommentForm(ModelForm):
class Meta:
model = Comment
fields = ('text',)
labels = {
'text': 'текст комментария',
}
help_texts = {
'text': 'можно добавить остроты',
}
error_messages = {
'text': {
'required': 'без гениальных мыслей нельзя',
},
}
widgets = {
'text': Textarea(attrs={
'width': '90%',
'rows': 4,
'resize': 'vertical',
'PlaceHolder': 'Писать тут', }),
}
|
fromRussiaImportLove/yatube
|
yatube/posts/tests/tests_comments.py
|
from django.shortcuts import reverse
from django.test import TestCase
from posts.models import Comment, Post, User
class TestAddCommentCase(TestCase):
def setUp(self):
author = User.objects.create(username='alice')
text = 'ALICE_MESSAGE'
self.commentator = User.objects.create(username='corvex')
self.comment = 'I like Alice'
post = Post.objects.create(author=author, text=text)
self.path = reverse('add_comment',
kwargs={
'username': post.author.username,
'post_id': post.id,
})
def test_create_comment_through_form(self):
self.client.force_login(self.commentator)
self.client.post(self.path, {'text': self.comment})
post = Post.objects.first()
self.assertEqual(post.comments.last().text, self.comment)
self.assertEqual(post.comments.count(), 1)
self.assertEqual(post.comments.last().author, self.commentator)
class TestGetCommentInPage(TestCase):
def setUp(self):
user = User.objects.create(username='alice')
text = 'ALICE_MESSAGE'
post = Post.objects.create(author=user, text=text)
self.comment = 'I like Bob'
Comment.objects.create(author=user, post=post, text=self.comment)
self.path = reverse('post_view',
kwargs={
'username': post.author.username,
'post_id': post.id,
})
def test_get_comment_on_postpage(self):
self.assertContains(self.client.get(self.path), self.comment)
|
fromRussiaImportLove/yatube
|
yatube/posts/tests/tests_followers.py
|
<gh_stars>0
from django.shortcuts import reverse
from django.test import TestCase
from posts.models import Follow, Post, User
class TestFollowingCase(TestCase):
def setUp(self):
self.alice = User.objects.create(username='alice')
self.bob = User.objects.create(username='bob')
self.corvex = User.objects.create(username='corvex')
Follow.objects.create(user=self.bob, author=self.alice)
self.text = 'ALICE_MESSAGE'
def test_follow_author(self):
self.client.force_login(self.alice)
self.client.get(reverse('profile_follow',
args={self.bob.username}))
self.assertEqual(self.alice.follower.count(), 1)
def test_unfollow_author(self):
self.client.force_login(self.bob)
self.client.get(reverse('profile_unfollow',
args={self.alice.username}))
self.assertEqual(self.bob.follower.count(), 0)
def test_newpost_in_following(self):
Post.objects.create(author=self.alice, text=self.text)
self.client.force_login(self.bob)
response = self.client.get(reverse('follow_index'))
self.assertContains(response, self.text)
def test_newpost_not_in_unfollowing(self):
Post.objects.create(author=self.alice, text=self.text)
self.client.force_login(self.corvex)
response = self.client.get(reverse('follow_index'))
self.assertNotContains(response, self.text)
def test_hidepost_after_unfollowing(self):
Post.objects.create(author=self.alice, text=self.text)
self.client.force_login(self.bob)
self.client.get(reverse('profile_unfollow',
args={self.alice.username}))
response = self.client.get(reverse('follow_index'))
self.assertNotContains(response, self.text)
def test_double_unfollow_author(self):
self.client.force_login(self.alice)
self.client.get(reverse('profile_unfollow',
args={self.bob.username}))
self.assertEqual(self.alice.follower.count(), 0)
def test_double_follow_author(self):
self.client.force_login(self.bob)
self.client.get(reverse('profile_follow',
args={self.alice.username}))
self.assertEqual(self.bob.follower.count(), 1)
def test_cant_follow_userself(self):
self.client.force_login(self.corvex)
self.client.get(reverse('profile_follow',
args={self.corvex.username}))
self.assertEqual(self.corvex.follower.count(), 0)
|
fromRussiaImportLove/yatube
|
yatube/posts/views.py
|
from django.contrib.auth.decorators import login_required
from django.core.paginator import Paginator
from django.shortcuts import get_object_or_404, redirect, render
from django.views.decorators.cache import cache_page
from posts.forms import CommentForm, PostForm
from posts.models import Group, Post, User
def get_paginator_context(posts_list, page_slice, request) -> dict:
paginator = Paginator(posts_list, 10)
page_number = request.GET.get('page')
page = paginator.get_page(page_number)
context = {'page': page, 'paginator': paginator}
return context
def page_not_found(request, exception):
return render(request, "misc/404.html",
{"path": request.path}, status=404)
def server_error(request):
return render(request, "misc/500.html", status=500)
@cache_page(20 * 60)
def index(request):
posts_list = Post.objects.all()
context = get_paginator_context(posts_list, 10, request)
return render(request, 'index.html', context)
def group_posts(request, slug):
group = get_object_or_404(Group, slug=slug)
posts_list = group.posts.all()
context = {'group': group}
context.update(get_paginator_context(posts_list, 10, request))
return render(request, 'group.html', context)
def profile(request, username):
author = get_object_or_404(User, username=username)
posts_list = author.posts.all()
context = {
'author': author,
'is_follow': author.following.contains(request.user),
}
context.update(get_paginator_context(posts_list, 10, request))
return render(request, 'profile.html', context)
def post_detail(request, username, post_id):
author = get_object_or_404(User, username=username)
post = get_object_or_404(author.posts, pk=post_id)
form = CommentForm()
is_follow = author.following.contains(request.user)
context = {
'author': author,
'post': post,
'form': form,
'is_follow': is_follow,
}
return render(request, 'post.html', context)
@login_required
def post_edit(request, username, post_id):
author = get_object_or_404(User, username=username)
post = get_object_or_404(author.posts, pk=post_id)
if post.author != request.user:
return redirect('post_view', author.username, post.id)
form = PostForm(request.POST or None,
files=request.FILES or None, instance=post)
if request.method == 'POST':
if form.is_valid():
form.save()
return redirect('post_view', username, post.id)
context = {'form': form, 'post': post}
return render(request, 'new_post.html', context)
@login_required
def new_post(request):
form = PostForm(request.POST or None, files=request.FILES or None)
if request.method == 'POST':
if form.is_valid():
post = form.save(commit=False)
post.author = request.user
post.save()
return redirect('index')
return render(request, 'new_post.html', {'form': form})
context = {'form': form}
return render(request, 'new_post.html', context)
@login_required
def add_comment(request, username, post_id):
author = get_object_or_404(User, username=username)
post = get_object_or_404(author.posts, pk=post_id)
if request.method == 'POST':
form = CommentForm(request.POST)
if form.is_valid():
comment = form.save(commit=False)
comment.author = request.user
comment.post = post
comment.save()
return redirect('post_view', username, post.id)
@login_required
def follow_index(request):
posts_list = request.user.follower.posts()
context = get_paginator_context(posts_list, 10, request)
return render(request, 'follow.html', context)
@login_required
def profile_follow(request, username):
author = get_object_or_404(User, username=username)
author.following.append(request.user)
return redirect('profile', username)
@login_required
def profile_unfollow(request, username):
author = get_object_or_404(User, username=username)
request.user.follower.remove(author)
return redirect('profile', username)
@login_required
def profile_follow_switch(request, username):
# Из-за тестов отложу функцию до лучших времен. Она заменит две выше
author = get_object_or_404(User, username=username)
author.following.switch(request.user)
return redirect('profile', username)
|
fromRussiaImportLove/yatube
|
yatube/posts/tests/tests_smoke.py
|
<filename>yatube/posts/tests/tests_smoke.py<gh_stars>0
from django.shortcuts import reverse
from django.test import TestCase
from posts.models import Post, User
class TestGetPostUrlAndCode(TestCase):
"""
Test avilable of url, and check of correcting return codes.
"""
def setUp(self):
self.user = User.objects.create(username='muzzy')
self.post = Post.objects.create(text='Im big Muzzy', author=self.user)
def test_get_index_page(self):
response = self.client.get(reverse('index'))
self.assertEqual(response.status_code, 200)
def test_get_profile_page(self):
response = self.client.get(reverse('profile',
args={self.user.username}))
self.assertEqual(response.status_code, 200)
def test_get_404_for_non_exist_url(self):
# special wrong URL for test 404 code
response = self.client.get('/some/url/with/error/')
self.assertEqual(response.status_code, 404)
def test_nonauth_user_redirect_code(self):
response = self.client.get(reverse('new_post'))
self.assertEqual(response.status_code, 302)
def test_newpost_auth_user_get(self):
self.client.force_login(self.user)
response = self.client.get(reverse('new_post'))
self.assertEqual(response.status_code, 200)
def test_get_exist_post(self):
response = self.client.get(reverse('post_view',
kwargs={
'username': self.user.username,
'post_id': self.post.id,
}))
self.assertEqual(response.status_code, 200)
def test_get_404_for_non_exist_post(self):
response = self.client.get(reverse('post_view',
kwargs={
'username': self.user.username,
'post_id': 31337,
}))
self.assertEqual(response.status_code, 404)
class TestFormExist(TestCase):
"""
Test of existing forms and relevant fields.
"""
def setUp(self):
self.user = User.objects.create(username='Muzzy')
self.post = Post.objects.create(text='Im big Muzzy', author=self.user)
self.client.force_login(self.user)
def test_form_newpost_existence(self):
path = reverse('new_post')
response = self.client.get(path)
self.assertIn('form', response.context)
def test_form_fields_newpost_existence(self):
fields = ['text', 'group', 'image']
path = reverse('new_post')
response = self.client.get(path)
for field in fields:
self.assertIn(field, response.context['form'].fields)
def test_form_editpost_existence(self):
path = reverse('post_edit', kwargs={
'username': self.user.username,
'post_id': self.post.id
})
response = self.client.get(path)
self.assertIn('form', response.context)
def test_form_fields_editpost_existence(self):
fields = ['text', 'group', 'image']
path = reverse('post_edit', kwargs={
'username': self.user.username,
'post_id': self.post.id
})
response = self.client.get(path)
for field in fields:
self.assertIn(field, response.context['form'].fields)
def test_form_comment_existence(self):
path = reverse('post_view', kwargs={
'username': self.user.username,
'post_id': self.post.id
})
response = self.client.get(path)
self.assertIn('form', response.context)
def test_form_fields_comment_existence(self):
path = reverse('post_view', kwargs={
'username': self.user.username,
'post_id': self.post.id
})
response = self.client.get(path)
self.assertIn('text', response.context['form'].fields)
|
fromRussiaImportLove/yatube
|
yatube/users/tests_users.py
|
<filename>yatube/users/tests_users.py
from django.shortcuts import reverse
from django.test import TestCase
from posts.models import User
class TestSignUpUser(TestCase):
def setUp(self):
first_name = 'testusername_first_name'
last_name = 'testusername_last_name'
username = 'testusername'
password = '<PASSWORD>'
self.data = {
'first_name': first_name,
'last_name': last_name,
'username': username,
'password1': password,
'password2': password
}
def test_sign_up_success(self):
signup_url = reverse('signup')
login_url = reverse('login')
response = self.client.post(signup_url, self.data)
self.assertRedirects(
response, login_url, status_code=302, target_status_code=200)
user_cnt = User.objects.all().count()
self.assertEqual(user_cnt, 1, 'Пользователь не создан')
def test_sign_up_fail_with_diff_passwords(self):
self.data['password2'] = '<PASSWORD>'
signup_url = reverse('signup')
response = self.client.post(signup_url, self.data)
self.assertTrue(response.context_data['form'].errors)
class TestProfilePage(TestCase):
def setUp(self):
self.user = User.objects.create(username='Muzzy')
def test_get_404_for_profile_non_exist_user(self):
response = self.client.get(reverse('profile',
args={'non-exist-username'}))
self.assertEqual(response.status_code, 404)
def test_get_profile_page(self):
response = self.client.get(reverse('profile',
args={self.user.username}))
self.assertEqual(response.status_code, 200)
|
fromRussiaImportLove/yatube
|
yatube/posts/tests/tests_security.py
|
<filename>yatube/posts/tests/tests_security.py
from django.shortcuts import reverse
from django.test import TestCase
from posts.models import Post, User
class TestAuthUrl(TestCase):
def setUp(self):
self.user = User.objects.create(username='Muzzy')
self.post = Post.objects.create(text='text', author=self.user)
self.path_kwargs = {
'username': self.user.username,
'post_id': self.post.id
}
def test_nonauth_user_redirect_to_auth_page(self):
paths = (
reverse('new_post'),
reverse('follow_index'),
reverse('post_edit', kwargs=self.path_kwargs),
reverse('add_comment', kwargs=self.path_kwargs),
reverse('profile_follow', kwargs={'username': self.user.username}),
reverse('profile_unfollow', args={self.user.username}),
)
login_path = reverse('login')
for path in paths:
with self.subTest(path=path):
response = self.client.get(path)
self.assertRedirects(
response,
login_path+'?next='+path,
status_code=302
)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/ZyXEL_GS4012F_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python ZYXEL-GS4012F-MIB
FILENAME = "mibs/ZyXEL/zyxel-GS4012F.mib"
MIB = {
"moduleName" : "ZYXEL-GS4012F-MIB",
"ZYXEL-GS4012F-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""ZyXEL""",
"contact" :
"""""",
"description" :
"""Fault event trap definitions""",
"revisions" : (
{
"date" : "2004-11-03 12:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
{
"date" : "2004-11-01 12:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
),
"identity node" : "faultTrapsMIB",
},
"imports" : (
{"module" : "RFC1155-SMI", "name" : "enterprises"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-TC", "name" : "RowStatus"},
{"module" : "SNMPv2-TC", "name" : "DateAndTime"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "StorageType"},
{"module" : "SNMPv2-TC", "name" : "MacAddress"},
{"module" : "RFC1213-MIB", "name" : "DisplayString"},
{"module" : "P-BRIDGE-MIB", "name" : "EnabledStatus"},
{"module" : "Q-BRIDGE-MIB", "name" : "PortList"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBasePort"},
{"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
{"module" : "DISMAN-PING-MIB", "name" : "OperationResponseStatus"},
{"module" : "OSPF-MIB", "name" : "ospfIfIpAddress"},
{"module" : "OSPF-MIB", "name" : "ospfAddressLessIf"},
{"module" : "OSPF-MIB", "name" : "ospfAreaId"},
{"module" : "OSPF-MIB", "name" : "ospfNbrIpAddr"},
{"module" : "OSPF-MIB", "name" : "ospfNbrAddressLessIndex"},
{"module" : "OSPF-MIB", "name" : "ospfLsdbAreaId"},
{"module" : "OSPF-MIB", "name" : "ospfLsdbType"},
{"module" : "OSPF-MIB", "name" : "ospfLsdbLSID"},
{"module" : "OSPF-MIB", "name" : "ospfLsdbRouterId"},
{"module" : "OSPF-MIB", "name" : "ospfVirtIfAreaID"},
{"module" : "OSPF-MIB", "name" : "ospfVirtIfNeighbor"},
{"module" : "BRIDGE-MIB", "name" : "BridgeId"},
{"module" : "BRIDGE-MIB", "name" : "Timeout"},
),
"typedefs" : {
"UtcTimeStamp" : {
"basetype" : "Unsigned32",
"status" : "current",
"description" :
"""Universal Time Coordinated as a 32-bit value that designates
the number of seconds since Jan 1, 1970 12:00AM.""",
},
"EventIdNumber" : {
"basetype" : "Integer32",
"status" : "current",
"description" :
"""This textual convention describes the index that uniquely
identifies a fault event type in the entire system. Every fault
event type, e.g. link down, has a unique EventIdNumber.""",
},
"EventSeverity" : {
"basetype" : "Enumeration",
"status" : "current",
"critical" : {
"nodetype" : "namednumber",
"number" : "1"
},
"major" : {
"nodetype" : "namednumber",
"number" : "2"
},
"minor" : {
"nodetype" : "namednumber",
"number" : "3"
},
"informational" : {
"nodetype" : "namednumber",
"number" : "4"
},
"description" :
"""This textual convention describes the severity of a fault event.
The decreasing order of severity is shown in the textual
convention.""",
},
"EventServiceAffective" : {
"basetype" : "Enumeration",
"status" : "current",
"noServiceAffected" : {
"nodetype" : "namednumber",
"number" : "1"
},
"serviceAffected" : {
"nodetype" : "namednumber",
"number" : "2"
},
"description" :
"""This textual convention indicates whether an event is immediately
service affecting or not.""",
},
"InstanceType" : {
"basetype" : "Enumeration",
"status" : "current",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"node" : {
"nodetype" : "namednumber",
"number" : "2"
},
"shelf" : {
"nodetype" : "namednumber",
"number" : "3"
},
"line" : {
"nodetype" : "namednumber",
"number" : "4"
},
"switch" : {
"nodetype" : "namednumber",
"number" : "5"
},
"lsp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"l2Interface" : {
"nodetype" : "namednumber",
"number" : "7"
},
"l3Interface" : {
"nodetype" : "namednumber",
"number" : "8"
},
"rowIndex" : {
"nodetype" : "namednumber",
"number" : "9"
},
"description" :
"""This textual convention describes the type of an instanceId
associated with each event and by that means specifies how
the instanceId variable should be intepreted.
Various instanceId types are specified below to enable fault
monitoring for different kind of devices from fixed
configuration pizza boxes to multi chassis nodes. All
instanceId types may not need to be used in every device
type.
Note also that instanceId semantics are element type dependent
(e.g. different kind of interface naming conventions may be used)
and thus instanceId usage may vary from element to element.
=========================================================================
Type Description Example form
of InstanceId
=========================================================================
unknown (1) unknown type - Irrelevant-
-------------------------------------------------------------------------
node (2) Associated with events originating from 1
the node. Used for general events that (Node number)
can not be associated with any specific
block. InstanceId value 1 is used for
single node equipment.
-------------------------------------------------------------------------
shelf (3) Associated with events originating from 1
the shelf. In the case of fixed (shelf number)
configuration devices this type is used
for events that are associated with the
physical enclosure, e.g. faults related
to fan etc. InstanceId value 1 is used
for single self equipment.
-------------------------------------------------------------------------
line (4) Associated with events originating from
physical interfaces or associated
components such as line cards.
InstanceId usage examples for faults
originating from:
- Physical port: Simply port number, e.g. .......1
-------------------------------------------------------------------------
switch (5) Associated with events originating from 1
from a switch chip or a switch card. (switch number)
For single switch equipment InstanceId
value 1 is used, for multi swich nodes
InstanceId semantics if for further
study.
-------------------------------------------------------------------------
lsp (6) Associated with events originating from 1
a particular lsp. (lsp index)
NOTE: In this case the InstanceName
contains the lsp name and InstanceId
contains lsp index.
-------------------------------------------------------------------------
l2Interface(7) Associated with events originating from - TBD -
a particular layer 2 interface. Used for
layer 2 related events such as L2 control
protocol faults. InstanceId semantics is
for further study.
-------------------------------------------------------------------------
l3Interface(8) Associated with events originating from - TBD -
a particular layer 3 interface. Used for
layer 3 related events such as L3 control
protocol faults. InstanceId semantics is
for further study.
-------------------------------------------------------------------------
rowIndex (9) Associated with events reporting about a
'logical' or conceptual table that consists
of rows. The Instance Id is the index/key
for a row in the table. The format of the
Instance Id will simply be a series of decimal
numbers seperated by a '.':
=========================================================================""",
},
"EventPersistence" : {
"basetype" : "Enumeration",
"status" : "current",
"normal" : {
"nodetype" : "namednumber",
"number" : "1"
},
"delta" : {
"nodetype" : "namednumber",
"number" : "2"
},
"description" :
"""This textual convention indicates whether the event is delta
(automatically and immediately cleared) or normal (not
automatically cleared).""",
},
"MstiOrCistInstanceIndex" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "0",
"max" : "16"
},
],
"range" : {
"min" : "0",
"max" : "16"
},
"description" :
"""This textual convention is an extension of the
MstiInstanceIndex convention. This extension permits the
additional value of zero, which means Common and Internal
Spanning Tree (CIST).""",
},
}, # typedefs
"nodes" : {
"zyxel" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890",
}, # node
"products" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1",
}, # node
"accessSwitch" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5",
}, # node
"esSeries" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8",
}, # node
"gs4012f" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10",
}, # node
"sysInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1",
}, # node
"sysSwPlatformMajorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW platform major version, e.g. 3.""",
}, # scalar
"sysSwPlatformMinorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW platform minor version, e.g. 50.""",
}, # scalar
"sysSwModelString" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Model letters, e.g. TJ""",
}, # scalar
"sysSwVersionControlNbr" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Version control number, e.g. 0.""",
}, # scalar
"sysSwDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation day, e.g. 19.""",
}, # scalar
"sysSwMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation month, e.g. 8.""",
}, # scalar
"sysSwYear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation year, e.g. 2004.""",
}, # scalar
"sysHwMajorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""HW major version number, e.g. 1.""",
}, # scalar
"sysHwMinorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""HW minor version number, e.g. 0.""",
}, # scalar
"sysSerialNumber" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Serial number""",
}, # scalar
"rateLimitSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2",
}, # node
"rateLimitState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress/egress rate limiting enabled/disabled for the switch.""",
}, # scalar
"rateLimitPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"rateLimitPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in rateLimitPortTable.""",
}, # row
"rateLimitPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress/egress rate limiting enabled/disabled on the port.""",
}, # column
"rateLimitPortCommitRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Commit rate in Kbit/s. The range of FE port is between 0 and 100,000. For GE port, the range is between 0 and 1000,000.""",
}, # column
"rateLimitPortPeakRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Peak rate in Kbit/s. The range of FE port is between 1 and 100,000. For GE port, the range is between 1 and 1000,000.""",
}, # column
"rateLimitPortEgrRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Egress rate in Mbit/s. The granularity of FE port is between 1 and 100. For GE port, the granularity is between 1 and 1000.""",
}, # column
"rateLimitPortPeakState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress peak rate limiting enabled/disabled on the port.""",
}, # column
"rateLimitPortEgrState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Egress rate limiting enabled/disabled on the port.""",
}, # column
"rateLimitPortCommitState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress commit rate limiting enabled/disabled on the port.""",
}, # column
"brLimitSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3",
}, # node
"brLimitState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Broadcast/multicast/DLF rate limiting enabled/disabled for the switch.""",
}, # scalar
"brLimitPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.3.2",
"status" : "current",
"description" :
"""""",
}, # table
"brLimitPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in brLimitPortTable.""",
}, # row
"brLimitPortBrState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Broadcast rate limiting enabled/disabled on the port.""",
}, # column
"brLimitPortBrRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed broadcast rate in pkts/s. For FE port,
the maximum value is 148800. For GE port, the maximum value is 262143.""",
}, # column
"brLimitPortMcState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Multicast rate limiting enabled/disabled on the port.""",
}, # column
"brLimitPortMcRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""AAllowed mullticast rate in pkts/s. For FE port,
the maximum value is 148800. For GE port, the maximum value is 262143.""",
}, # column
"brLimitPortDlfState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Destination lookup failure frames rate limiting enabled/disabled on the port.""",
}, # column
"brLimitPortDlfRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.3.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed destination lookup failure frames rate in pkts/s.
For FE port, the maximum value is 148800. For GE port, the maximum value is 262143.""",
}, # column
"portSecuritySetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.4",
}, # node
"portSecurityState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"portSecurityPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.4.2",
"status" : "current",
"description" :
"""""",
}, # table
"portSecurityPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.4.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portSecurityPortTable.""",
}, # row
"portSecurityPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.4.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Port Security enabled/disabled on the port.
Active(1) means this port only accept frames from static MAC addresses that are configured for the port,
and dynamic MAC address frames up to the number specified by portSecurityPortCount object.""",
}, # column
"portSecurityPortLearnState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.4.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""MAC address learning enabled/disable on the port.""",
}, # column
"portSecurityPortCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.4.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Number of (dynamic) MAC addresses that may be learned on the port.""",
}, # column
"portSecurityMacFreeze" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"vlanTrunkSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.5",
}, # node
"vlanTrunkPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.5.1",
"status" : "current",
"description" :
"""""",
}, # table
"vlanTrunkPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.5.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in vlanTrunkPortTable.""",
}, # row
"vlanTrunkPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""VlanTrunking enabled/disabled on the port.
Active(1) to allow frames belonging to unknown
VLAN groups to pass through the switch.""",
}, # column
"ctlProtTransSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.6",
}, # node
"ctlProtTransState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.6.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Bridge control protocol transparency enabled/disabled for the switch""",
}, # scalar
"ctlProtTransTunnelPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.6.2",
"status" : "current",
"description" :
"""""",
}, # table
"ctlProtTransTunnelPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.6.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in ctlProtTransTunnelPortTable.""",
}, # row
"ctlProtTransTunnelMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.6.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"peer" : {
"nodetype" : "namednumber",
"number" : "0"
},
"tunnel" : {
"nodetype" : "namednumber",
"number" : "1"
},
"discard" : {
"nodetype" : "namednumber",
"number" : "2"
},
"network" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Bridge control protocol transparency mode for the port.
Modes: Peer(0), Tunnel(1), Discard(2), Network(3)""",
}, # column
"vlanStackSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.7",
}, # node
"vlanStackState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.172.16.58.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""VLAN Stacking enabled/disabled for the switch.""",
}, # scalar
"vlanStackTpid" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.7.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""SP TPID in hex format, e.g. 8100.""",
}, # scalar
"vlanStackPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.7.3",
"status" : "current",
"description" :
"""""",
}, # table
"vlanStackPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.7.3.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in vlanStackPortTable.""",
}, # row
"vlanStackPortMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.7.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"normal" : {
"nodetype" : "namednumber",
"number" : "1"
},
"access" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tunnel" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Mode of the port.Set Access mode to have the switch add the SP TPID tag to all incoming
frames received on this port. Set Access mode for ingress ports at the
edge of the service provider's network. Set Tunnel mode (available for
Gigabit ports only) for egress ports at the edge of the service provider's
network. In order to support VLAN stacking on a port, the port must be able
to allow frames of 1526 Bytes (1522 Bytes + 4 Bytes for the second tag)
to pass through it. Access (0), tunnel (1)""",
}, # column
"vlanStackPortVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.7.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""VLAN ID used in service provider tag.""",
}, # column
"vlanStackPortPrio" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.7.3.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"prioriry-0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"prioriry-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"prioriry-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"prioriry-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"prioriry-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"prioriry-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"prioriry-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"prioriry-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""Priority value for service provider tag.
0 is the lowest priority level and 7 is the highest.""",
}, # column
"dot1xSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8",
}, # node
"portAuthState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port authentication enabled/disabled for the switch.""",
}, # scalar
"portAuthTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.8.4",
"status" : "current",
"description" :
"""""",
}, # table
"portAuthEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.8.4.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portAuthTable.""",
}, # row
"portAuthEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.8.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port authentication enabled or disabled on the port.""",
}, # column
"portReAuthEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.8.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port re-authentication enabled or disabled on the port.""",
}, # column
"portReAuthEntryTimer" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.8.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Re-authentication timer in seconds.""",
}, # column
"hwMonitorInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9",
}, # node
"fanRpmTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.1",
"status" : "current",
"description" :
"""""",
}, # table
"fanRpmEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.1.1",
"status" : "current",
"linkage" : [
"fanRpmIndex",
],
"description" :
"""An entry in fanRpmTable.""",
}, # row
"fanRpmIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of FAN.""",
}, # column
"fanRpmCurValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Current speed in Revolutions Per Minute (RPM) on the fan.""",
}, # column
"fanRpmMaxValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Maximum speed measured in Revolutions Per Minute (RPM) on the fan.""",
}, # column
"fanRpmMinValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Minimum speed measured in Revolutions Per Minute (RPM) on the fan.""",
}, # column
"fanRpmLowThresh" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The minimum speed at which a normal fan should work.""",
}, # column
"fanRpmDescr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""'Normal' indicates that this fan is functioning above the minimum speed.
'Error' indicates that this fan is functioning below the minimum speed.""",
}, # column
"tempTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2",
"status" : "current",
"description" :
"""""",
}, # table
"tempEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.9.2.1",
"status" : "current",
"linkage" : [
"tempIndex",
],
"description" :
"""An entry in tempTable.""",
}, # row
"tempIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"mac" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cpu" : {
"nodetype" : "namednumber",
"number" : "2"
},
"phy" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Index of temperature unit. 1:MAC, 2:CPU, 3:PHY""",
}, # column
"tempCurValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The current temperature measured at this sensor.""",
}, # column
"tempMaxValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum temperature measured at this sensor.""",
}, # column
"tempMinValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The minimum temperature measured at this sensor.""",
}, # column
"tempHighThresh" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The upper temperature limit at this sensor.""",
}, # column
"tempDescr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""'Normal' indicates temperatures below the threshold and 'Error' for those above.""",
}, # column
"voltageTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.3",
"status" : "current",
"description" :
"""""",
}, # table
"voltageEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1",
"status" : "current",
"linkage" : [
"voltageIndex",
],
"description" :
"""An entry in voltageTable.""",
}, # row
"voltageIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of voltage.""",
}, # column
"voltageCurValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The current voltage reading.""",
}, # column
"voltageMaxValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum voltage measured at this point.""",
}, # column
"voltageMinValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The minimum voltage measured at this point.""",
}, # column
"voltageNominalValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.9.3.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The normal voltage at wchich the switch work.""",
}, # column
"voltageLowThresh" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.9.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The minimum voltage at which the switch should work.""",
}, # column
"voltageDescr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.9.3.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""'Normal' indicates that the voltage is within an acceptable operating range
at this point; otherwise 'Error' is displayed.""",
}, # column
"snmpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10",
}, # node
"snmpGetCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpSetCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpTrapCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpTrapDestTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.4",
"status" : "current",
"description" :
"""""",
}, # table
"snmpTrapDestEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.4.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpTrapDestIP",
],
"description" :
"""An entry in snmpTrapDestTable.""",
}, # row
"snmpTrapDestIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""IP address of trap destination.""",
}, # column
"snmpTrapDestRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapDestPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The UDP port of the trap destination.""",
}, # column
"snmpTrapVersion" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "0"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The SNMP protocol version to send traps.""",
}, # column
"snmpTrapUserName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The user name for sending SNMPv3 traps.""",
}, # column
"snmpVersion" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v2c" : {
"nodetype" : "namednumber",
"number" : "0"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v3v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The SNMP version to be used. v3v2c means that the manager
can get/set by SNMPv3 and can get by SNMPv2c.""",
}, # scalar
"snmpUserTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.6",
"status" : "current",
"description" :
"""A table that contains SNMPv3 user information.""",
}, # table
"snmpUserEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.6.1",
"status" : "current",
"linkage" : [
"snmpUserName",
],
"description" :
"""An entry of snmpUserTable.""",
}, # row
"snmpUserName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The user name.""",
}, # column
"snmpUserSecurityLevel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.6.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"noAuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "0"
},
"authNoPriv" : {
"nodetype" : "namednumber",
"number" : "1"
},
"authPriv" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The level of security at which SNMP messages can be sent or
with which operations are being processed.""",
}, # column
"snmpUserAuthProtocol" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.6.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"md5" : {
"nodetype" : "namednumber",
"number" : "0"
},
"sha" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""The type of authentication protocol to be used.""",
}, # column
"snmpUserPrivProtocol" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.6.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"des" : {
"nodetype" : "namednumber",
"number" : "0"
},
"aes" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""The type of privacy protocol to be used.""",
}, # column
"snmpTrapGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.7",
"status" : "current",
"description" :
"""""",
}, # table
"snmpTrapGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.7.1",
"status" : "current",
"linkage" : [
"snmpTrapDestIP",
],
"description" :
"""An entry in snmpTrapGroupTable.""",
}, # row
"snmpTrapSystemGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"coldStart" : {
"nodetype" : "namednumber",
"number" : "0"
},
"warmStart" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fanSpeed" : {
"nodetype" : "namednumber",
"number" : "2"
},
"temperature" : {
"nodetype" : "namednumber",
"number" : "3"
},
"voltage" : {
"nodetype" : "namednumber",
"number" : "4"
},
"reset" : {
"nodetype" : "namednumber",
"number" : "5"
},
"timeSync" : {
"nodetype" : "namednumber",
"number" : "6"
},
"intrusionlock" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapInterfaceGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"linkup" : {
"nodetype" : "namednumber",
"number" : "0"
},
"linkdown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"autonegotiation" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapAAAGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.7.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"authentication" : {
"nodetype" : "namednumber",
"number" : "0"
},
"accounting" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapIPGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.7.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"ping" : {
"nodetype" : "namednumber",
"number" : "0"
},
"traceroute" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapSwitchGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10.7.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"stp" : {
"nodetype" : "namednumber",
"number" : "0"
},
"mactable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rmon" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dateTimeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.11",
}, # node
"dateTimeServerType" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.11.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"daytime" : {
"nodetype" : "namednumber",
"number" : "2"
},
"time" : {
"nodetype" : "namednumber",
"number" : "3"
},
"ntp" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""The time service protocol.""",
}, # scalar
"dateTimeServerIP" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""IP address of time server.""",
}, # scalar
"dateTimeZone" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The time difference between UTC. Ex: +01""",
}, # scalar
"dateTimeNewDateYear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in year.""",
}, # scalar
"dateTimeNewDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in month.""",
}, # scalar
"dateTimeNewDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in day.""",
}, # scalar
"dateTimeNewTimeHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in hour.""",
}, # scalar
"dateTimeNewTimeMinute" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in minute.""",
}, # scalar
"dateTimeNewTimeSecond" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in second.""",
}, # scalar
"dateTimeDaylightSavingTimeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10",
}, # node
"daylightSavingTimeState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service enabled/disabled for the switch.""",
}, # scalar
"daylightSavingTimeStartDateWeek" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.11.10.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"first" : {
"nodetype" : "namednumber",
"number" : "1"
},
"second" : {
"nodetype" : "namednumber",
"number" : "2"
},
"third" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fourth" : {
"nodetype" : "namednumber",
"number" : "4"
},
"last" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start week.""",
}, # scalar
"daylightSavingTimeStartDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sunday" : {
"nodetype" : "namednumber",
"number" : "0"
},
"monday" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tuesday" : {
"nodetype" : "namednumber",
"number" : "2"
},
"wednesday" : {
"nodetype" : "namednumber",
"number" : "3"
},
"thursday" : {
"nodetype" : "namednumber",
"number" : "4"
},
"friday" : {
"nodetype" : "namednumber",
"number" : "5"
},
"saturday" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start day.""",
}, # scalar
"daylightSavingTimeStartDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start month.""",
}, # scalar
"daylightSavingTimeStartDateHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start time.""",
}, # scalar
"daylightSavingTimeEndDateWeek" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"first" : {
"nodetype" : "namednumber",
"number" : "1"
},
"second" : {
"nodetype" : "namednumber",
"number" : "2"
},
"third" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fourth" : {
"nodetype" : "namednumber",
"number" : "4"
},
"last" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end week.""",
}, # scalar
"daylightSavingTimeEndDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sunday" : {
"nodetype" : "namednumber",
"number" : "0"
},
"monday" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tuesday" : {
"nodetype" : "namednumber",
"number" : "2"
},
"wednesday" : {
"nodetype" : "namednumber",
"number" : "3"
},
"thursday" : {
"nodetype" : "namednumber",
"number" : "4"
},
"friday" : {
"nodetype" : "namednumber",
"number" : "5"
},
"saturday" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end day.""",
}, # scalar
"daylightSavingTimeEndDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end month.""",
}, # scalar
"daylightSavingTimeEndDateHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end time.""",
}, # scalar
"sysMgmt" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12",
}, # node
"sysMgmtConfigSave" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"config_1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"config_2" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""If setting value is given, the variable write index will be set and running-config will be written to the assigned configuration file.
If not, running-config will be written to the booting one.""",
}, # scalar
"sysMgmtBootupConfig" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"config_1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"config_2" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The setting value (read index) will be written into non-volatile memory.
While rebooting, the variable write index is equal to read index initially.
You can change the value of write index by CLI / MIB.""",
}, # scalar
"sysMgmtReboot" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"reboot" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Reboot switch from SNMP. 1:Reboot, 0:Nothing""",
}, # scalar
"sysMgmtDefaultConfig" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"reset_to_default" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Erase running config and reset to default.""",
}, # scalar
"sysMgmtLastActionStatus" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Display status of last mgmt action.""",
}, # scalar
"sysMgmtSystemStatus" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"sysAlarmDetected" : {
"nodetype" : "namednumber",
"number" : "0"
},
"sysTemperatureError" : {
"nodetype" : "namednumber",
"number" : "1"
},
"sysFanRPMError" : {
"nodetype" : "namednumber",
"number" : "2"
},
"sysVoltageRangeError" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This variable indicates the status of the system.
The sysMgmtAlarmStatus is a bit map represented
a sum, therefore, it can represent multiple defects
simultaneously. The sysNoDefect should be set if and only if
no other flag is set.
The various bit positions are:
0 sysAlarmDetected
1 sysTemperatureError
2 sysFanRPMError
3 sysVoltageRangeError""",
}, # scalar
"sysMgmtCPUUsage" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Show device CPU load in %, it's the snapshot of CPU load when
getting the values.""",
}, # scalar
"sysMgmtCounterReset" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Reset all port counters.""",
}, # scalar
"sysMgmtTftpServiceSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.10",
}, # node
"sysMgmtTftpServerIp" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
""" IP address of TFTP server""",
}, # scalar
"sysMgmtTftpRemoteFileName" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.12.10.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The file name that you want to backup to or restore from TFTP server""",
}, # scalar
"layer2Setup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13",
}, # node
"vlanTypeSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dot1Q" : {
"nodetype" : "namednumber",
"number" : "1"
},
"port_based" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpSnoopingStateSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tagVlanPortIsolationState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"stpState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpFilteringStateSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"unknownMulticastFrameForwarding" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"flooding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"multicastGrpHostTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specify host timeout for all multicast groups when the specific port is in auto mode.""",
}, # scalar
"multicastGrpLeaveTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specify leave timeout for all multicast groups.""",
}, # scalar
"reservedMulticastFrameForwarding" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"flooding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpsnp8021pPriority" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Set the 802.1p priority of control messages for igmp-snooping(0~8, 8-No Change)""",
}, # scalar
"igmpsnpVlanMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fixed" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"stpMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rstp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"mrstp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"mstp" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpsnpVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.13",
"status" : "current",
"description" :
"""""",
}, # table
"igmpsnpVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.13.1",
"create" : "true",
"status" : "current",
"linkage" : [
"igmpsnpVid",
],
"description" :
"""An entry in IgmpsnpVlanTable.""",
}, # row
"igmpsnpVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.13.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpsnpVlanName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.13.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"igmpsnpVlanRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.13.13.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ipSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14",
}, # node
"dnsIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.14.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultMgmt" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"in_band" : {
"nodetype" : "namednumber",
"number" : "0"
},
"out_of_band" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultGateway" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"outOfBandIpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.4",
}, # node
"outOfBandIp" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.4.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"outOfBandSubnetMask" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.4.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"outOfBandGateway" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"maxNumOfInbandIp" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"inbandIpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.6",
"status" : "current",
"description" :
"""""",
}, # table
"inbandIpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.6.1",
"create" : "true",
"status" : "current",
"linkage" : [
"inbandEntryIp",
"inbandEntrySubnetMask",
],
"description" :
"""An entry in inbandIpTable.""",
}, # row
"inbandEntryIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"inbandEntrySubnetMask" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"inbandEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.6.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"inbandEntryRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.14.6.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"filterSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.15",
}, # node
"filterTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.15.1",
"status" : "current",
"description" :
"""""",
}, # table
"filterEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.15.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"filterMacAddr",
"filterVid",
],
"description" :
"""An entry in filterTable.""",
}, # row
"filterName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.15.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"filterActionState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.15.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"discard_source" : {
"nodetype" : "namednumber",
"number" : "1"
},
"discard_destination" : {
"nodetype" : "namednumber",
"number" : "2"
},
"both" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"filterMacAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.15.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"filterVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.15.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"filterRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.15.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mirrorSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.16",
}, # node
"mirrorState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.16.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorMonitorPort" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.16.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.16.3",
"status" : "current",
"description" :
"""""",
}, # table
"mirrorEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.16.3.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in mirrorTable.""",
}, # row
"mirrorMirroredState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.16.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mirrorDirection" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.16.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ingress" : {
"nodetype" : "namednumber",
"number" : "0"
},
"egress" : {
"nodetype" : "namednumber",
"number" : "1"
},
"both" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17",
}, # node
"aggrState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"aggrSystemPriority" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"aggrGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.3",
"status" : "current",
"description" :
"""""",
}, # table
"aggrGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.3.1",
"status" : "current",
"linkage" : [
"aggrGroupIndex",
],
"description" :
"""An entry in aggrGroupTable.""",
}, # row
"aggrGroupIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"aggrGroupState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrGroupDynamicState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.4",
"status" : "current",
"description" :
"""""",
}, # table
"aggrPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.4.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in aggrPortTable.""",
}, # row
"aggrPortGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"t1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"t2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"t3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"t4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"t5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"t6" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrPortDynamicStateTimeout" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.17.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18",
}, # node
"accessCtlTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.1",
"status" : "current",
"description" :
"""""",
}, # table
"accessCtlEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.1.1",
"status" : "current",
"linkage" : [
"accessCtlService",
],
"description" :
"""An entry in accessCtlTable.""",
}, # row
"accessCtlService" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"telnet" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ftp" : {
"nodetype" : "namednumber",
"number" : "3"
},
"http" : {
"nodetype" : "namednumber",
"number" : "4"
},
"https" : {
"nodetype" : "namednumber",
"number" : "5"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"snmp" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"accessCtlEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlServicePort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlTimeout" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.2",
"status" : "current",
"description" :
"""""",
}, # table
"securedClientEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.2.1",
"status" : "current",
"linkage" : [
"securedClientIndex",
],
"description" :
"""An entry in securedClientTable.""",
}, # row
"securedClientIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"securedClientEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientStartIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientEndIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientService" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.18.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"telnet" : {
"nodetype" : "namednumber",
"number" : "0"
},
"ftp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"http" : {
"nodetype" : "namednumber",
"number" : "2"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "3"
},
"snmp" : {
"nodetype" : "namednumber",
"number" : "4"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "5"
},
"https" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"queuingMethodSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.19",
}, # node
"portQueuingMethodTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.19.1",
"status" : "current",
"description" :
"""""",
}, # table
"portQueuingMethodEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.19.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
"portQueuingMethodQueue",
],
"description" :
"""An entry in portQueuingMethodTable.""",
}, # row
"portQueuingMethodQueue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.19.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""0...7""",
}, # column
"portQueuingMethodWeight" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.19.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0...15""",
}, # column
"dhcpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20",
}, # node
"globalDhcpRelay" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.1",
}, # node
"globalDhcpRelayEnable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayOption82Enable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayInfoEnable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayInfoData" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"maxNumberOfGlobalDhcpRelayRemoteServer" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"globalDhcpRelayRemoteServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.20.1.6",
"status" : "current",
"description" :
"""""",
}, # table
"globalDhcpRelayRemoteServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.20.1.6.1",
"create" : "true",
"status" : "current",
"linkage" : [
"globalDhcpRelayRemoteServerIp",
],
"description" :
"""An entry in globalDhcpRelayRemoteServerTable.""",
}, # row
"globalDhcpRelayRemoteServerIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.20.1.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"globalDhcpRelayRemoteServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.20.1.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServer" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.20.2",
}, # node
"maxNumberOfDhcpServers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.20.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum number of DHCP server entries that can be created.
A value of 0 for this object implies that there exists settings for
global DHCP relay.""",
}, # scalar
"dhcpServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.20.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.20.2.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpServerVid",
],
"description" :
"""An entry in dhcpServerTable.""",
}, # row
"dhcpServerVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpServerStartAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.20.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerPoolSize" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerMask" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.20.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerPrimaryDNS" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.20.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerSecondaryDNS" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.20.2.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.2.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelay" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3",
}, # node
"dhcpRelayInfoData" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"maxNumberOfDhcpRelay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum number of DHCP relay entries that can be created.
A value of 0 for this object implies that there exists settings for
global DHCP relay.""",
}, # scalar
"maxNumberOfDhcpRelayRemoteServer" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.20.3.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpRelayRemoteServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.20.3.4",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpRelayRemoteServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.20.3.4.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpRelayVid",
"dhcpRelayRemoteServerIp",
],
"description" :
"""An entry in dhcpRelayRemoteServerTable.""",
}, # row
"dhcpRelayVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpRelayRemoteServerIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpRelayRemoteServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelayTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.5",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpRelayEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.5.1",
"status" : "current",
"linkage" : [
"dhcpRelayVid",
],
"description" :
"""An entry in dhcpRelayTable.""",
}, # row
"dhcpRelayOption82Enable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelayInfoEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.20.3.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21",
}, # node
"maxNumberOfStaticRoutes" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"staticRouteTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2",
"status" : "current",
"description" :
"""""",
}, # table
"staticRouteEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"staticRouteIp",
"staticRouteMask",
],
"description" :
"""An entry in staticRouteTable.""",
}, # row
"staticRouteName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"staticRouteMask" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"staticRouteGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteMetric" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.21.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22",
}, # node
"arpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.22.1",
"status" : "current",
"description" :
"""""",
}, # table
"arpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.22.1.1",
"status" : "current",
"linkage" : [
"arpIpAddr",
"arpMacVid",
],
"description" :
"""An entry in arpTable.""",
}, # row
"arpIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.22.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.22.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpMacAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.22.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpMacVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.22.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.22.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""1-static, 2-dynamic""",
}, # column
"portOpModeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23",
}, # node
"portOpModePortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1",
"status" : "current",
"description" :
"""""",
}, # table
"portOpModePortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portOpModePortTable.""",
}, # row
"portOpModePortFlowCntl" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.23.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortLinkUpType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.23.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"down" : {
"nodetype" : "namednumber",
"number" : "0"
},
"copper" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fiber" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"portOpModePortIntrusionLock" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortLBTestStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"underTesting" : {
"nodetype" : "namednumber",
"number" : "1"
},
"success" : {
"nodetype" : "namednumber",
"number" : "2"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This entry display latest loopback test status of port while performing loopback test.""",
}, # column
"portOpModePortCounterReset" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.23.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This entry resets port counter.""",
}, # column
"portBasedVlanSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.24",
}, # node
"portBasedVlanPortListTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.24.1",
"status" : "current",
"description" :
"""""",
}, # table
"portBasedVlanPortListEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.24.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portBasedVlanPortListTable.""",
}, # row
"portBasedVlanPortListMembers" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.24.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.25",
}, # node
"multicastPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.25.1",
"status" : "current",
"description" :
"""""",
}, # table
"multicastPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.25.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in multicastPortTable.""",
}, # row
"multicastPortImmediateLeave" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.25.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortMaxGroupLimited" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.25.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortMaxOfGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.25.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0..255""",
}, # column
"multicastPortIgmpFilteringProfile" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortQuerierMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.25.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fixed" : {
"nodetype" : "namednumber",
"number" : "2"
},
"edge" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Specify query mode for each port""",
}, # column
"multicastStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26",
}, # node
"multicastStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.1",
"status" : "current",
"description" :
"""""",
}, # table
"multicastStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.1.1",
"status" : "current",
"linkage" : [
"multicastStatusVlanID",
"multicastStatusPort",
"multicastStatusGroup",
],
"description" :
"""An entry in multicastStatusTable.""",
}, # row
"multicastStatusIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2",
"status" : "current",
"description" :
"""A count table of igmp query/report/leave message.""",
}, # table
"igmpCountEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1",
"status" : "current",
"linkage" : [
"igmpCountIndex",
],
"description" :
"""An entry in igmpCountTable.""",
}, # row
"igmpCountIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of IgmpCountEntry. 0 means total count in whole system""",
}, # column
"igmpCountInQuery" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInReport" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInLeave" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInQueryDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInReportDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInLeaveDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountOutQuery" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountOutReport" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountOutLeave" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.2.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.3",
"status" : "current",
"description" :
"""""",
}, # table
"multicastVlanStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.3.1",
"status" : "current",
"linkage" : [
"multicastVlanStatusVlanID",
],
"description" :
"""An entry in multicastVlanStatusTable.""",
}, # row
"multicastVlanStatusVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.2172.16.31.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanStatusType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "1"
},
"mvr" : {
"nodetype" : "namednumber",
"number" : "2"
},
"static" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanQueryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.26.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.27",
}, # node
"igmpFilteringMaxNumberOfProfile" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.27.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"igmpFilteringProfileTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.27.2",
"status" : "current",
"description" :
"""""",
}, # table
"igmpFilteringProfileEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.27.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"igmpFilteringProfileName",
"igmpFilteringProfileStartAddress",
"igmpFilteringProfileEndAddress",
],
"description" :
"""An entry in igmpFilteringProfileTable.""",
}, # row
"igmpFilteringProfileName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.27.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileStartAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileEndAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.27.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.27.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28",
}, # node
"maxNumberOfMVR" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mvrTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.2",
"status" : "current",
"description" :
"""""",
}, # table
"mvrEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mvrVlanID",
],
"description" :
"""An entry in mvrTable.""",
}, # row
"mvrVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""1..4094""",
}, # column
"mvrName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "0"
},
"compatible" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvr8021pPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Set the 802.1p priority of control messages within MVR (0~7)""",
}, # column
"mvrPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.3",
"status" : "current",
"description" :
"""""",
}, # table
"mvrPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.3.1",
"status" : "current",
"linkage" : [
"mvrVlanID",
"dot1dBasePort",
],
"description" :
"""An entry in mvrPortTable.""",
}, # row
"mvrPortRole" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"source_port" : {
"nodetype" : "namednumber",
"number" : "2"
},
"receiver_port" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrPortTagging" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"maxNumberOfMvrGroup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mvrGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.5",
"status" : "current",
"description" :
"""""",
}, # table
"mvrGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.28.5.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mvrVlanID",
"mvrGroupName",
],
"description" :
"""An entry in mvrGroupTable.""",
}, # row
"mvrGroupName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mvrGroupStartAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrGroupEndAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrGroupRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"layer3Setup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.29",
}, # node
"routerRipState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.29.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"routerIgmpState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.29.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"routerDvmrpState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.29.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"routerDvmrpThreshold" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.29.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"routerIpmcPortSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.30",
}, # node
"routerIpmcPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.30.1",
"status" : "current",
"description" :
"""""",
}, # table
"routerIpmcPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.30.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in routerIpmcPortTable.""",
}, # row
"routerIpmcPortEgressUntagVlan" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.30.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31",
}, # node
"routerVrrpMaxNumber" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Always set it as 14.""",
}, # scalar
"routerVrrpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2",
"status" : "current",
"description" :
"""""",
}, # table
"routerVrrpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"routerDomainIpAddress",
"routerDomainIpMaskBits",
"routerVrrpVirtualID",
"routerVrrpUplinkGateway",
],
"description" :
"""An entry in routerVrrpTable.""",
}, # row
"routerVrrpVirtualID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpUplinkGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpPreempt" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpInterval" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""1-255""",
}, # column
"routerVrrpPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""1-254""",
}, # column
"routerVrrpPrimaryVirtualIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpSecondaryVirtualIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"rpVrrpRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpDomainTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.3",
"status" : "current",
"description" :
"""""",
}, # table
"routerVrrpDomainEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.3.1",
"status" : "current",
"linkage" : [
"routerDomainIpAddress",
"routerDomainIpMaskBits",
],
"description" :
"""An entry in routerVrrpTable.""",
}, # row
"routerVrrpAuthType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"simple" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpAuthKey" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.31.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.32",
}, # node
"routerVrrpStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.32.1",
"status" : "current",
"description" :
"""""",
}, # table
"routerVrrpStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.32.1.1",
"status" : "current",
"linkage" : [
"routerVrrpStatusIpAddress",
"routerVrrpStatusIpMaskBits",
"routerVrrpStatusVirtualID",
],
"description" :
""" """,
}, # row
"routerVrrpStatusIpAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.32.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpStatusIpMaskBits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.32.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpStatusVirtualID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.32.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpStatusVRStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.32.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpStatusUpLinkStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.32.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerDomainSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33",
}, # node
"routerDomainTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.1",
"status" : "current",
"description" :
"""""",
}, # table
"routerDomainEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.1.1",
"status" : "current",
"linkage" : [
"routerDomainIpAddress",
"routerDomainIpMaskBits",
],
"description" :
"""An entry in routerDomainTable.""",
}, # row
"routerDomainIpAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerDomainIpMaskBits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerDomainVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerDomainIpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.2",
"status" : "current",
"description" :
"""""",
}, # table
"routerDomainIpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.2.1",
"status" : "current",
"linkage" : [
"routerDomainIpAddress",
"routerDomainIpMaskBits",
],
"description" :
"""An entry in routerDomainIpTable.""",
}, # row
"routerDomainIpRipDirection" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"outgoing" : {
"nodetype" : "namednumber",
"number" : "1"
},
"incoming" : {
"nodetype" : "namednumber",
"number" : "2"
},
"both" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerDomainIpRipVersion" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "0"
},
"v2b" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2m" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerDomainIpIgmpVersion" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"igmp_v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"igmp_v2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"igmp_v3" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerDomainIpDvmrp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.33.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"diffservSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34",
}, # node
"diffservState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"diffservMapTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34.2",
"status" : "current",
"description" :
"""""",
}, # table
"diffservMapEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34.2.1",
"status" : "current",
"linkage" : [
"diffservMapDscp",
],
"description" :
"""An entry in diffservMapTable.""",
}, # row
"diffservMapDscp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""0-63""",
}, # column
"diffservMapPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-7""",
}, # column
"diffservPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34.3",
"status" : "current",
"description" :
"""""",
}, # table
"diffservPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34.3.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in diffservPortTable.""",
}, # row
"diffservPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.34.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35",
}, # node
"clusterManager" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.1",
}, # node
"clusterMaxNumOfManager" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterManagerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.1.2",
"status" : "current",
"description" :
"""""",
}, # table
"clusterManagerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.1.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"clusterManagerVid",
],
"description" :
"""An entry in clusterManagerTable.""",
}, # row
"clusterManagerVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterManagerName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterManagerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterMembers" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.2",
}, # node
"clusterMaxNumOfMember" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterMemberTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"clusterMemberEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"clusterMemberMac",
],
"description" :
"""An entry in clusterMemberTable.""",
}, # row
"clusterMemberMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"clusterMemberName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterMemberModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterMemberPassword" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterMemberRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterCandidates" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.3",
}, # node
"clusterCandidateTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1",
"status" : "current",
"description" :
"""""",
}, # table
"clusterCandidateEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1.1",
"status" : "current",
"linkage" : [
"clusterCandidateMac",
],
"description" :
"""An entry in clusterCandidateTable.""",
}, # row
"clusterCandidateMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterCandidateName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterCandidateModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.4",
}, # node
"clusterStatusRole" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.4.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"manager" : {
"nodetype" : "namednumber",
"number" : "1"
},
"member" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterStatusManager" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.4.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clsuterStatusMaxNumOfMember" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterStatusMemberTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.4.4",
"status" : "current",
"description" :
"""""",
}, # table
"clusterStatusMemberEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.4.4.1",
"status" : "current",
"linkage" : [
"clusterStatusMemberMac",
],
"description" :
"""An entry in clusterStatusMemberTable.""",
}, # row
"clusterStatusMemberMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.4.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.35.4.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"error" : {
"nodetype" : "namednumber",
"number" : "0"
},
"online" : {
"nodetype" : "namednumber",
"number" : "1"
},
"offline" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"faultMIB" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36",
"status" : "current",
}, # node
"eventObjects" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1",
}, # node
"eventTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1",
"status" : "current",
"description" :
"""A list of currently active fault events. All faults
of normal type regardless of their severity level
are recorded in the event table. When a normal
type fault is cleared it is deleted from the event
table.""",
}, # table
"eventEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1",
"status" : "current",
"linkage" : [
"eventSeqNum",
],
"description" :
"""An entry containing information about an
event in the event table.""",
}, # row
"eventSeqNum" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This variable represents the sequence number of an event.
Sequence number is incremented monotonically starting
from 0 until it reaches its maximum and wraps around back
to 0.
Sequence number is incremented when
- the state of a normal type fault is set on (the same sequence
number is present in the events table as well as in the trap
that is sent to notify about the fault on event)
- delta event occurs (sequence number present in trap message)
- the state of a normal type fault is set off (sequence number
present in trap that is sent to notify for clearing).""",
}, # column
"eventEventId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "EventIdNumber"},
},
"access" : "readonly",
"description" :
"""This variable represents the event ID which uniquely
identifies the event in the entire system.""",
}, # column
"eventName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "40"
},
],
"range" : {
"min" : "0",
"max" : "40"
},
},
},
"access" : "readonly",
"description" :
"""This variable represents the name of the event, for
example 'Ethernet Link Down'""",
}, # column
"eventInstanceType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "InstanceType"},
},
"access" : "readonly",
"description" :
"""This variable represents the type of InstanceId of a
particular event in the event table. In brief
the instanceType refers to the type of sub-component
generating this event in the system, for example
switch (5). For more details see the textual
conventions section.
AFFECTS: eventInstanceId,
eventInstanceName""",
}, # column
"eventInstanceId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This variable represents the InstanceId of a particular
event in the event current table. In brief the instanceId
refers to the sub-component generating this event in the
system, for example '1' for port 1. For more details see
the textual conventions section.
DEPENDS ON: eventInstanceType""",
}, # column
"eventInstanceName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This variable is mainly used to store additional information
about the sub-component that is generating an event. For
example this field may specify what cooling fan is faulty.
DEPENDS ON: eventInstanceType""",
}, # column
"eventSeverity" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "EventSeverity"},
},
"access" : "readonly",
"description" :
"""This variable dictates the urgency of action when a event
occurs. There are four severity levels - Critical, Major,
Minor, and Informational. Critical events are those, which
require immediate operator intervention to prevent/reduce
system down time. Major events require quick attention and
Minor events possibly require some attention. Informational
events indicate the occurrence of events that may need to be
investigated.""",
}, # column
"eventSetTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "UtcTimeStamp"},
},
"access" : "readonly",
"description" :
"""This table contains only normal events and this variable
represents the time when the event become active, i.e. the
number of seconds since Jan 1, 1970 12:00AM.""",
}, # column
"eventDescription" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""This variable contains a description of the event and reasons
behind the event. This is a free format alpha-numeric string
that is set by the entity generating this event. This variable
may be empty if there is no usefull information to report.
The maximum length of this string is 255 characters.""",
}, # column
"eventServAffective" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.36.1.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "EventServiceAffective"},
},
"access" : "readonly",
"description" :
"""This variable indicates whether the event is service affective or not""",
}, # column
"faultTrapsMIB" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.37",
"status" : "current",
}, # node
"trapInfoObjects" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.37.1",
}, # node
"trapRefSeqNum" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.37.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Indicates the former sequence number of a cleared event
in the event table. Not intended to read but only used in
trap notifications.""",
}, # scalar
"trapPersistence" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.37.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "EventPersistence"},
},
"access" : "readonly",
"description" :
"""Indicates whether the event is delta (automatically and
immediately cleared) or normal (not automatically cleared).
Not intended to read but only used in trap notifications.""",
}, # scalar
"trapSenderNodeId" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.37.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Represents the node ID of the sending network element. If not
supported should be set to 0. Not intended to read but only
used in trap notifications.""",
}, # scalar
"trapNotifications" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.37.2",
}, # node
"ipStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.38",
}, # node
"ipStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.38.1",
"status" : "current",
"description" :
"""""",
}, # table
"ipStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.38.1.1",
"status" : "current",
"linkage" : [
"ipStatusIPAddress",
"ipStatusVid",
],
"description" :
"""""",
}, # row
"ipStatusIPAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.38.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipStatusVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.38.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipStatusPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.38.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipStatusType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.38.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.120.39",
}, # node
"routingStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.39.1",
"status" : "current",
"description" :
"""""",
}, # table
"routingStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.39.1.1",
"status" : "current",
"linkage" : [
"routingStatusDestAddress",
],
"description" :
"""""",
}, # row
"routingStatusDestAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.39.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusDestMaskbits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.39.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.39.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusInterface" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.39.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusMetric" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.39.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.39.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rip" : {
"nodetype" : "namednumber",
"number" : "1"
},
"bgp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ospf" : {
"nodetype" : "namednumber",
"number" : "3"
},
"static" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfExt" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40",
}, # node
"ospfInterfaceTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.1",
"status" : "current",
"description" :
"""""",
}, # table
"ospfInterfaceEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.1.1",
"status" : "current",
"linkage" : [
"ospfIfIpAddress",
"ospfAddressLessIf",
],
"description" :
"""""",
}, # row
"ospfIfKeyId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfIfMaskbits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfDesignatedRouterID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfBackupDesignatedRouterID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.172.16.31.10.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfNbrCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfAdjacentNbrCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfHelloDueTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfAreaExtTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.2",
"status" : "current",
"description" :
"""""",
}, # table
"ospfAreaExtEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.2.1",
"status" : "current",
"linkage" : [
"ospfAreaId",
],
"description" :
"""""",
}, # row
"ospfAreaExtName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfRedistributeRouteTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.3",
"status" : "current",
"description" :
"""""",
}, # table
"ospfRedistributeRouteEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.3.1",
"status" : "current",
"linkage" : [
"ospfRedistributeRouteProtocol",
],
"description" :
"""""",
}, # row
"ospfRedistributeRouteProtocol" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rip" : {
"nodetype" : "namednumber",
"number" : "1"
},
"static" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfRedistributeRouteState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfRedistributeRouteType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfRedistributeRouteMetric" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfNbrExtTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.4",
"status" : "current",
"description" :
"""""",
}, # table
"ospfNbrExtEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.4.1",
"status" : "current",
"linkage" : [
"ospfNbrIpAddr",
"ospfNbrAddressLessIndex",
],
"description" :
"""""",
}, # row
"ospfNbrExtRole" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dr" : {
"nodetype" : "namednumber",
"number" : "1"
},
"backup" : {
"nodetype" : "namednumber",
"number" : "2"
},
"dr_other" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtDeadtime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtInterface" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtRXmtL" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.4.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtRqstL" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtDBsmL" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.4.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfLsdbExtTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.5",
"status" : "current",
"description" :
"""""",
}, # table
"ospfLsdbExtEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.5.1",
"status" : "current",
"linkage" : [
"ospfLsdbAreaId",
"ospfLsdbType",
"ospfLsdbLSID",
"ospfLsdbRouterId",
],
"description" :
"""""",
}, # row
"ospfLsdbExtLinkCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfLsdbExtRouteAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfLsdbExtRouteMaskbits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfVirtualLinkTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.6",
"status" : "current",
"description" :
"""""",
}, # table
"ospfVirtualLinkEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.6.1",
"status" : "current",
"linkage" : [
"ospfVirtIfAreaID",
"ospfVirtIfNeighbor",
],
"description" :
"""""",
}, # row
"ospfVirtualLinkName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfVirtualLinkKeyId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.40.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41",
}, # node
"sysLogState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.41.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""sysLog enabled/disabled for the switch.""",
}, # scalar
"sysLogTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.41.2",
"status" : "current",
"description" :
"""""",
}, # table
"sysLogTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.41.2.1",
"status" : "current",
"linkage" : [
"sysLogTypeIndex",
],
"description" :
"""An entry in sysLogTypeTable.""",
}, # row
"sysLogTypeIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.41.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"sysLogTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.41.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"sysLogTypeState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.41.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogTypeFacility" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.41.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"local_user0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"local_user1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"local_user2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"local_user3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"local_user4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"local_user5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"local_user6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"local_user7" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.41.3",
"status" : "current",
"description" :
"""""",
}, # table
"sysLogServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.41.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"sysLogServerAddress",
],
"description" :
"""An entry in sysLogServerTable.""",
}, # row
"sysLogServerAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.41.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"sysLogServerLogLevel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.41.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"level0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"level0-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"level0-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"level0-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"level0-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"level0-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"level0-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"level0-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.41.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mrstp" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42",
}, # node
"mrstpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1",
}, # node
"mrstpBridgeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1",
"status" : "current",
"description" :
"""""",
}, # table
"mrstpBridgeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1",
"status" : "current",
"linkage" : [
"mrstpBridgeIndex",
],
"description" :
"""An entry in mrstpBridgeTable.""",
}, # row
"mrstpBridgeIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The tree index of the MRSTP.""",
}, # column
"mrstpState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Enabled/disabled on the mrstp bridge.""",
}, # column
"mrstpProtocolSpecification" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"decLb100" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ieee8021d" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""An indication of what version of the Spanning
Tree Protocol is being run. The value
'decLb100(2)' indicates the DEC LANbridge 100
Spanning Tree protocol. IEEE 802.1d
implementations will return 'ieee8021d(3)'. If
future versions of the IEEE Spanning Tree Protocol
are released that are incompatible with the
current version a new value will be defined.""",
}, # column
"mrstpPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The value of the write-able portion of the Bridge
ID, i.e., the first two octets of the (8 octet
long) Bridge ID. The other (last) 6 octets of the
Bridge ID are given by the value of
dot1dBaseBridgeAddress.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.7""",
}, # column
"mrstpTimeSinceTopologyChange" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""The time (in hundredths of a second) since the
last time a topology change was detected by the
bridge entity.""",
"reference>" :
"""IEEE 802.1D-1990: Section 6.8.1.1.3""",
}, # column
"mrstpTopChanges" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.6",
"status" : "current",
"access" : "readonly",
"description" :
"""The total number of topology changes detected by
this bridge since the management entity was last
reset or initialized.""",
"reference>" :
"""IEEE 802.1D-1990: Section 6.8.1.1.3""",
}, # column
"mrstpDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The bridge identifier of the root of the spanning
tree as determined by the Spanning Tree Protocol
as executed by this node. This value is used as
the Root Identifier parameter in all Configuration
Bridge PDUs originated by this node.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.1""",
}, # column
"mrstpRootCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The cost of the path to the root as seen from
this bridge.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.2""",
}, # column
"mrstpRootPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the port which offers the
lowest cost path from this bridge to the root
bridge.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.3""",
}, # column
"mrstpMaxAge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""The maximum age of Spanning Tree Protocol
information learned from the network on any port
before it is discarded, in units of hundredths of
a second. This is the actual value that this
bridge is currently using.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.4""",
}, # column
"mrstpHelloTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""The amount of time between the transmission of
Configuration bridge PDUs by this node on any port
when it is the root of the spanning tree or trying
to become so, in units of hundredths of a second.
This is the actual value that this bridge is
currently using.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.5""",
}, # column
"mrstpHoldTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This time value determines the interval length
during which no more than two Configuration bridge
PDUs shall be transmitted by this node, in units
of hundredths of a second.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.14""",
}, # column
"mrstpForwardDelay" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""This time value, measured in units of hundredths
of a second, controls how fast a port changes its
spanning state when moving towards the Forwarding
state. The value determines how long the port
stays in each of the Listening and Learning
states, which precede the Forwarding state. This
value is also used, when a topology change has
been detected and is underway, to age all dynamic
entries in the Forwarding Database. [Note that
this value is the one that this bridge is
currently using, in contrast to
mrstpBridgeForwardDelay which is the value that
this bridge and all others would start using
if/when this bridge were to become the root.]""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.6""",
}, # column
"mrstpBridgeMaxAge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "600",
"max" : "4000"
},
],
"range" : {
"min" : "600",
"max" : "4000"
},
},
},
"access" : "readwrite",
"description" :
"""The value that all bridges use for MaxAge when
this bridge is acting as the root. Note that
802.1D-1990 specifies that the range for this
parameter is related to the value of
mrstpBridgeHelloTime. The granularity of this
timer is specified by 802.1D-1990 to be 1 second.
An agent may return a badValue error if a set is
attempted to a value which is not a whole number
of seconds.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.8""",
}, # column
"mrstpBridgeHelloTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "100",
"max" : "1000"
},
],
"range" : {
"min" : "100",
"max" : "1000"
},
},
},
"access" : "readwrite",
"description" :
"""The value that all bridges use for HelloTime when
this bridge is acting as the root. The
granularity of this timer is specified by 802.1D-
1990 to be 1 second. An agent may return a
badValue error if a set is attempted to a value
which is not a whole number of seconds.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.9""",
}, # column
"mrstpBridgeForwardDelay" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.1.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "400",
"max" : "3000"
},
],
"range" : {
"min" : "400",
"max" : "3000"
},
},
},
"access" : "readwrite",
"description" :
"""The value that all bridges use for ForwardDelay
when this bridge is acting as the root. Note that
802.1D-1990 specifies that the range for this
parameter is related to the value of
mrstpBridgeMaxAge. The granularity of this
timer is specified by 802.1D-1990 to be 1 second.
An agent may return a badValue error if a set is
attempted to a value which is not a whole number
of seconds.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.10""",
}, # column
"mrstpPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.2",
"status" : "current",
"description" :
"""A table that contains port-specific information
for the Spanning Tree Protocol.""",
}, # table
"mrstpPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.2.1",
"status" : "current",
"linkage" : [
"mrstpPort",
],
"description" :
"""A list of information maintained by every port
about the Spanning Tree Protocol state for that
port.""",
}, # row
"mrstpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The port number of the port for which this entry
contains Spanning Tree Protocol management
information.""",
"reference>" :
"""IEEE 802.1D-1990: Section 6.8.2.1.2""",
}, # column
"mrstpPortPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""The value of the priority field which is
contained in the first (in network byte order)
octet of the (2 octet long) Port ID. The other
octet of the Port ID is given by the value of
mrstpPort.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.1""",
}, # column
"mrstpPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"blocking" : {
"nodetype" : "namednumber",
"number" : "2"
},
"listening" : {
"nodetype" : "namednumber",
"number" : "3"
},
"learning" : {
"nodetype" : "namednumber",
"number" : "4"
},
"forwarding" : {
"nodetype" : "namednumber",
"number" : "5"
},
"broken" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""The port's current state as defined by
application of the Spanning Tree Protocol. This
state controls what action a port takes on
reception of a frame. If the bridge has detected
a port that is malfunctioning it will place that
port into the broken(6) state. For ports which
are disabled (see mrstpPortEnable), this object
will have a value of disabled(1).""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.2""",
}, # column
"mrstpPortEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The enabled/disabled status of the port.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.2""",
}, # column
"mrstpPortPathCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The contribution of this port to the path cost of
paths towards the spanning tree root which include
this port. 802.1D-1990 recommends that the
default value of this parameter be in inverse
proportion to the speed of the attached LAN.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.3""",
}, # column
"mrstpPortDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The unique Bridge Identifier of the Bridge
recorded as the Root in the Configuration BPDUs
transmitted by the Designated Bridge for the
segment to which the port is attached.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.4""",
}, # column
"mrstpPortDesignatedCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The path cost of the Designated Port of the
segment connected to this port. This value is
compared to the Root Path Cost field in received
bridge PDUs.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.5""",
}, # column
"mrstpPortDesignatedBridge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The Bridge Identifier of the bridge which this
port considers to be the Designated Bridge for
this port's segment.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.6""",
}, # column
"mrstpPortDesignatedPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.1.2.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "2",
"max" : "2"
},
],
"range" : {
"min" : "2",
"max" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The Port Identifier of the port on the Designated
Bridge for this port's segment.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.7""",
}, # column
"mrstpPortForwardTransitions" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.10",
"status" : "current",
"access" : "readonly",
"description" :
"""The number of times this port has transitioned
from the Learning state to the Forwarding state.""",
}, # column
"mrstpPortOnBridgeIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Indetify the bridge index that this port joined to in MRSTP.""",
}, # column
"mrstpNotifications" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.2",
}, # node
"radiusServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43",
}, # node
"radiusAuthServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1",
}, # node
"radiusAuthServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.43.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"radiusAuthServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.43.1.3",
"status" : "current",
"description" :
"""""",
}, # table
"radiusAuthServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.43.1.3.1",
"status" : "current",
"linkage" : [
"radiusAuthServerIndex",
],
"description" :
"""An entry in radiusAuthServerTable.""",
}, # row
"radiusAuthServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.43.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"radiusAuthServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAuthServerUdpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.43.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAuthServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.43.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.43.2",
}, # node
"radiusAcctServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"radiusAcctServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.43.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"radiusAcctServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.43.2.2.1",
"status" : "current",
"linkage" : [
"radiusAcctServerIndex",
],
"description" :
"""An entry in radiusAcctServerTable.""",
}, # row
"radiusAcctServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.43.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"radiusAcctServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerUdpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.44",
}, # node
"tacacsAuthServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1",
}, # node
"tacacsAuthServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.44.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tacacsAuthServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.44.1.3",
"status" : "current",
"description" :
"""""",
}, # table
"tacacsAuthServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.44.1.3.1",
"status" : "current",
"linkage" : [
"tacacsAuthServerIndex",
],
"description" :
"""An entry in tacacsAuthServerTable.""",
}, # row
"tacacsAuthServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.44.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"tacacsAuthServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.44.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAuthServerTcpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAuthServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.44.2",
}, # node
"tacacsAcctServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.44.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tacacsAcctServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.172.16.31.10.44.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"tacacsAcctServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.44.2.2.1",
"status" : "current",
"linkage" : [
"tacacsAcctServerIndex",
],
"description" :
"""An entry in tacacsAcctServerTable.""",
}, # row
"tacacsAcctServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "172.16.17.32.4.1.890.1.5.8.20.44.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"tacacsAcctServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerTcpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.44.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.44.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aaaSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45",
}, # node
"authenticationSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.1",
}, # node
"authenticationTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.1.1",
"status" : "current",
"description" :
"""""",
}, # table
"authenticationTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45.1.1.1",
"status" : "current",
"linkage" : [
"authenticationTypeName",
],
"description" :
"""An entry in authenticationTypeTable.""",
}, # row
"authenticationTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"authenticationTypeMethodList" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45.2",
}, # node
"accountingUpdatePeriod" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"accountingTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"accountingTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45.2.2.1",
"status" : "current",
"linkage" : [
"accountingTypeName",
],
"description" :
"""An entry in accountingTypeTable.""",
}, # row
"accountingTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.45.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"accountingTypeActive" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeBroadcast" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"start-stop" : {
"nodetype" : "namednumber",
"number" : "1"
},
"stop-only" : {
"nodetype" : "namednumber",
"number" : "2"
},
"not-available" : {
"nodetype" : "namednumber",
"number" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeMethod" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"radius" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tacacs" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypePrivilege" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"privilege-0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"privilege-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"privilege-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"privilege-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"privilege-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"privilege-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"privilege-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"privilege-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
"privilege-8" : {
"nodetype" : "namednumber",
"number" : "8"
},
"privilege-9" : {
"nodetype" : "namednumber",
"number" : "9"
},
"privilege-10" : {
"nodetype" : "namednumber",
"number" : "10"
},
"privilege-11" : {
"nodetype" : "namednumber",
"number" : "11"
},
"privilege-12" : {
"nodetype" : "namednumber",
"number" : "12"
},
"privilege-13" : {
"nodetype" : "namednumber",
"number" : "13"
},
"privilege-14" : {
"nodetype" : "namednumber",
"number" : "14"
},
"not-available" : {
"nodetype" : "namednumber",
"number" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnp" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100",
}, # node
"dhcpSnpVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.1",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpSnpVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.1.1",
"status" : "current",
"linkage" : [
"dhcpSnpVlanEntryVid",
],
"description" :
"""""",
}, # row
"dhcpSnpVlanEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpVlanEntryEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnpVlanEntryOption82Enable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnpVlanEntryInfo" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnpPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.2",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpSnpPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.2.1",
"status" : "current",
"linkage" : [
"dhcpSnpPortEntryPort",
],
"description" :
"""""",
}, # row
"dhcpSnpPortEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpPortEntryTrust" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnpPortEntryRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2048"
},
],
"range" : {
"min" : "0",
"max" : "2048"
},
},
},
"access" : "readwrite",
"description" :
"""0 means unlimited""",
}, # column
"dhcpSnpBindTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.3",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpSnpBindEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1",
"status" : "current",
"linkage" : [
"dhcpSnpBindEntryMac",
"dhcpSnpBindEntryVid",
],
"description" :
"""""",
}, # row
"dhcpSnpBindEntryMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryLease" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpEnable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDb" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5",
}, # node
"dhcpSnpDbAbort" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbWriteDelay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbUrl" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbUrlRenew" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStat" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5",
}, # node
"dhcpSnpDbStatClear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatDelayExpiry" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatAbortExpiry" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatLastSuccTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatLastFailTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatLastFailReason" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatTotalAttempt" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatStartupFail" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatSuccTrans" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatFailTrans" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatSuccRead" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatFailRead" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatSuccWrite" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatFailWrite" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatLastIgnoreBindCol" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: binding collision""",
}, # scalar
"dhcpSnpDbStatLastIgnoreExpireLease" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: expired leases""",
}, # scalar
"dhcpSnpDbStatLastIgnoreInvalidIntf" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.19",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: invalid interface""",
}, # scalar
"dhcpSnpDbStatLastIgnoreUnsuppVlan" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.192.168.3.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: unsupported vlans""",
}, # scalar
"dhcpSnpDbStatLastIgnoreParse" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.21",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: parsing error""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreBindCol" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.22",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: binding collision""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreExpireLease" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.23",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: expired leases""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreInvalidIntf" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.24",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: invalid interface""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreUnsuppVlan" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.25",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: unsupported vlans""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreParse" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.26",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: parsing error""",
}, # scalar
"dhcpSnpDbStatLastIgnoreTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.5.5.27",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDhcpVlan" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.6",
}, # node
"dhcpSnpDhcpVlanVid" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.100.6.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "4094"
},
],
"range" : {
"min" : "0",
"max" : "4094"
},
},
},
"access" : "readwrite",
"description" :
"""0: disable DHCP VLAN.""",
}, # scalar
"ipsg" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.101",
}, # node
"ipsgTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.101.1",
"status" : "current",
"description" :
"""""",
}, # table
"ipsgEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.101.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"ipsgEntryMac",
"ipsgEntryVid",
],
"description" :
"""""",
}, # row
"ipsgEntryMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.101.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ipsgEntryLease" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.101.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""second""",
}, # column
"ipsgEntryType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.101.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dhcp" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.101.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0 means any port""",
}, # column
"ipsgEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspect" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102",
}, # node
"arpInspectSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1",
}, # node
"arpInspectState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectFilterAgingTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2147483647"
},
],
"range" : {
"min" : "0",
"max" : "2147483647"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLog" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.3",
}, # node
"arpInspectLogEntries" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1024"
},
],
"range" : {
"min" : "0",
"max" : "1024"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogRate" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.3.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1024"
},
],
"range" : {
"min" : "0",
"max" : "1024"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogInterval" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.3.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2147483647"
},
],
"range" : {
"min" : "0",
"max" : "2147483647"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.4",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.4.1",
"status" : "current",
"linkage" : [
"arpInspectVlanVid",
],
"description" :
"""""",
}, # row
"arpInspectVlanVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectVlanLog" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"all" : {
"nodetype" : "namednumber",
"number" : "1"
},
"none" : {
"nodetype" : "namednumber",
"number" : "2"
},
"permit" : {
"nodetype" : "namednumber",
"number" : "3"
},
"deny" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectVlanStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.5",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.5.1",
"status" : "current",
"linkage" : [
"arpInspectPortIndex",
],
"description" :
"""""",
}, # row
"arpInspectPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectPortTrust" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.5.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"trusted" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untrusted" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectPortRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.5.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2048"
},
],
"range" : {
"min" : "0",
"max" : "2048"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectPortInterval" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.1.5.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2",
}, # node
"arpInspectFilterClear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogClear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectFilterTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.3",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectFilterEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"arpInspectFilterMac",
"arpInspectFilterVid",
],
"description" :
"""""",
}, # row
"arpInspectFilterMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterExpiry" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterReason" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"macVid" : {
"nodetype" : "namednumber",
"number" : "1"
},
"port" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ip" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectLogTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.4",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectLogEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.4.1",
"status" : "current",
"linkage" : [
"arpInspectLogMac",
"arpInspectLogVid",
"arpInspectLogPort",
"arpInspectLogIp",
],
"description" :
"""""",
}, # row
"arpInspectLogMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.4.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogNumPkt" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.4.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectStatisticsEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5.1",
"status" : "current",
"linkage" : [
"arpInspectStatisticsVid",
],
"description" :
"""""",
}, # row
"arpInspectStatisticsVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsReceived" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5.1.2",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsRequest" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5.1.3",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsReply" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5.1.4",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsForward" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5.1.5",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5.1.6",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsClear" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.102.2.5.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"trTCMSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103",
}, # node
"trTCMState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Two-rate three color marker enabled/disabled for the switch.""",
}, # scalar
"trTCMMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"color-aware" : {
"nodetype" : "namednumber",
"number" : "0"
},
"color-blind" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"trTCMPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103.3",
"status" : "current",
"description" :
"""""",
}, # table
"trTCMPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in trTCMPortTable.""",
}, # row
"trTCMPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""Two-rate three color marker enabled/disabled on the port.""",
}, # column
"trTCMPortCIR" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed CIR in pkts/s.""",
}, # column
"trTCMPortPIR" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed PIR in pkts/s.""",
}, # column
"trTCMPortDscpGreen" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-63""",
}, # column
"trTCMPortDscpYellow" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103.3.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-63""",
}, # column
"trTCMPortDscpRed" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.103.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-63""",
}, # column
"loopGuardSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.104",
}, # node
"loopGuardState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.104.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"loopGuardPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.104.2",
"status" : "current",
"description" :
"""""",
}, # table
"loopGuardPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.104.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in loopGuardPortTable.""",
}, # row
"loopGuardPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.104.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"subnetBasedVlanSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105",
}, # node
"subnetBasedVlanState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""subnet-based vlan feature enabled/disabled for the switch.""",
}, # scalar
"dhcpVlanOverrideState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""dhcp vlan override enabled/disabled when subnet-based vlan is enabled.""",
}, # scalar
"subnetBasedVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.3",
"status" : "current",
"description" :
"""""",
}, # table
"subnetBasedVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"subnetBasedVlanSrcIp",
"subnetBasedVlanSrcMaskBit",
],
"description" :
"""An entry in subnetBasedVlanTable.""",
}, # row
"subnetBasedVlanSrcIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""source ip for subnet-based vlan entry""",
}, # column
"subnetBasedVlanSrcMaskBit" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""source ip mask-bits for subnet-based vlan entry""",
}, # column
"subnetBasedVlanName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.3.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "31"
},
],
"range" : {
"min" : "0",
"max" : "31"
},
},
},
"access" : "readwrite",
"description" :
"""name for subnet-based vlan entry""",
}, # column
"subnetBasedVlanVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.3.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readwrite",
"description" :
"""vid for subnet-based vlan entry""",
}, # column
"subnetBasedVlanPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""priority for subnet-based vlan entry""",
}, # column
"subnetBasedVlanEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.105.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"macAuthenticationSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.106",
}, # node
"macAuthenticationState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.106.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"macAuthenticationNamePrefix" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.106.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"macAuthenticationPassword" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.106.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"macAuthenticationTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.106.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"macAuthenticationPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.106.5",
"status" : "current",
"description" :
"""""",
}, # table
"macAuthenticationPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.106.5.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in macAuthenticationPortTable.""",
}, # row
"macAuthenticationPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.106.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mstp" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107",
}, # node
"mstpGen" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1",
}, # node
"mstpGenState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Enabled/disabled on the mrstp bridge.""",
}, # scalar
"mstpGenCfgIdName" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The configuration name that identifies the MST
region and is used as one of the inputs in the
computation of the MST Configuration Identifier.""",
"reference>" :
"""12.12.3.4.2.b)""",
}, # scalar
"mstpGenCfgIdRevLevel" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""This object identifies the MST revision that
identifies the MST region and is used as one
of the inputs in the computation of the MST
configuration Identifier.""",
"reference>" :
"""12.12.3.4.2.c)""",
}, # scalar
"mstpGenCfgIdCfgDigest" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "16",
"max" : "16"
},
],
"range" : {
"min" : "16",
"max" : "16"
},
},
},
"access" : "readonly",
"description" :
"""Configuration Digest.""",
"reference>" :
"""12.12.3.3.3.a.4""",
}, # scalar
"mstpGenHelloTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenMaxAge" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "6",
"max" : "40"
},
],
"range" : {
"min" : "6",
"max" : "40"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenForwardDelay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "4",
"max" : "30"
},
],
"range" : {
"min" : "4",
"max" : "30"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenMaxHops" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "4",
"max" : "30"
},
],
"range" : {
"min" : "4",
"max" : "30"
},
},
},
"access" : "readwrite",
"description" :
"""13.22.f)""",
}, # scalar
"mstpGenCistRootPathCost" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # scalar
"mstpGenCistRootBrid" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "32",
"max" : "32"
},
],
"range" : {
"min" : "32",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
""".""",
}, # scalar
"mstMapTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.20",
"status" : "current",
"description" :
"""This table contains one entry for each instance of MSTP.""",
}, # table
"mstMapEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.20.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mstMapIndex",
],
"description" :
"""A conceptual row containing the status of the MSTP instance.""",
}, # row
"mstMapIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.20.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "noaccess",
"description" :
"""Uniquely identifies an instance. The entry of this table with index 0
presents always, represents CIST. When SET operation """,
}, # column
"mstMapVlans1k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.20.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN. The
first octet corresponds to VLANs with VlanIndex values
1 through 8; the second octet to VLANs 9 through
16 etc. The most significant bit of each octet
corresponds to the lowest VlanIndex value in that octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans2k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.20.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 1024 through 2047. The
first octet corresponds to VLANs with VlanIndex values
1024 through 1031; the second octet to VLANs 1032
through 1039 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans3k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.20.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 2048 through 3071. The
first octet corresponds to VLANs with VlanIndex values
of 2048 through 2055; the second octet to VLANs 2056
through 2063 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans4k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.20.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 3072 through 4095. The
first octet corresponds to VLANs with VlanIndex values
3072 through 3079; the second octet to VLANs 3080
through 3087 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.20.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mstVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.30",
"status" : "current",
"description" :
"""This table contains one entry for each VlanId.""",
}, # table
"mstVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.30.1",
"status" : "current",
"linkage" : [
"mstVlanIndex",
],
"description" :
"""Information regarding the instance to which each Vlan is mapped.""",
}, # row
"mstVlanIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.30.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "noaccess",
"description" :
"""The VlanId for which this entry contains the instance mapped.""",
}, # column
"mstVlanMstIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.30.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "readonly",
"description" :
"""An integer with values ranging from 0 to 64 that identify a
the CIST/MSTI instance to which this VLAN is mapped""",
}, # column
"mstpPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.40",
"status" : "current",
"description" :
"""A table that contains generic information about
every port that is associated with this bridge.""",
}, # table
"mstpPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.40.1",
"status" : "current",
"linkage" : [
"mstpPortIndex",
],
"description" :
"""A list of information for each port of the
bridge.""",
}, # row
"mstpPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.10172.16.58.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "noaccess",
"description" :
"""A unique value, greater than zero, for each Port.
The value for each interface sub-layer
must remain constant at least from one re-initialization
of the entity's network management system to the next re-
initialization.""",
}, # column
"mstpPortOperEdgePort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.40.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""""",
"reference>" :
"""""",
}, # column
"mstpPortOperPointToPointMAC" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.40.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""""",
"reference>" :
"""""",
}, # column
"mstpXstTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.50",
"status" : "current",
"description" :
""".""",
}, # table
"mstpXstEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.50.1",
"status" : "current",
"linkage" : [
"mstpXstId",
],
"description" :
""".""",
}, # row
"mstpXstId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.50.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "readonly",
"description" :
"""0 means CIST.""",
}, # column
"mstpXstBridgePriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.50.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "61440"
},
],
"range" : {
"min" : "0",
"max" : "61440"
},
},
},
"access" : "readwrite",
"default" : "32768",
"description" :
"""Bridge priority, in steps of 4096.""",
}, # column
"mstpXstBridgeId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.192.168.127.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstInternalRootCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.192.168.3.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstRootPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.50.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstTimeSinceTopologyChange" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.50.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstTopologyChangesCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.50.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60",
"status" : "current",
"description" :
""".""",
}, # table
"mstpXstPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60.1",
"status" : "current",
"linkage" : [
"mstpXstPortXstId",
"mstpXstPortIndex",
],
"description" :
""".""",
"reference>" :
""".""",
}, # row
"mstpXstPortXstId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "noaccess",
"description" :
"""0 means CIST.""",
}, # column
"mstpXstPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.192.168.127.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The value of mstpPortIndex of the Port
in mstpPortTable.""",
}, # column
"mstpXstPortEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.192.168.127.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
""".""",
}, # column
"mstpXstPortPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "128",
"description" :
"""Port priority, in steps of 16.""",
}, # column
"mstpXstPortPathCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
""".""",
}, # column
"mstpXstPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"discarding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"learning" : {
"nodetype" : "namednumber",
"number" : "2"
},
"forwarding" : {
"nodetype" : "namednumber",
"number" : "3"
},
"unknown" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedBridge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.60.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpNotifications" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.70",
}, # node
}, # nodes
"notifications" : {
"eventOnTrap" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.37.2.1",
"status" : "current",
"objects" : {
"eventSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventEventId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventName" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventSetTime" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventSeverity" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceType" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceName" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventServAffective" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventDescription" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"trapPersistence" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"trapSenderNodeId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"sysObjectID" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""This trap is used to inform network management system that a delta
fault event (events that are automatically cleared) has occured
or a normal fault event (not automatically cleared) state has
been set on.
Objects are used as follows:
- eventSeqNum is the sequence number of the event. For normal
type of events must equal to the sequence number of the event
in the events table.
- eventEventId specifies what fault event has occured.
- eventName specifies the name of the fault event.
- eventSetTime indicates when fault event has occured
(delta events) or when fault has been set on (normal events).
- eventSeverity reports the severity level of the event.
- eventInstanceType indicates what kind of object is faulty.
- eventInstanceId specifies what instance is faulty.
- eventInstanceName may contain textual description for
the faulty object.
- eventServAffective specifies whether the event is
immediately service affcetive.
- eventDescription reports possible additional information about the event.
- trapPersistence tells whether this event is a delta or normal event.
- trapSenderNodeId specifies the node ID of the sending network element if
configuring it is supported for the network element, otherwise 0.
- sysObjectID specifies what kind of equipment reports the fault event.
For more information see the eventTable specification""",
}, # notification
"eventClearedTrap" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37.2.2",
"status" : "current",
"objects" : {
"eventSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventEventId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventSetTime" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceType" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"trapRefSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"trapSenderNodeId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"sysObjectID" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""This trap is used to inform network management system that a normal
type fault event has been cleared (state set off).
Objects are used as follows:
- eventSeqNum is the sequence number of the this clearing event. Note that
the sequence number of the cleared event is reported in the trapRefSeqNum
object.
- eventEventId specifies what event has been cleared.
- eventSetTime indicates when fault event has been cleared.
- eventInstanceType indicates what kind of object has been
faulty.
- eventInstanceId specifies what instance has been faulty.
- trapRefSeqNum specifies the sequence number of the cleared event (i.e.
the sequence number was assigned for the event in the events table).
- trapSenderNodeId specifies the node ID of the sending network element if
configuring it is supported for the network element, otherwise 0.
- sysObjectID specifies what kind of equipment reports the clearing event.
For more information see the eventTable specification""",
}, # notification
"newRoot" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.2.1",
"status" : "current",
"objects" : {
"mrstpBridgeIndex" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""""",
}, # notification
"topologyChange" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.42.2.2",
"status" : "current",
"objects" : {
"mrstpBridgeIndex" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""""",
}, # notification
"newRoot" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.70.1",
"status" : "current",
"objects" : {
"mstpXstId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""""",
}, # notification
"topologyChange" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.31.10.107.70.2",
"status" : "current",
"objects" : {
"mstpXstId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_28_me_bx.py
|
<gh_stars>0
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_DGS_1210_28_ME_BX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_28ME_BX_7_03_001_mib')
GET_DDM_SENSORS = 'get_ddm_sensors'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/Extreme_Networks_EXTREME_SOFTWARE_MONITOR_MIB_mib.py
|
<filename>snmp/nav/smidumps/Extreme_Networks_EXTREME_SOFTWARE_MONITOR_MIB_mib.py
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python EXTREME-SOFTWARE-MONITOR-MIB
FILENAME = "mibs/Extreme Networks/EXTREME-SOFTWARE-MONITOR-MIB.mib"
MIB = {
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"EXTREME-SOFTWARE-MONITOR-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""Extreme Networks, Inc.""",
"contact" :
"""www.extremenetworks.com""",
"description" :
"""Extreme Software Monitor objects: objects common to all platforms""",
"revisions" : (
{
"date" : "2013-09-20 10:06",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
),
"identity node" : "extremeSwMonitor",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
{"module" : "SNMPv2-TC", "name" : "DisplayString"},
{"module" : "EXTREME-BASE-MIB", "name" : "extremeAgent"},
{"module" : "", "name" : "extremeImageDescription"},
{"module" : "EXTREME-BASE-MIB", "name" : "PortList"},
),
"nodes" : {
"extremeSwMonitor" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32",
"status" : "current",
}, # node
"extremeSwMonitorCpu" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1",
}, # node
"extremeCpuMonitorInterval" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "5",
"max" : "60"
},
],
"range" : {
"min" : "5",
"max" : "60"
},
},
},
"access" : "readonly",
"description" :
"""Cpu monitoring interval in seconds. Can not be smaller
then 5 seconds.""",
}, # scalar
"extremeCpuMonitorTotalUtilization" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Total CPU utlization (percentage) as of last sampling.""",
}, # scalar
"extremeCpuMonitorTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.3",
"status" : "current",
"description" :
"""Table of CPU processes that are active.""",
}, # table
"extremeCpuMonitorEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1",
"status" : "current",
"implied" : "true",
"linkage" : [
"extremeCpuMonitorSlotId",
"extremeCpuMonitorProcessName",
],
"description" :
"""An entry in table of describes a single process.""",
}, # row
"extremeCpuMonitorSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Slot Id of the process monitored.""",
}, # column
"extremeCpuMonitorProcessName" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
},
},
"access" : "noaccess",
"description" :
"""Name associated with the reported process id.""",
}, # column
"extremeCpuMonitorProcessId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Process identifier assigned by the operating system when
this process is created.""",
}, # column
"extremeCpuMonitorProcessState" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The current state of the process as reported by Extremeware XOS.""",
}, # column
"extremeCpuMonitorUtilization5secs" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.3.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by this process. This
is the utilization of the process in the last 5 seconds.""",
}, # column
"extremeCpuMonitorUtilization10secs" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by this process. This
is the utilization of the process in the last 10 seconds.""",
}, # column
"extremeCpuMonitorUtilization30secs" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by this process. This
is the utilization of the process in the last 30 seconds.""",
}, # column
"extremeCpuMonitorUtilization1min" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.3.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by this process. This
is the utilization of the process in the last 1 minute.""",
}, # column
"extremeCpuMonitorUtilization5mins" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.3.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by this process. This
is the utilization of the process in the last 5 minutes.""",
}, # column
"extremeCpuMonitorUtilization30mins" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by this process. This
is the utilization of the process in the last 30 minutes.""",
}, # column
"extremeCpuMonitorUtilization1hour" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by this process. This
is the utilization of the process in the last 1 hour.""",
}, # column
"extremeCpuMonitorMaxUtilization" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The maximum CPU utilization by this process since
the time the start started executing. """,
}, # column
"extremeCpuMonitorUserTime" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.3.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The amount of time process spend in application space from
the time the process started executing. """,
}, # column
"extremeCpuMonitorSystemTime" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.3.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The amount of time process spend in kernel space from
the time the process started executing. """,
}, # column
"extremeCpuMonitorSystemTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11",
"status" : "current",
"description" :
"""Table of CPU utilization for system processes.""",
}, # table
"extremeCpuMonitorSystemEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11.1",
"status" : "current",
"linkage" : [
"extremeCpuMonitorSystemSlotId",
],
"description" :
"""An entry in table of describes a single slot CPU
utilization.""",
}, # row
"extremeCpuMonitorSystemSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Slot Id of the system monitored.""",
}, # column
"extremeCpuMonitorSystemUtilization5secs" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by set of system resources. This
is the utilization of the process in the last 5 seconds.""",
}, # column
"extremeCpuMonitorSystemUtilization10secs" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by set of system resources This
is the utilization of the system resources in the last 10 seconds.""",
}, # column
"extremeCpuMonitorSystemUtilization30secs" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by system resources process. This
is the utilization of the system resources in the last 30 seconds.""",
}, # column
"extremeCpuMonitorSystemUtilization1min" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.4.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by system resources. This
is the utilization of the system resources in the last 1 minute.""",
}, # column
"extremeCpuMonitorSystemUtilization5mins" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by system resources. This
is the utilization of the system resourcesin the last 5 minutes.""",
}, # column
"extremeCpuMonitorSystemUtilization30mins" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.4.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by system resources. This
is the utilization of the system resources in the last 30 minutes.""",
}, # column
"extremeCpuMonitorSystemUtilization1hour" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.4.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The CPU utilization by this process. This
is the utilization of the process in the last 1 hour.""",
}, # column
"extremeCpuMonitorSystemMaxUtilization" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.4.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The maximum CPU utilization by this process since
the time the start started executing. """,
}, # column
"extremeCpuMonitorThreshold" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readwrite",
"description" :
"""Threshold for CPU Aggregation utilization trap""",
}, # scalar
"extremeCpuMonitorCurrentUtilization" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "notifyonly",
"description" :
"""Percentage of the amount of time recorded in seconds that the process spends occupying CPU resources. This value is reported in extremeSwMonitorCpuUtilization and extremeSwMonitorCpuUtilizationNormal trap.""",
}, # scalar
"extremeSwMonitorMemory" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2",
}, # node
"extremeMemoryMonitorSystemTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3",
"status" : "current",
"description" :
"""Table of Memory consumption for processes that are active.""",
}, # table
"extremeMemoryMonitorSystemEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.2.1",
"status" : "current",
"linkage" : [
"extremeMemoryMonitorSystemSlotId",
],
"description" :
"""An entry in table of describes a single process.""",
}, # row
"extremeMemoryMonitorSystemSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Slot Id of the MSM monitored.""",
}, # column
"extremeMemoryMonitorSystemTotal" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "8"
},
],
"range" : {
"min" : "0",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""Total amount of DRAM in Kbytes in the system.""",
}, # column
"extremeMemoryMonitorSystemFree" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "8"
},
],
"range" : {
"min" : "0",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""Total amount of free memory in Kbytes in the system.""",
}, # column
"extremeMemoryMonitorSystemUsage" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "8"
},
],
"range" : {
"min" : "0",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""Total amount of memory used by system services in Kbytes in the system.""",
}, # column
"extremeMemoryMonitorUserUsage" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "8"
},
],
"range" : {
"min" : "0",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""Total amount of memory used by applications in Kbytes in the system.""",
}, # column
"extremeMemoryMonitorTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32",
"status" : "current",
"description" :
"""Table of Memory consumption for processes that are active.""",
}, # table
"extremeMemoryMonitorEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1",
"status" : "current",
"implied" : "true",
"linkage" : [
"extremeMemoryMonitorSlotId",
"extremeMemoryMonitorProcessName",
],
"description" :
"""An entry in table of describes a single process.""",
}, # row
"extremeMemoryMonitorSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Slot Id of the process monitored.""",
}, # column
"extremeMemoryMonitorProcessName" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
},
},
"access" : "noaccess",
"description" :
"""Name associated with the reported process.""",
}, # column
"extremeMemoryMonitorUsage" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Current memory consumption in Kbytes for the process.""",
}, # column
"extremeMemoryMonitorLimit" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Maximum memory consumption in Kbytes for the process.""",
}, # column
"extremeMemoryMonitorZone" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "8"
},
],
"range" : {
"min" : "0",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""Current process memory consumption zone. Zones are Green (up to 70% cosumption), Yellow (70-80%), Orange (80-90%), Red (90-95%) either total cpu consumption or memory consumption limit configured per process.""",
}, # column
"extremeMemoryMonitorGreenZoneCount" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Number of times process moved to green zone.""",
}, # column
"extremeMemoryMonitorYellowZoneCount" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.3.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Number of times process moved from green to yellow zone.""",
}, # column
"extremeMemoryMonitorOrangeZoneCount" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Number of times process moved from yellow zone to orange.""",
}, # column
"extremeMemoryMonitorRedZoneCount" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.2.3.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Number of times process moved from orange zone to red.""",
}, # column
"extremeMemoryMonitorGreenZoneThreshold" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Percentage of memory consumption that defines green zone.""",
}, # column
"extremeMemoryMonitorYellowZoneThreshold" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Percentage of memory consumption that defines yellow zone.""",
}, # column
"extremeMemoryMonitorOrangeZoneThreshold" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Percentage of memory consumption that defines orange zone.""",
}, # column
"extremeMemoryMonitorRedZoneThreshold" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.17.32.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Percentage of memory consumption that defines red zone.""",
}, # column
"extremeSwMonitorNotifications" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.3",
}, # node
"extremeSwMonitorNotificationsPrefix" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3",
}, # node
"extremeServiceLicense" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.4",
}, # node
"extremeServiceLicenseExpiryDate" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "notifyonly",
"description" :
"""This report the expiration date of the license.""",
}, # scalar
"extremeServiceLicenseType" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "notifyonly",
"description" :
"""This report the service license type.""",
}, # scalar
"imageDescription" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "notifyonly",
"description" :
"""This report the image version on which license was enabled.""",
}, # scalar
"noOfDaysLeft" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "90"
},
],
"range" : {
"min" : "0",
"max" : "90"
},
},
},
"access" : "notifyonly",
"description" :
"""This report the number of days left to service license expire.""",
}, # scalar
"extremeTrialLicense" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.5",
}, # node
"trialPeriod" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "90"
},
],
"range" : {
"min" : "0",
"max" : "90"
},
},
},
"access" : "notifyonly",
"description" :
"""This report the number of days left to service license expire.""",
}, # scalar
}, # nodes
"notifications" : {
"extremeSwMonitorCpuUtilization" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3.1",
"status" : "current",
"objects" : {
"extremeCpuMonitorSlotId" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"extremeCpuMonitorProcessName" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"extremeCpuMonitorCurrentUtilization" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"extremeCpuMonitorThreshold" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
},
"description" :
"""Notification of process exceeding CPU utilization threshold. Notification is send every extremeCpuMonitorInterval value in seconds until utilization falls below threshold.""",
}, # notification
"extremeServiceLicenseExpiration" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3.2",
"status" : "current",
"objects" : {
"extremeServiceLicenseExpiryDate" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"extremeServiceLicenseType" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"imageDescription" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"noOfDaysLeft" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
},
"description" :
"""The service expiry notification is generated about 90 days service contract expiration, then 60,30,7 days and daily after that.""",
}, # notification
"extremeTrialLicenseExpiration" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3.3",
"status" : "current",
"objects" : {
"trialPeriod" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"imageDescription" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"noOfDaysLeft" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
},
"description" :
"""Trial license expiry notification is generated every day.""",
}, # notification
"extremeSwMonitorCpuUtilizationNormal" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SOFTWARE-MONITOR-MIB",
"oid" : "1.3.6.1.4.1.1916.1.32.3.0.4",
"status" : "current",
"objects" : {
"extremeCpuMonitorSlotId" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"extremeCpuMonitorProcessName" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"extremeCpuMonitorCurrentUtilization" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
"extremeCpuMonitorThreshold" : {
"nodetype" : "object",
"module" : "EXTREME-SOFTWARE-MONITOR-MIB"
},
},
"description" :
"""Notification of process CPU utilization falling below threshold. The generation of this notification corresponds with the extremeSwMonitorCpuUtilization (CPU excessed threshold) notification. When the CPU utilization of the process that triggered the extremeSwMonitorCpuUtilization notification falls back below the configured threshold, this (return to normal) notification will be generated.""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/ZyXEL_390TX3C0_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python ZYXEL-ES2024A-MIB
FILENAME = "mibs/ZyXEL/390TX3C0.mib"
MIB = {
"moduleName" : "ZYXEL-ES2024A-MIB",
"ZYXEL-ES2024A-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""ZyXEL""",
"contact" :
"""""",
"description" :
"""Fault event trap definitions""",
"revisions" : (
{
"date" : "2004-11-03 12:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
{
"date" : "2004-11-01 12:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
),
"identity node" : "faultTrapsMIB",
},
"imports" : (
{"module" : "RFC1155-SMI", "name" : "enterprises"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-TC", "name" : "RowStatus"},
{"module" : "SNMPv2-TC", "name" : "DateAndTime"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "StorageType"},
{"module" : "SNMPv2-TC", "name" : "MacAddress"},
{"module" : "RFC1213-MIB", "name" : "DisplayString"},
{"module" : "P-BRIDGE-MIB", "name" : "EnabledStatus"},
{"module" : "Q-BRIDGE-MIB", "name" : "PortList"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBasePort"},
{"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
{"module" : "DISMAN-PING-MIB", "name" : "OperationResponseStatus"},
{"module" : "RFC1155-SMI", "name" : "Counter"},
{"module" : "RFC1155-SMI", "name" : "TimeTicks"},
{"module" : "BRIDGE-MIB", "name" : "BridgeId"},
{"module" : "BRIDGE-MIB", "name" : "Timeout"},
{"module" : "SNMPv2-SMI", "name" : "IpAddress"},
{"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
{"module" : "RFC1213-MIB", "name" : "sysObjectID"},
),
"typedefs" : {
"UtcTimeStamp" : {
"basetype" : "Unsigned32",
"status" : "current",
"description" :
"""Universal Time Coordinated as a 32-bit value that designates
the number of seconds since Jan 1, 1970 12:00AM.""",
},
"EventIdNumber" : {
"basetype" : "Integer32",
"status" : "current",
"description" :
"""This textual convention describes the index that uniquely
identifies a fault event type in the entire system. Every fault
event type, e.g. link down, has a unique EventIdNumber.""",
},
"EventSeverity" : {
"basetype" : "Enumeration",
"status" : "current",
"critical" : {
"nodetype" : "namednumber",
"number" : "1"
},
"major" : {
"nodetype" : "namednumber",
"number" : "2"
},
"minor" : {
"nodetype" : "namednumber",
"number" : "3"
},
"informational" : {
"nodetype" : "namednumber",
"number" : "4"
},
"description" :
"""This textual convention describes the severity of a fault event.
The decreasing order of severity is shown in the textual
convention.""",
},
"EventServiceAffective" : {
"basetype" : "Enumeration",
"status" : "current",
"noServiceAffected" : {
"nodetype" : "namednumber",
"number" : "1"
},
"serviceAffected" : {
"nodetype" : "namednumber",
"number" : "2"
},
"description" :
"""This textual convention indicates whether an event is immediately
service affecting or not.""",
},
"InstanceType" : {
"basetype" : "Enumeration",
"status" : "current",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"node" : {
"nodetype" : "namednumber",
"number" : "2"
},
"shelf" : {
"nodetype" : "namednumber",
"number" : "3"
},
"line" : {
"nodetype" : "namednumber",
"number" : "4"
},
"switch" : {
"nodetype" : "namednumber",
"number" : "5"
},
"lsp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"l2Interface" : {
"nodetype" : "namednumber",
"number" : "7"
},
"l3Interface" : {
"nodetype" : "namednumber",
"number" : "8"
},
"rowIndex" : {
"nodetype" : "namednumber",
"number" : "9"
},
"description" :
"""This textual convention describes the type of an instanceId
associated with each event and by that means specifies how
the instanceId variable should be intepreted.
Various instanceId types are specified below to enable fault
monitoring for different kind of devices from fixed
configuration pizza boxes to multi chassis nodes. All
instanceId types may not need to be used in every device
type.
Note also that instanceId semantics are element type dependent
(e.g. different kind of interface naming conventions may be used)
and thus instanceId usage may vary from element to element.
=========================================================================
Type Description Example form
of InstanceId
=========================================================================
unknown (1) unknown type - Irrelevant-
-------------------------------------------------------------------------
node (2) Associated with events originating from 1
the node. Used for general events that (Node number)
can not be associated with any specific
block. InstanceId value 1 is used for
single node equipment.
-------------------------------------------------------------------------
shelf (3) Associated with events originating from 1
the shelf. In the case of fixed (shelf number)
configuration devices this type is used
for events that are associated with the
physical enclosure, e.g. faults related
to fan etc. InstanceId value 1 is used
for single self equipment.
-------------------------------------------------------------------------
line (4) Associated with events originating from
physical interfaces or associated
components such as line cards.
InstanceId usage examples for faults
originating from:
- Physical port: Simply port number, e.g. .......1
-------------------------------------------------------------------------
switch (5) Associated with events originating from 1
from a switch chip or a switch card. (switch number)
For single switch equipment InstanceId
value 1 is used, for multi swich nodes
InstanceId semantics if for further
study.
-------------------------------------------------------------------------
lsp (6) Associated with events originating from 1
a particular lsp. (lsp index)
NOTE: In this case the InstanceName
contains the lsp name and InstanceId
contains lsp index.
-------------------------------------------------------------------------
l2Interface(7) Associated with events originating from - TBD -
a particular layer 2 interface. Used for
layer 2 related events such as L2 control
protocol faults. InstanceId semantics is
for further study.
-------------------------------------------------------------------------
l3Interface(8) Associated with events originating from - TBD -
a particular layer 3 interface. Used for
layer 3 related events such as L3 control
protocol faults. InstanceId semantics is
for further study.
-------------------------------------------------------------------------
rowIndex (9) Associated with events reporting about a
'logical' or conceptual table that consists
of rows. The Instance Id is the index/key
for a row in the table. The format of the
Instance Id will simply be a series of decimal
numbers seperated by a '.':
=========================================================================""",
},
"EventPersistence" : {
"basetype" : "Enumeration",
"status" : "current",
"normal" : {
"nodetype" : "namednumber",
"number" : "1"
},
"delta" : {
"nodetype" : "namednumber",
"number" : "2"
},
"description" :
"""This textual convention indicates whether the event is delta
(automatically and immediately cleared) or normal (not
automatically cleared).""",
},
"MstiOrCistInstanceIndex" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "0",
"max" : "16"
},
],
"range" : {
"min" : "0",
"max" : "16"
},
"description" :
"""This textual convention is an extension of the
MstiInstanceIndex convention. This extension permits the
additional value of zero, which means Common and Internal
Spanning Tree (CIST).""",
},
}, # typedefs
"nodes" : {
"zyxel" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890",
}, # node
"products" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1",
}, # node
"accessSwitch" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5",
}, # node
"esSeries" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8",
}, # node
"es2024a" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16",
}, # node
"sysInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.1",
}, # node
"sysSwPlatformMajorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW platform major version, e.g. 3.""",
}, # scalar
"sysSwPlatformMinorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW platform minor version, e.g. 50.""",
}, # scalar
"sysSwModelString" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Model letters, e.g. TJ""",
}, # scalar
"sysSwVersionControlNbr" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Version control number, e.g. 0.""",
}, # scalar
"sysSwDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation day, e.g. 19.""",
}, # scalar
"sysSwMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation month, e.g. 8.""",
}, # scalar
"sysSwYear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation year, e.g. 2004.""",
}, # scalar
"sysHwMajorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""HW major version number, e.g. 1.""",
}, # scalar
"sysHwMinorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""HW minor version number, e.g. 0.""",
}, # scalar
"sysSerialNumber" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Serial number""",
}, # scalar
"rateLimitSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.2",
}, # node
"rateLimitState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress/egress rate limiting enabled/disabled for the switch.""",
}, # scalar
"rateLimitPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"rateLimitPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.2.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in rateLimitPortTable.""",
}, # row
"rateLimitPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress/egress rate limiting enabled/disabled on the port.""",
}, # column
"rateLimitPortIngRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Ingress rate in Kbit/s. The range of FE port is between 64 and 100,000. For GE port, the range is between 64 and 1000,000.""",
}, # column
"rateLimitPortEgrRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Egress rate in Kbit/s. The range of FE port is between 64 and 100,000. For GE port, the range is between 64 and 1000,000.""",
}, # column
"rateLimitPortStateIngress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress rate limiting enabled/disabled on the port.""",
}, # column
"rateLimitPortStateEgress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Egress rate limiting enabled/disabled on the port.""",
}, # column
"brLimitSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.3",
}, # node
"brLimitState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Broadcast/multicast/DLF rate limiting enabled/disabled for the switch.""",
}, # scalar
"brLimitPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.3.2",
"status" : "current",
"description" :
"""""",
}, # table
"brLimitPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.3.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in brLimitPortTable.""",
}, # row
"brLimitPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.3.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Rate limiting enabled/disabled on the port.""",
}, # column
"brLimitPortRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.3.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed rate in in Kbit/s. The range of FE port is between 64 and 100,000. For GE port, the range is between 64 and 1000,000.""",
}, # column
"portSecuritySetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.4",
}, # node
"portSecurityState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.4.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"portSecurityPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.4.2",
"status" : "current",
"description" :
"""""",
}, # table
"portSecurityPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.4.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portSecurityPortTable.""",
}, # row
"portSecurityPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.4.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Port Security enabled/disabled on the port.
Active(1) means this port only accept frames from static MAC addresses that are configured for the port,
and dynamic MAC address frames up to the number specified by portSecurityPortCount object.""",
}, # column
"portSecurityPortLearnState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.4.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""MAC address learning enabled/disable on the port.""",
}, # column
"portSecurityPortCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.4.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Number of (dynamic) MAC addresses that may be learned on the port.""",
}, # column
"portSecurityMacFreeze" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""This entry is used to execute MacFreeze action to port.
It's meaningless while reading this entry.""",
}, # scalar
"vlanTrunkSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.5",
}, # node
"vlanTrunkPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.5.1",
"status" : "current",
"description" :
"""""",
}, # table
"vlanTrunkPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.5.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in vlanTrunkPortTable.""",
}, # row
"vlanTrunkPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""VlanTrunking enabled/disabled on the port.
Active(1) to allow frames belonging to unknown
VLAN groups to pass through the switch.""",
}, # column
"dot1xSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.6",
}, # node
"portAuthState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.6.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port authentication enabled/disabled for the switch.""",
}, # scalar
"portAuthTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.6.4",
"status" : "current",
"description" :
"""""",
}, # table
"portAuthEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.6.4.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portAuthTable.""",
}, # row
"portAuthEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.6.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port authentication enabled or disabled on the port.""",
}, # column
"portReAuthEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.6.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port re-authentication enabled or disabled on the port.""",
}, # column
"portReAuthEntryTimer" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.6.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Re-authentication timer in seconds.""",
}, # column
"snmpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.7",
}, # node
"snmpGetCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpSetCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpTrapCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.7.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpTrapDestTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.7.4",
"status" : "current",
"description" :
"""""",
}, # table
"snmpTrapDestEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.7.4.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpTrapDestIP",
],
"description" :
"""An entry in snmpTrapDestTable.""",
}, # row
"snmpTrapDestIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""IP address of trap destination.""",
}, # column
"snmpTrapDestRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapDestPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The UDP port of the trap destination.""",
}, # column
"snmpTrapVersion" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "0"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The SNMP protocol version to send traps.""",
}, # column
"snmpTrapUserName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.7.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The user name for sending SNMPv3 traps.""",
}, # column
"snmpVersion" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v2c" : {
"nodetype" : "namednumber",
"number" : "0"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v3v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The SNMP version to be used. v3v2c means that the manager
can get/set by SNMPv3 and can get by SNMPv2c.""",
}, # scalar
"snmpUserTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.7.6",
"status" : "current",
"description" :
"""A table that contains SNMPv3 user information.""",
}, # table
"snmpUserEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.7.6.1",
"status" : "current",
"linkage" : [
"snmpUserName",
],
"description" :
"""An entry of snmpUserTable.""",
}, # row
"snmpUserName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.7.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The user name.""",
}, # column
"snmpUserSecurityLevel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.7.6.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"noAuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "0"
},
"authNoPriv" : {
"nodetype" : "namednumber",
"number" : "1"
},
"authPriv" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The level of security at which SNMP messages can be sent or
with which operations are being processed.""",
}, # column
"snmpUserAuthProtocol" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.7.6.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"md5" : {
"nodetype" : "namednumber",
"number" : "0"
},
"sha" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""The type of authentication protocol to be used.""",
}, # column
"snmpUserPrivProtocol" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.7.6.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"des" : {
"nodetype" : "namednumber",
"number" : "0"
},
"aes" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""The type of privacy protocol to be used.""",
}, # column
"snmpTrapGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.7.7",
"status" : "current",
"description" :
"""""",
}, # table
"snmpTrapGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.7.1",
"status" : "current",
"linkage" : [
"snmpTrapDestIP",
],
"description" :
"""An entry in snmpTrapGroupTable.""",
}, # row
"snmpTrapSystemGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.7.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"coldStart" : {
"nodetype" : "namednumber",
"number" : "0"
},
"warmStart" : {
"nodetype" : "namednumber",
"number" : "1"
},
"reset" : {
"nodetype" : "namednumber",
"number" : "5"
},
"timeSync" : {
"nodetype" : "namednumber",
"number" : "6"
},
"intrusionlock" : {
"nodetype" : "namednumber",
"number" : "7"
},
"loopGuard" : {
"nodetype" : "namednumber",
"number" : "13"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapInterfaceGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.7.7.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"linkup" : {
"nodetype" : "namednumber",
"number" : "0"
},
"linkdown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"autonegotiation" : {
"nodetype" : "namednumber",
"number" : "2"
},
"lldp" : {
"nodetype" : "namednumber",
"number" : "3"
},
"transceiver-ddm" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapAAAGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.7.7.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"authentication" : {
"nodetype" : "namednumber",
"number" : "0"
},
"accounting" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapIPGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.7.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"ping" : {
"nodetype" : "namednumber",
"number" : "0"
},
"traceroute" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapSwitchGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.7.7.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"stp" : {
"nodetype" : "namednumber",
"number" : "0"
},
"mactable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rmon" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dateTimeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.8",
}, # node
"dateTimeServerType" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.8.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"daytime" : {
"nodetype" : "namednumber",
"number" : "2"
},
"time" : {
"nodetype" : "namednumber",
"number" : "3"
},
"ntp" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""The time service protocol.""",
}, # scalar
"dateTimeServerIP" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.8.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""IP address of time server.""",
}, # scalar
"dateTimeZone" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.8.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The time difference between UTC. Ex: +01""",
}, # scalar
"dateTimeNewDateYear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in year.""",
}, # scalar
"dateTimeNewDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in month.""",
}, # scalar
"dateTimeNewDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in day.""",
}, # scalar
"dateTimeNewTimeHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.8.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in hour.""",
}, # scalar
"dateTimeNewTimeMinute" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.8.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in minute.""",
}, # scalar
"dateTimeNewTimeSecond" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.8.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in second.""",
}, # scalar
"dateTimeDaylightSavingTimeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.8.10",
}, # node
"daylightSavingTimeState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.8.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service enabled/disabled for the switch.""",
}, # scalar
"daylightSavingTimeStartDateWeek" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.10.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"first" : {
"nodetype" : "namednumber",
"number" : "1"
},
"second" : {
"nodetype" : "namednumber",
"number" : "2"
},
"third" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fourth" : {
"nodetype" : "namednumber",
"number" : "4"
},
"last" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start week.""",
}, # scalar
"daylightSavingTimeStartDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.10.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sunday" : {
"nodetype" : "namednumber",
"number" : "0"
},
"monday" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tuesday" : {
"nodetype" : "namednumber",
"number" : "2"
},
"wednesday" : {
"nodetype" : "namednumber",
"number" : "3"
},
"thursday" : {
"nodetype" : "namednumber",
"number" : "4"
},
"friday" : {
"nodetype" : "namednumber",
"number" : "5"
},
"saturday" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start day.""",
}, # scalar
"daylightSavingTimeStartDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.10.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start month.""",
}, # scalar
"daylightSavingTimeStartDateHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.8.10.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start time.""",
}, # scalar
"daylightSavingTimeEndDateWeek" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.8.10.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"first" : {
"nodetype" : "namednumber",
"number" : "1"
},
"second" : {
"nodetype" : "namednumber",
"number" : "2"
},
"third" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fourth" : {
"nodetype" : "namednumber",
"number" : "4"
},
"last" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end week.""",
}, # scalar
"daylightSavingTimeEndDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.10.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sunday" : {
"nodetype" : "namednumber",
"number" : "0"
},
"monday" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tuesday" : {
"nodetype" : "namednumber",
"number" : "2"
},
"wednesday" : {
"nodetype" : "namednumber",
"number" : "3"
},
"thursday" : {
"nodetype" : "namednumber",
"number" : "4"
},
"friday" : {
"nodetype" : "namednumber",
"number" : "5"
},
"saturday" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end day.""",
}, # scalar
"daylightSavingTimeEndDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.10.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end month.""",
}, # scalar
"daylightSavingTimeEndDateHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.8.10.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end time.""",
}, # scalar
"sysMgmt" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.9",
}, # node
"sysMgmtConfigSave" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.9.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"config" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""If setting value is given, the variable write index will be set and running-config will be written to the assigned configuration file.
If not, running-config will be written to the booting one.""",
}, # scalar
"sysMgmtBootupConfig" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.9.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"config" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""The setting value (read index) will be written into non-volatile memory.
While rebooting, the variable write index is equal to read index initially.
You can change the value of write index by CLI / MIB.""",
}, # scalar
"sysMgmtReboot" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.9.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"reboot" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Reboot switch from SNMP. 1:Reboot, 0:Nothing""",
}, # scalar
"sysMgmtDefaultConfig" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.9.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"reset_to_default" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Erase running config and reset to default.""",
}, # scalar
"sysMgmtLastActionStatus" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.9.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Display status of last mgmt action.""",
}, # scalar
"sysMgmtCPUUsage" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.9.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Show device CPU load in %, it's the snapshot of CPU load when
getting the values.""",
}, # scalar
"sysMgmtCounterReset" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.9.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Reset all port counters.""",
}, # scalar
"layer2Setup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.10",
}, # node
"vlanTypeSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.10.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dot1Q" : {
"nodetype" : "namednumber",
"number" : "1"
},
"port_based" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpSnoopingStateSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tagVlanPortIsolationState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""This setting will also show the result in the portIsolationState""",
}, # scalar
"stpState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tagVlanIngressCheckState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpFilteringStateSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"unknownMulticastFrameForwarding" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"flooding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"multicastGrpHostTimeOut" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpsnp8021pPriority" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Set the 802.1p priority of control messages for igmp-snooping(0~8, 8-No Change)""",
}, # scalar
"igmpsnpVlanMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.10.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fixed" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"stpMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rstp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"mstp" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpsnpVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.10.13",
"status" : "current",
"description" :
"""""",
}, # table
"igmpsnpVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.13.1",
"create" : "true",
"status" : "current",
"linkage" : [
"igmpsnpVid",
],
"description" :
"""An entry in IgmpsnpVlanTable.""",
}, # row
"igmpsnpVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.13.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpsnpVlanName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.10.13.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"igmpsnpVlanRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.13.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"igmpsnpQuerierMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.10.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"ipSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11",
}, # node
"dnsIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultMgmtIpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.2",
}, # node
"defaultMgmtIpType" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dhcp_client" : {
"nodetype" : "namednumber",
"number" : "0"
},
"static_ip" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultMgmtVid" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.2.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultMgmtStaticIp" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.2.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultMgmtStaticSubnetMask" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.2.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultMgmtStaticGateway" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.2.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"maxNumOfMgmtIp" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mgmtIpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.6",
"status" : "current",
"description" :
"""""",
}, # table
"mgmtIpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.6.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mgmtEntryIp",
"mgmtEntryVid",
],
"description" :
"""An entry in mgmtIpTable.""",
}, # row
"mgmtEntryIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mgmtEntrySubnetMask" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mgmtEntryGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.6.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mgmtEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.6.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mgmtEntryManageable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.6.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mgmtEntryRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.11.6.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"filterSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.12",
}, # node
"filterTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.12.1",
"status" : "current",
"description" :
"""""",
}, # table
"filterEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.12.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"filterMacAddr",
"filterVid",
],
"description" :
"""An entry in filterTable.""",
}, # row
"filterName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.12.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"filterMacAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.12.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"filterVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.12.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"filterRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.12.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mirrorSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13",
}, # node
"mirrorState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorMonitorPort" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorIngActionState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"all" : {
"nodetype" : "namednumber",
"number" : "0"
},
"destination_mac" : {
"nodetype" : "namednumber",
"number" : "1"
},
"source_mac" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorIngMacAddr" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorEgrActionState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"all" : {
"nodetype" : "namednumber",
"number" : "0"
},
"destination_mac" : {
"nodetype" : "namednumber",
"number" : "1"
},
"source_mac" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorEgrMacAddr" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.7",
"status" : "current",
"description" :
"""""",
}, # table
"mirrorEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.7.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in mirrorTable.""",
}, # row
"mirrorMirroredState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.13.7.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mirrorDirection" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.13.7.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ingress" : {
"nodetype" : "namednumber",
"number" : "0"
},
"egress" : {
"nodetype" : "namednumber",
"number" : "1"
},
"both" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14",
}, # node
"aggrState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"aggrSystemPriority" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"aggrGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.3",
"status" : "current",
"description" :
"""""",
}, # table
"aggrGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.3.1",
"status" : "current",
"linkage" : [
"aggrGroupIndex",
],
"description" :
"""An entry in aggrGroupTable.""",
}, # row
"aggrGroupIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"aggrGroupState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrGroupDynamicState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.4",
"status" : "current",
"description" :
"""""",
}, # table
"aggrPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.4.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in aggrPortTable.""",
}, # row
"aggrPortGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"t1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"t2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"t3" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrPortDynamicStateTimeout" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.14.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15",
}, # node
"accessCtlTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.1",
"status" : "current",
"description" :
"""""",
}, # table
"accessCtlEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.1.1",
"status" : "current",
"linkage" : [
"accessCtlService",
],
"description" :
"""An entry in accessCtlTable.""",
}, # row
"accessCtlService" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"telnet" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ftp" : {
"nodetype" : "namednumber",
"number" : "3"
},
"http" : {
"nodetype" : "namednumber",
"number" : "4"
},
"https" : {
"nodetype" : "namednumber",
"number" : "5"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"snmp" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"accessCtlEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlServicePort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlTimeout" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.2",
"status" : "current",
"description" :
"""""",
}, # table
"securedClientEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.2.1",
"status" : "current",
"linkage" : [
"securedClientIndex",
],
"description" :
"""An entry in securedClientTable.""",
}, # row
"securedClientIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.15.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"securedClientEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientStartIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientEndIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientService" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.15.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"telnet" : {
"nodetype" : "namednumber",
"number" : "0"
},
"ftp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"http" : {
"nodetype" : "namednumber",
"number" : "2"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "3"
},
"snmp" : {
"nodetype" : "namednumber",
"number" : "4"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "5"
},
"https" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"queuingMethodSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.16",
}, # node
"queuingMethodType" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.16.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"strictly_priority" : {
"nodetype" : "namednumber",
"number" : "0"
},
"weighted_round_robin_scheduling" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"queuingMethodTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.16.2",
"status" : "current",
"description" :
"""""",
}, # table
"queuingMethodEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.16.2.1",
"status" : "current",
"linkage" : [
"queuingMethodQueue",
],
"description" :
"""An entry in queuingMethodTable.""",
}, # row
"queuingMethodQueue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.16.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""0...3""",
}, # column
"queuingMethodWeight" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.16.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""1...15""",
}, # column
"staticRouteSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17",
}, # node
"maxNumberOfStaticRoutes" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"staticRouteTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.2",
"status" : "current",
"description" :
"""""",
}, # table
"staticRouteEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"staticRouteIp",
"staticRouteMask",
],
"description" :
"""An entry in staticRouteTable.""",
}, # row
"staticRouteName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"staticRouteMask" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"staticRouteGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteMetric" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.17.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.18",
}, # node
"arpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.18.1",
"status" : "current",
"description" :
"""""",
}, # table
"arpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.18.1.1",
"status" : "current",
"linkage" : [
"arpIpAddr",
"arpMacVid",
],
"description" :
"""An entry in arpTable.""",
}, # row
"arpIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.18.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.18.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpMacAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.18.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpMacVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.18.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.18.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""1-static, 2-dynamic""",
}, # column
"portOpModeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.19",
}, # node
"portOpModePortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.19.1",
"status" : "current",
"description" :
"""""",
}, # table
"portOpModePortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.19.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portOpModePortTable.""",
}, # row
"portOpModePortSpeedDuplex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.19.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "0"
},
"speed_10_half" : {
"nodetype" : "namednumber",
"number" : "1"
},
"speed_10_full" : {
"nodetype" : "namednumber",
"number" : "2"
},
"speed_100_half" : {
"nodetype" : "namednumber",
"number" : "3"
},
"speed_100_full" : {
"nodetype" : "namednumber",
"number" : "4"
},
"speed_1000_full" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortFlowCntl" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.19.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.19.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortModuleType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.19.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"fast_ethernet_10_100" : {
"nodetype" : "namednumber",
"number" : "0"
},
"gigabit_ethernet_100_1000" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"portOpModePortLinkUpType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.19.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"down" : {
"nodetype" : "namednumber",
"number" : "0"
},
"copper" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fiber" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"portOpModePortIntrusionLock" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.19.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortLBTestStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.19.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"underTesting" : {
"nodetype" : "namednumber",
"number" : "1"
},
"success" : {
"nodetype" : "namednumber",
"number" : "2"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This entry display latest loopback test status of port while performing loopback test.""",
}, # column
"portBasedVlanSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.20",
}, # node
"portBasedVlanPortListTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.20.1",
"status" : "current",
"description" :
"""""",
}, # table
"portBasedVlanPortListEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.20.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portBasedVlanPortListTable.""",
}, # row
"portBasedVlanPortListMembers" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.20.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"diffservSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.21",
}, # node
"diffservState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.21.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"diffservMapTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.21.2",
"status" : "current",
"description" :
"""""",
}, # table
"diffservMapEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.21.2.1",
"status" : "current",
"linkage" : [
"diffservMapDscp",
],
"description" :
"""An entry in diffservMapTable.""",
}, # row
"diffservMapDscp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.21.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""0-63""",
}, # column
"diffservMapPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.21.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-7""",
}, # column
"diffservPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.21.3",
"status" : "current",
"description" :
"""""",
}, # table
"diffservPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.21.3.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in diffservPortTable.""",
}, # row
"diffservPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.21.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.22",
}, # node
"clusterManager" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.22.1",
}, # node
"clusterMaxNumOfManager" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterManagerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.1.2",
"status" : "current",
"description" :
"""""",
}, # table
"clusterManagerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.1.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"clusterManagerVid",
],
"description" :
"""An entry in clusterManagerTable.""",
}, # row
"clusterManagerVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.22.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterManagerName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterManagerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterMembers" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.2",
}, # node
"clusterMaxNumOfMember" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.22.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterMemberTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"clusterMemberEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.2.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"clusterMemberMac",
],
"description" :
"""An entry in clusterMemberTable.""",
}, # row
"clusterMemberMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterMemberName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterMemberModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterMemberPassword" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterMemberRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterCandidates" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.3",
}, # node
"clusterCandidateTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.3.1",
"status" : "current",
"description" :
"""""",
}, # table
"clusterCandidateEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.3.1.1",
"status" : "current",
"linkage" : [
"clusterCandidateMac",
],
"description" :
"""An entry in clusterCandidateTable.""",
}, # row
"clusterCandidateMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterCandidateName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterCandidateModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4",
}, # node
"clusterStatusRole" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"manager" : {
"nodetype" : "namednumber",
"number" : "1"
},
"member" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterStatusManager" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.22.4.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clsuterStatusMaxNumOfMember" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterStatusMemberTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4.4",
"status" : "current",
"description" :
"""""",
}, # table
"clusterStatusMemberEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4.4.1",
"status" : "current",
"linkage" : [
"clusterStatusMemberMac",
],
"description" :
"""An entry in clusterStatusMemberTable.""",
}, # row
"clusterStatusMemberMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.22.4.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"error" : {
"nodetype" : "namednumber",
"number" : "0"
},
"online" : {
"nodetype" : "namednumber",
"number" : "1"
},
"offline" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"faultMIB" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.26",
"status" : "current",
}, # node
"eventObjects" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.26.1",
}, # node
"eventTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.26.1.1",
"status" : "current",
"description" :
"""A list of currently active fault events. All faults
of normal type regardless of their severity level
are recorded in the event table. When a normal
type fault is cleared it is deleted from the event
table.""",
}, # table
"eventEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.26.1.1.1",
"status" : "current",
"linkage" : [
"eventSeqNum",
],
"description" :
"""An entry containing information about an
event in the event table.""",
}, # row
"eventSeqNum" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.26.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This variable represents the sequence number of an event.
Sequence number is incremented monotonically starting
from 0 until it reaches its maximum and wraps around back
to 0.
Sequence number is incremented when
- the state of a normal type fault is set on (the same sequence
number is present in the events table as well as in the trap
that is sent to notify about the fault on event)
- delta event occurs (sequence number present in trap message)
- the state of a normal type fault is set off (sequence number
present in trap that is sent to notify for clearing).""",
}, # column
"eventEventId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.26.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "EventIdNumber"},
},
"access" : "readonly",
"description" :
"""This variable represents the event ID which uniquely
identifies the event in the entire system.""",
}, # column
"eventName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.26.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "40"
},
],
"range" : {
"min" : "0",
"max" : "40"
},
},
},
"access" : "readonly",
"description" :
"""This variable represents the name of the event, for
example 'Ethernet Link Down'""",
}, # column
"eventInstanceType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.26.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "InstanceType"},
},
"access" : "readonly",
"description" :
"""This variable represents the type of InstanceId of a
particular event in the event table. In brief
the instanceType refers to the type of sub-component
generating this event in the system, for example
switch (5). For more details see the textual
conventions section.
AFFECTS: eventInstanceId,
eventInstanceName""",
}, # column
"eventInstanceId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.26.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This variable represents the InstanceId of a particular
event in the event current table. In brief the instanceId
refers to the sub-component generating this event in the
system, for example '1' for port 1. For more details see
the textual conventions section.
DEPENDS ON: eventInstanceType""",
}, # column
"eventInstanceName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.26.1.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This variable is mainly used to store additional information
about the sub-component that is generating an event. For
example this field may specify what cooling fan is faulty.
DEPENDS ON: eventInstanceType""",
}, # column
"eventSeverity" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.26.1.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "EventSeverity"},
},
"access" : "readonly",
"description" :
"""This variable dictates the urgency of action when a event
occurs. There are four severity levels - Critical, Major,
Minor, and Informational. Critical events are those, which
require immediate operator intervention to prevent/reduce
system down time. Major events require quick attention and
Minor events possibly require some attention. Informational
events indicate the occurrence of events that may need to be
investigated.""",
}, # column
"eventSetTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.172.16.58.3.1.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "UtcTimeStamp"},
},
"access" : "readonly",
"description" :
"""This table contains only normal events and this variable
represents the time when the event become active, i.e. the
number of seconds since Jan 1, 1970 12:00AM.""",
}, # column
"eventDescription" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.26.1.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""This variable contains a description of the event and reasons
behind the event. This is a free format alpha-numeric string
that is set by the entity generating this event. This variable
may be empty if there is no usefull information to report.
The maximum length of this string is 255 characters.""",
}, # column
"eventServAffective" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.26.1.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "EventServiceAffective"},
},
"access" : "readonly",
"description" :
"""This variable indicates whether the event is service affective or not""",
}, # column
"faultTrapsMIB" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.27",
"status" : "current",
}, # node
"trapInfoObjects" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.27.1",
}, # node
"trapRefSeqNum" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.27.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Indicates the former sequence number of a cleared event
in the event table. Not intended to read but only used in
trap notifications.""",
}, # scalar
"trapPersistence" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.27.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "EventPersistence"},
},
"access" : "readonly",
"description" :
"""Indicates whether the event is delta (automatically and
immediately cleared) or normal (not automatically cleared).
Not intended to read but only used in trap notifications.""",
}, # scalar
"trapSenderNodeId" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.27.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Represents the node ID of the sending network element. If not
supported should be set to 0. Not intended to read but only
used in trap notifications.""",
}, # scalar
"trapNotifications" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.27.2",
}, # node
"multicastPortSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.28",
}, # node
"multicastPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.28.1",
"status" : "current",
"description" :
"""""",
}, # table
"multicastPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.28.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in multicastPortTable.""",
}, # row
"multicastPortMaxGroupLimited" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.28.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortMaxOfGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.28.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0..255""",
}, # column
"multicastPortIgmpFilteringProfile" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.28.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortQuerierMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.28.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fixed" : {
"nodetype" : "namednumber",
"number" : "2"
},
"edge" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortThrottlingAction" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.28.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"deny" : {
"nodetype" : "namednumber",
"number" : "1"
},
"replace" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specify throttling action for each port""",
}, # column
"multicastPortLeaveMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.28.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"normal" : {
"nodetype" : "namednumber",
"number" : "0"
},
"immediate" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fast" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortLeaveTimeout" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.28.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""200..6348800""",
}, # column
"multicastPortFastLeaveTimeout" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.28.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""200..6348800""",
}, # column
"multicastStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29",
}, # node
"multicastStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.1",
"status" : "current",
"description" :
"""""",
}, # table
"multicastStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.1.1",
"status" : "current",
"linkage" : [
"multicastStatusVlanID",
"multicastStatusPort",
"multicastStatusGroup",
],
"description" :
"""An entry in multicastStatusTable.""",
}, # row
"multicastStatusIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpCountTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2",
"status" : "current",
"description" :
"""A count table of igmp query/report/leave message.""",
}, # table
"igmpSnpCountEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1",
"status" : "current",
"linkage" : [
"igmpSnpCountIndex",
],
"description" :
"""An entry in igmpSnpCountTable.""",
}, # row
"igmpSnpCountIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of IgmpCountEntry. 0 means total count in whole system""",
}, # column
"igmpSnpV2CountQueryRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV2CountReportRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV2CountLeaveRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV2CountQueryRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV2CountReportRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV2CountLeaveRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV2CountQueryTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV2CountReportTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV2CountLeaveTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.2.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV3CountQueryRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV3CountReportRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV3CountQueryRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV3CountReportRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV3CountQueryTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.2.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpV3CountReportTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.2.1.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.3",
"status" : "current",
"description" :
"""""",
}, # table
"multicastVlanStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.3.1",
"status" : "current",
"linkage" : [
"multicastVlanStatusVlanID",
],
"description" :
"""An entry in multicastVlanStatusTable.""",
}, # row
"multicastVlanStatusVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanStatusType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "1"
},
"mvr" : {
"nodetype" : "namednumber",
"number" : "2"
},
"static" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanQueryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpSnpCountVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4",
"status" : "current",
"description" :
"""""",
}, # table
"igmpSnpCountVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1",
"status" : "current",
"linkage" : [
"igmpSnpCountVlanIndex",
],
"description" :
"""An entry in igmpGroupVlanStatus.""",
}, # row
"igmpSnpCountVlanIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Input vlan""",
}, # column
"igmpSnpV2CountVlanQueryRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Query Rx counters for vlan""",
}, # column
"igmpSnpV2CountVlanReportRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Rx counters for vlan""",
}, # column
"igmpSnpV2CountVlanLeaveRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.4.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Leave Rx counters for vlan""",
}, # column
"igmpSnpV2CountVlanQueryRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Query Rx Error counters for vlan""",
}, # column
"igmpSnpV2CountVlanReportRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Rx Error counters for vlan""",
}, # column
"igmpSnpV2CountVlanLeaveRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Leave Rx Error counters for vlan""",
}, # column
"igmpSnpV2CountVlanQueryTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Query Tx counters for vlan""",
}, # column
"igmpSnpV2CountVlanReportTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.4.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Tx counters for vlan""",
}, # column
"igmpSnpV2CountVlanLeaveTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.4.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Leave Tx counters for vlan""",
}, # column
"igmpSnpV3CountVlanQueryRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.4.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Query Rx counters for vlan""",
}, # column
"igmpSnpV3CountVlanReportRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.4.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Rx counters for vlan""",
}, # column
"igmpSnpV3CountVlanQueryRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Query Rx Error counters for vlan""",
}, # column
"igmpSnpV3CountVlanReportRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Rx Error counters for vlan""",
}, # column
"igmpSnpV3CountVlanQueryTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.4.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Query Tx counters for vlan""",
}, # column
"igmpSnpV3CountVlanReportTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.4.1.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Tx counters for vlan""",
}, # column
"igmpSnpCountPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5",
"status" : "current",
"description" :
"""""",
}, # table
"igmpSnpCountPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in igmpSnpCountPortStatus.""",
}, # row
"igmpSnpV2CountPortQueryRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Query Rx counters for port""",
}, # column
"igmpSnpV2CountPortReportRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.29.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Rx counters for port""",
}, # column
"igmpSnpV2CountPortLeaveRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Leave Rx counters for port""",
}, # column
"igmpSnpV2CountPortReportRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Rx Error counters for port""",
}, # column
"igmpSnpV2CountPortLeaveRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Leave Rx Error counters for port""",
}, # column
"igmpSnpV2CountPortReportTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Tx counters for port""",
}, # column
"igmpSnpV2CountPortLeaveTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Leave Tx counters for port""",
}, # column
"igmpSnpV3CountPortQueryRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Query Rx counters for port""",
}, # column
"igmpSnpV3CountPortReportRx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Rx counters for port""",
}, # column
"igmpSnpV3CountPortReportRxDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Rx Error counters for port""",
}, # column
"igmpSnpV3CountPortReportTx" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.5.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""show igmpsnp Report Tx counters for port""",
}, # column
"igmpSnpGroupCountStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6",
}, # node
"igmpSnpGroupCountNum" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Show total IGMP snooping group number""",
}, # scalar
"igmpSnpGroupCountVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6.2",
"status" : "current",
"description" :
"""""",
}, # table
"igmpSnpGroupCountVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6.2.1",
"status" : "current",
"linkage" : [
"igmpSnpGroupCountVlanIndex",
],
"description" :
"""An entry in igmpSnpGroupVlanStatus.""",
}, # row
"igmpSnpGroupCountVlanIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Show IGMP snooping group index for vlan""",
}, # column
"igmpSnpGroupCountVlanNum" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Show IGMP snooping group number for vlan""",
}, # column
"igmpSnpGroupCountPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6.3",
"status" : "current",
"description" :
"""""",
}, # table
"igmpSnpGroupCountPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6.3.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in igmpGroupCountPortStatus.""",
}, # row
"igmpSnpGroupCountPortNum" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.29.6.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Show IGMP snooping group number for port""",
}, # column
"igmpFilteringProfileSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.30",
}, # node
"igmpFilteringMaxNumberOfProfile" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.30.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"igmpFilteringProfileTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.30.2",
"status" : "current",
"description" :
"""""",
}, # table
"igmpFilteringProfileEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.30.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"igmpFilteringProfileName",
"igmpFilteringProfileStartAddress",
"igmpFilteringProfileEndAddress",
],
"description" :
"""An entry in igmpFilteringProfileTable.""",
}, # row
"igmpFilteringProfileName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.30.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileStartAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.30.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileEndAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.30.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.30.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31",
}, # node
"maxNumberOfMVR" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mvrTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.2",
"status" : "current",
"description" :
"""""",
}, # table
"mvrEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mvrVlanID",
],
"description" :
"""An entry in mvrTable.""",
}, # row
"mvrVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""1..4094""",
}, # column
"mvrName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "0"
},
"compatible" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvr8021pPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Set the 802.1p priority of control messages within MVR (0~7)""",
}, # column
"mvrPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.3",
"status" : "current",
"description" :
"""""",
}, # table
"mvrPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.3.1",
"status" : "current",
"linkage" : [
"mvrVlanID",
"dot1dBasePort",
],
"description" :
"""An entry in mvrPortTable.""",
}, # row
"mvrPortRole" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"source_port" : {
"nodetype" : "namednumber",
"number" : "2"
},
"receiver_port" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrPortTagging" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"maxNumberOfMvrGroup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.192.168.127.126.31.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mvrGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.5",
"status" : "current",
"description" :
"""""",
}, # table
"mvrGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.5.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mvrVlanID",
"mvrGroupName",
],
"description" :
"""An entry in mvrGroupTable.""",
}, # row
"mvrGroupName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mvrGroupStartAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrGroupEndAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrGroupRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.31.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32",
}, # node
"sysLogState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""sysLog enabled/disabled for the switch.""",
}, # scalar
"sysLogTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.2",
"status" : "current",
"description" :
"""""",
}, # table
"sysLogTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.2.1",
"status" : "current",
"linkage" : [
"sysLogTypeIndex",
],
"description" :
"""An entry in sysLogTypeTable.""",
}, # row
"sysLogTypeIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"sysLogTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"sysLogTypeState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogTypeFacility" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"local_user0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"local_user1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"local_user2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"local_user3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"local_user4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"local_user5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"local_user6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"local_user7" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.32.3",
"status" : "current",
"description" :
"""""",
}, # table
"sysLogServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.32.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"sysLogServerAddress",
],
"description" :
"""An entry in sysLogServerTable.""",
}, # row
"sysLogServerAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.32.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"sysLogServerLogLevel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"level0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"level0-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"level0-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"level0-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"level0-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"level0-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"level0-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"level0-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.32.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33",
}, # node
"globalDhcpRelay" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.1",
}, # node
"globalDhcpRelayEnable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayOption82Enable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayInfoEnable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayInfoData" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"maxNumberOfGlobalDhcpRelayRemoteServer" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"globalDhcpRelayRemoteServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.1.6",
"status" : "current",
"description" :
"""""",
}, # table
"globalDhcpRelayRemoteServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.1.6.1",
"create" : "true",
"status" : "current",
"linkage" : [
"globalDhcpRelayRemoteServerIp",
],
"description" :
"""An entry in globalDhcpRelayRemoteServerTable.""",
}, # row
"globalDhcpRelayRemoteServerIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.1.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"globalDhcpRelayRemoteServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.1.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelay" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.3",
}, # node
"dhcpRelayInfoData" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"maxNumberOfDhcpRelay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.3.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum number of DHCP relay entries that can be created.
A value of 0 for this object implies that there exists settings for
global DHCP relay.""",
}, # scalar
"maxNumberOfDhcpRelayRemoteServer" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.3.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpRelayRemoteServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.3.4",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpRelayRemoteServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.3.4.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpRelayVid",
"dhcpRelayRemoteServerIp",
],
"description" :
"""An entry in dhcpRelayRemoteServerTable.""",
}, # row
"dhcpRelayVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.3.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpRelayRemoteServerIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.3.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpRelayRemoteServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.33.3.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelayTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.3.5",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpRelayEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.33.3.5.1",
"status" : "current",
"linkage" : [
"dhcpRelayVid",
],
"description" :
"""An entry in dhcpRelayTable.""",
}, # row
"dhcpRelayOption82Enable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.3.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelayInfoEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.33.3.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34",
}, # node
"radiusAuthServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.1",
}, # node
"radiusAuthServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.34.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"radiusAuthServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.1.3",
"status" : "current",
"description" :
"""""",
}, # table
"radiusAuthServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.34.1.3.1",
"status" : "current",
"linkage" : [
"radiusAuthServerIndex",
],
"description" :
"""An entry in radiusAuthServerTable.""",
}, # row
"radiusAuthServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.34.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"radiusAuthServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.34.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAuthServerUdpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAuthServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.34.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.2",
}, # node
"radiusAcctServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"radiusAcctServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"radiusAcctServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.2.2.1",
"status" : "current",
"linkage" : [
"radiusAcctServerIndex",
],
"description" :
"""An entry in radiusAcctServerTable.""",
}, # row
"radiusAcctServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"radiusAcctServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerUdpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.34.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.34.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35",
}, # node
"tacacsAuthServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35.1",
}, # node
"tacacsAuthServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.35.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tacacsAuthServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35.1.3",
"status" : "current",
"description" :
"""""",
}, # table
"tacacsAuthServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.35.1.3.1",
"status" : "current",
"linkage" : [
"tacacsAuthServerIndex",
],
"description" :
"""An entry in tacacsAuthServerTable.""",
}, # row
"tacacsAuthServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"tacacsAuthServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.35.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAuthServerTcpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.35.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAuthServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.1.5.8.16.35.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35.2",
}, # node
"tacacsAcctServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.35.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tacacsAcctServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"tacacsAcctServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35.2.2.1",
"status" : "current",
"linkage" : [
"tacacsAcctServerIndex",
],
"description" :
"""An entry in tacacsAcctServerTable.""",
}, # row
"tacacsAcctServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"tacacsAcctServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "192.168.3.11.4.1.890.172.16.17.32.35.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerTcpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.35.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.35.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aaaSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36",
}, # node
"authenticationSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.1",
}, # node
"authenticationTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.1.1",
"status" : "current",
"description" :
"""""",
}, # table
"authenticationTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.1.1.1",
"status" : "current",
"linkage" : [
"authenticationTypeName",
],
"description" :
"""An entry in authenticationTypeTable.""",
}, # row
"authenticationTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"authenticationTypeMethodList" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.2",
}, # node
"accountingUpdatePeriod" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"accountingTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"accountingTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.2.2.1",
"status" : "current",
"linkage" : [
"accountingTypeName",
],
"description" :
"""An entry in accountingTypeTable.""",
}, # row
"accountingTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"accountingTypeActive" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeBroadcast" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"start-stop" : {
"nodetype" : "namednumber",
"number" : "1"
},
"stop-only" : {
"nodetype" : "namednumber",
"number" : "2"
},
"not-available" : {
"nodetype" : "namednumber",
"number" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeMethod" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"radius" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tacacs" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypePrivilege" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"privilege-0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"privilege-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"privilege-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"privilege-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"privilege-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"privilege-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"privilege-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"privilege-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
"privilege-8" : {
"nodetype" : "namednumber",
"number" : "8"
},
"privilege-9" : {
"nodetype" : "namednumber",
"number" : "9"
},
"privilege-10" : {
"nodetype" : "namednumber",
"number" : "10"
},
"privilege-11" : {
"nodetype" : "namednumber",
"number" : "11"
},
"privilege-12" : {
"nodetype" : "namednumber",
"number" : "12"
},
"privilege-13" : {
"nodetype" : "namednumber",
"number" : "13"
},
"privilege-14" : {
"nodetype" : "namednumber",
"number" : "14"
},
"not-available" : {
"nodetype" : "namednumber",
"number" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"authorizationSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.3",
}, # node
"authorizationTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.3.1",
"status" : "current",
"description" :
"""""",
}, # table
"authorizationTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.3.1.1",
"status" : "current",
"linkage" : [
"authorizationTypeName",
],
"description" :
"""An entry in authorizationTypeTable.""",
}, # row
"authorizationTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"authorizationTypeActive" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.36.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"authorizationTypeMethod" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.36.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"radius" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tacacs" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ipsg" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.101",
}, # node
"ipsgTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.101.1",
"status" : "current",
"description" :
"""""",
}, # table
"ipsgEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.101.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"ipsgEntryMac",
"ipsgEntryVid",
],
"description" :
"""""",
}, # row
"ipsgEntryMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.101.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.101.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.101.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ipsgEntryLease" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.101.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""second""",
}, # column
"ipsgEntryType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.101.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dhcp" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.101.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0 means any port""",
}, # column
"ipsgEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.101.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspect" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.102",
}, # node
"arpInspectSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.102.1",
}, # node
"arpInspectState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectFilterAgingTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2147483647"
},
],
"range" : {
"min" : "0",
"max" : "2147483647"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLog" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.3",
}, # node
"arpInspectLogEntries" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1024"
},
],
"range" : {
"min" : "0",
"max" : "1024"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogRate" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.3.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1024"
},
],
"range" : {
"min" : "0",
"max" : "1024"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogInterval" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.3.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2147483647"
},
],
"range" : {
"min" : "0",
"max" : "2147483647"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.4",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.4.1",
"status" : "current",
"linkage" : [
"arpInspectVlanVid",
],
"description" :
"""""",
}, # row
"arpInspectVlanVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.102.1.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectVlanLog" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"all" : {
"nodetype" : "namednumber",
"number" : "1"
},
"none" : {
"nodetype" : "namednumber",
"number" : "2"
},
"permit" : {
"nodetype" : "namednumber",
"number" : "3"
},
"deny" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectVlanStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.5",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.1.5.1",
"status" : "current",
"linkage" : [
"arpInspectPortIndex",
],
"description" :
"""""",
}, # row
"arpInspectPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.102.1.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectPortTrust" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.102.1.5.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"trusted" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untrusted" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2",
}, # node
"arpInspectFilterClear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogClear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectFilterTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.3",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectFilterEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"arpInspectFilterMac",
"arpInspectFilterVid",
],
"description" :
"""""",
}, # row
"arpInspectFilterMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterExpiry" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterReason" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"macVid" : {
"nodetype" : "namednumber",
"number" : "1"
},
"port" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ip" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectLogTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.4",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectLogEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.4.1",
"status" : "current",
"linkage" : [
"arpInspectLogMac",
"arpInspectLogVid",
"arpInspectLogPort",
"arpInspectLogIp",
"arpInspectLogReason",
],
"description" :
"""""",
}, # row
"arpInspectLogMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.4.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogNumPkt" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogReason" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.102.2.4.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"deny" : {
"nodetype" : "namednumber",
"number" : "1"
},
"denyStatic" : {
"nodetype" : "namednumber",
"number" : "2"
},
"denyDHCP" : {
"nodetype" : "namednumber",
"number" : "3"
},
"permitStatic" : {
"nodetype" : "namednumber",
"number" : "4"
},
"permitDHCP" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.102.2.4.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"loopGuardSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.104",
}, # node
"loopGuardState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.104.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"loopGuardPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.104.2",
"status" : "current",
"description" :
"""""",
}, # table
"loopGuardPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.104.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in loopGuardPortTable.""",
}, # row
"loopGuardPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.104.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mstp" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107",
}, # node
"mstpGen" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1",
}, # node
"mstpGenState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Enabled/disabled on the mrstp bridge.""",
}, # scalar
"mstpGenCfgIdName" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The configuration name that identifies the MST
region and is used as one of the inputs in the
computation of the MST Configuration Identifier.""",
"reference>" :
"""12.12.3.4.2.b)""",
}, # scalar
"mstpGenCfgIdRevLevel" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""This object identifies the MST revision that
identifies the MST region and is used as one
of the inputs in the computation of the MST
configuration Identifier.""",
"reference>" :
"""12.12.3.4.2.c)""",
}, # scalar
"mstpGenCfgIdCfgDigest" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "16",
"max" : "16"
},
],
"range" : {
"min" : "16",
"max" : "16"
},
},
},
"access" : "readonly",
"description" :
"""Configuration Digest.""",
"reference>" :
"""12.12.3.3.3.a.4""",
}, # scalar
"mstpGenHelloTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenMaxAge" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "6",
"max" : "40"
},
],
"range" : {
"min" : "6",
"max" : "40"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenForwardDelay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "4",
"max" : "30"
},
],
"range" : {
"min" : "4",
"max" : "30"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenMaxHops" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "255"
},
],
"range" : {
"min" : "1",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""13.22.f)""",
}, # scalar
"mstpGenCistRootPathCost" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.107.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # scalar
"mstpGenCistRootBrid" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "8",
"max" : "8"
},
],
"range" : {
"min" : "8",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
""".""",
}, # scalar
"mstMapTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.20",
"status" : "current",
"description" :
"""This table contains one entry for each instance of MSTP.""",
}, # table
"mstMapEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.20.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mstMapIndex",
],
"description" :
"""A conceptual row containing the status of the MSTP instance.""",
}, # row
"mstMapIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.107.20.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "noaccess",
"description" :
"""Uniquely identifies an instance. The entry of this table with index 0
presents always, represents CIST. When SET operation """,
}, # column
"mstMapVlans1k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.107.20.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN. The
first octet corresponds to VLANs with VlanIndex values
1 through 8; the second octet to VLANs 9 through
16 etc. The most significant bit of each octet
corresponds to the lowest VlanIndex value in that octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans2k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.192.168.127.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 1024 through 2047. The
first octet corresponds to VLANs with VlanIndex values
1024 through 1031; the second octet to VLANs 1032
through 1039 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans3k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.172.16.58.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 2048 through 3071. The
first octet corresponds to VLANs with VlanIndex values
of 2048 through 2055; the second octet to VLANs 2056
through 2063 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans4k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.107.20.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 3072 through 4095. The
first octet corresponds to VLANs with VlanIndex values
3072 through 3079; the second octet to VLANs 3080
through 3087 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.20.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mstVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.30",
"status" : "current",
"description" :
"""This table contains one entry for each VlanId.""",
}, # table
"mstVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.30.1",
"status" : "current",
"linkage" : [
"mstVlanIndex",
],
"description" :
"""Information regarding the instance to which each Vlan is mapped.""",
}, # row
"mstVlanIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.30.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "noaccess",
"description" :
"""The VlanId for which this entry contains the instance mapped.""",
}, # column
"mstVlanMstIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.30.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "readonly",
"description" :
"""An integer with values ranging from 0 to 64 that identify a
the CIST/MSTI instance to which this VLAN is mapped""",
}, # column
"mstpPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.40",
"status" : "current",
"description" :
"""A table that contains generic information about
every port that is associated with this bridge.""",
}, # table
"mstpPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.40.1",
"status" : "current",
"linkage" : [
"mstpPortIndex",
],
"description" :
"""A list of information for each port of the
bridge.""",
}, # row
"mstpPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.40.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "noaccess",
"description" :
"""A unique value, greater than zero, for each Port.
The value for each interface sub-layer
must remain constant at least from one re-initialization
of the entity's network management system to the next re-
initialization.""",
}, # column
"mstpPortOperEdgePort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.40.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""""",
"reference>" :
"""""",
}, # column
"mstpPortOperPointToPointMAC" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.40.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""""",
"reference>" :
"""""",
}, # column
"mstpXstTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50",
"status" : "current",
"description" :
""".""",
}, # table
"mstpXstEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50.1",
"status" : "current",
"linkage" : [
"mstpXstId",
],
"description" :
""".""",
}, # row
"mstpXstId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "readonly",
"description" :
"""0 means CIST.""",
}, # column
"mstpXstBridgePriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "61440"
},
],
"range" : {
"min" : "0",
"max" : "61440"
},
},
},
"access" : "readwrite",
"default" : "32768",
"description" :
"""Bridge priority, in steps of 4096.""",
}, # column
"mstpXstBridgeId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstInternalRootCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstRootPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstTimeSinceTopologyChange" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstTopologyChangesCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.50.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60",
"status" : "current",
"description" :
""".""",
}, # table
"mstpXstPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1",
"status" : "current",
"linkage" : [
"mstpXstPortXstId",
"mstpXstPortIndex",
],
"description" :
""".""",
"reference>" :
""".""",
}, # row
"mstpXstPortXstId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-ES2024A-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "noaccess",
"description" :
"""0 means CIST.""",
}, # column
"mstpXstPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The value of mstpPortIndex of the Port
in mstpPortTable.""",
}, # column
"mstpXstPortEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
""".""",
}, # column
"mstpXstPortPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "128",
"description" :
"""Port priority, in steps of 16.""",
}, # column
"mstpXstPortPathCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
""".""",
}, # column
"mstpXstPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"discarding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"learning" : {
"nodetype" : "namednumber",
"number" : "2"
},
"forwarding" : {
"nodetype" : "namednumber",
"number" : "3"
},
"unknown" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedBridge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.60.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpNotifications" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.70",
}, # node
"portIsolationSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.112",
}, # node
"portIsolationTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.112.1",
"status" : "current",
"description" :
"""""",
}, # table
"portIsolationEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.112.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portIsolationTable.""",
}, # row
"portIsolationState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.112.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Port isolation enabled/disabled on the port.
Enable(1) to be isolated and not exchange packets.""",
}, # column
"transceiverInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117",
}, # node
"transceiverSerialInfoTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.1",
"status" : "current",
"description" :
"""""",
}, # table
"transceiverSerialInfoEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.1.1",
"status" : "current",
"linkage" : [
"transceiverSerialInfoEntryPort",
],
"description" :
"""An entry in transceiverSerialInfoTable.""",
}, # row
"transceiverSerialInfoEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.117.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of transceiverSerialInfo. It is referred to dot1dBasePort""",
}, # column
"transceiverSerialInfoEntryStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.117.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok_with_DDM" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ok_without_DDM" : {
"nodetype" : "namednumber",
"number" : "2"
},
"nonoperational" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Transceiver module status.""",
}, # column
"transceiverSerialInfoEntryVendor" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Transceiver module vendor name.""",
}, # column
"transceiverSerialInfoEntryPartNo" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Part number provided by transceiver module vendor.""",
}, # column
"transceiverSerialInfoEntrySerialNo" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Serial number provided by transceiver module vendor.""",
}, # column
"transceiverSerialInfoEntryRevision" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.117.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Revision level for part number provided by transceiver module vendor.""",
}, # column
"transceiverSerialInfoEntryDateCode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.117.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Transceiver module vendor's manufacturing date code""",
}, # column
"transceiverSerialInfoEntryTransceiver" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Transceiver module type names""",
}, # column
"transceiverDdmInfoTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2",
"status" : "current",
"description" :
"""""",
}, # table
"transceiverDdmInfoEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1",
"status" : "current",
"linkage" : [
"transceiverDdmInfoEntryPort",
"transceiverDdmInfoEntryType",
],
"description" :
"""An entry in transceiverDdmInfoTable.""",
}, # row
"transceiverDdmInfoEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of transceiverDdmInfo. This will be referred to dot1dBasePort""",
}, # column
"transceiverDdmInfoEntryType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Transceiver module status.""",
}, # column
"transceiverDdmInfoEntryAlarmMax" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Transceiver module vendor name.""",
}, # column
"transceiverDdmInfoEntryAlarmMin" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Part number provided by transceiver module vendor.""",
}, # column
"transceiverDdmInfoEntryWarnMax" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Serial number provided by transceiver module vendor.""",
}, # column
"transceiverDdmInfoEntryWarnMin" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Revision level for part number provided by transceiver module vendor.""",
}, # column
"transceiverDdmInfoEntryCurrent" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Transceiver module vendor's manufacturing date code""",
}, # column
"transceiverDdmInfoEntryDescription" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.117.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Transceiver module type names""",
}, # column
"dot3OamSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.118",
}, # node
"dot3OamState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.118.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"sysMemoryPool" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.124",
}, # node
"sysMemoryPoolTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.124.1",
"status" : "current",
"description" :
"""""",
}, # table
"sysMemoryPoolEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.124.1.1",
"status" : "current",
"linkage" : [
"sysMemoryPoolId",
],
"description" :
"""A system memory pool entry""",
}, # row
"sysMemoryPoolId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.124.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""The memory pool id """,
}, # column
"sysMemoryPoolName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.124.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""Name of the memory pool """,
}, # column
"sysMemoryPoolTotal" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.172.16.31.10.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Total size of memory pool in bytes """,
}, # column
"sysMemoryPoolUsed" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.124.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Used size of memory pool in bytes """,
}, # column
"sysMemoryPoolUtil" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.124.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Unsigned32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Utilization of memory pool in bytes """,
}, # column
}, # nodes
"notifications" : {
"eventOnTrap" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.27.2.1",
"status" : "current",
"objects" : {
"eventSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventEventId" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventName" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventSetTime" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventSeverity" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventInstanceType" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventInstanceId" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventInstanceName" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventServAffective" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventDescription" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"trapPersistence" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"trapSenderNodeId" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"sysObjectID" : {
"nodetype" : "object",
"module" : "RFC1213-MIB"
},
},
"description" :
"""This trap is used to inform network management system that a delta
fault event (events that are automatically cleared) has occured
or a normal fault event (not automatically cleared) state has
been set on.
Objects are used as follows:
- eventSeqNum is the sequence number of the event. For normal
type of events must equal to the sequence number of the event
in the events table.
- eventEventId specifies what fault event has occured.
- eventName specifies the name of the fault event.
- eventSetTime indicates when fault event has occured
(delta events) or when fault has been set on (normal events).
- eventSeverity reports the severity level of the event.
- eventInstanceType indicates what kind of object is faulty.
- eventInstanceId specifies what instance is faulty.
- eventInstanceName may contain textual description for
the faulty object.
- eventServAffective specifies whether the event is
immediately service affcetive.
- eventDescription reports possible additional information about the event.
- trapPersistence tells whether this event is a delta or normal event.
- trapSenderNodeId specifies the node ID of the sending network element if
configuring it is supported for the network element, otherwise 0.
- sysObjectID specifies what kind of equipment reports the fault event.
For more information see the eventTable specification""",
}, # notification
"eventClearedTrap" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.27.2.2",
"status" : "current",
"objects" : {
"eventSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventEventId" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventSetTime" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventInstanceType" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"eventInstanceId" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"trapRefSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"trapSenderNodeId" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
"sysObjectID" : {
"nodetype" : "object",
"module" : "RFC1213-MIB"
},
},
"description" :
"""This trap is used to inform network management system that a normal
type fault event has been cleared (state set off).
Objects are used as follows:
- eventSeqNum is the sequence number of the this clearing event. Note that
the sequence number of the cleared event is reported in the trapRefSeqNum
object.
- eventEventId specifies what event has been cleared.
- eventSetTime indicates when fault event has been cleared.
- eventInstanceType indicates what kind of object has been
faulty.
- eventInstanceId specifies what instance has been faulty.
- trapRefSeqNum specifies the sequence number of the cleared event (i.e.
the sequence number was assigned for the event in the events table).
- trapSenderNodeId specifies the node ID of the sending network element if
configuring it is supported for the network element, otherwise 0.
- sysObjectID specifies what kind of equipment reports the clearing event.
For more information see the eventTable specification""",
}, # notification
"newRoot" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.172.16.17.32.107.70.1",
"status" : "current",
"objects" : {
"mstpXstId" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
},
"description" :
"""""",
}, # notification
"topologyChange" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-ES2024A-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.16.107.70.2",
"status" : "current",
"objects" : {
"mstpXstId" : {
"nodetype" : "object",
"module" : "ZYXEL-ES2024A-MIB"
},
},
"description" :
"""""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_10_me_bx.py
|
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_DGS_1210_10_ME_BX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_10ME_BX_7_03_001_mib')
GET_DDM_SENSORS = 'get_ddm_sensors'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_equipment.py
|
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.dlink import DLink
from nav.smidumps import get_mib
class DLink_Equipment_Mib(MibRetriever, DLink):
mib = get_mib('D_Link_Equipment_mib')
GUARD_OID = 'swPowerTrapState'
GET_FAN_SENSORS = 'get_fan_sensors_old'
GET_POWER_SENSORS = 'get_power_sensors_old'
GET_TEMPERATURE_SENSORS = 'get_temperature_sensors_old'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/zyxel_mes_3528.py
|
<reponame>alexanderfefelov/nav-add-ons<gh_stars>0
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.smidumps import get_mib
from twisted.internet import defer
import inspect
class ZyXEL_MES_3528_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('ZyXEL_390BHR5C0_mib')
def get_cpu_loadavg(self):
self._logger.debug(here(self))
return defer.succeed(None)
@defer.inlineCallbacks
def get_cpu_utilization(self):
self._logger.debug(here(self))
result = {}
utilization = yield self.get_next('sysMgmtCPUUsage')
result['cpu'] = utilization
defer.returnValue(result)
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/Extreme_Networks_EXTREME_SYSTEM_MIB_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python EXTREME-SYSTEM-MIB
FILENAME = "mibs/Extreme Networks/EXTREME-SYSTEM-MIB.mib"
MIB = {
"moduleName" : "EXTREME-SYSTEM-MIB",
"EXTREME-SYSTEM-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""Extreme Networks, Inc.""",
"contact" :
"""Postal: Extreme Networks, Inc.
6480 Via Del Oro
San Jose, CA 95119 USA
Phone: +1 408 579-2800
E-mail: <EMAIL>
WWW: http://www.extremenetworks.com""",
"description" :
"""Extreme System objects: objects common to all platforms""",
"revisions" : (
{
"date" : "2020-02-12 17:39",
"description" :
"""Add V300 SlotType entries""",
},
{
"date" : "2019-09-04 21:20",
"description" :
"""Add X465-24XE, X465-24S and X465i-48W SlotType entries""",
},
{
"date" : "2019-08-05 10:31",
"description" :
"""Add X435 SlotType entries""",
},
{
"date" : "2018-09-26 23:02",
"description" :
"""Add X725 SlotType""",
},
{
"date" : "2018-09-14 15:31",
"description" :
"""Add X465 SlotType entries""",
},
{
"date" : "2018-07-24 14:00",
"description" :
"""Updated extremeSaveConfiguration object description""",
},
{
"date" : "2018-07-02 10:10",
"description" :
"""Modified platforms in according with SlotType value 625
626""",
},
{
"date" : "2018-06-07 14:10",
"description" :
"""Remove unsupported slotType entries""",
},
{
"date" : "2018-03-01 16:31",
"description" :
"""Added new SlotType entries for X590 models""",
},
{
"date" : "2017-08-29 19:48",
"description" :
"""Added auto-save configuration object""",
},
{
"date" : "2017-06-28 03:38",
"description" :
"""Added an existing platform type vm386EXOS which was missing in this list""",
},
{
"date" : "2017-06-14 15:01",
"description" :
"""Added new slot types for BPEs""",
},
{
"date" : "2017-06-01 16:30",
"description" :
"""Added new SlotType entry for WhiteBoxes""",
},
{
"date" : "2016-08-05 18:09",
"description" :
"""Added new slot types for new halfcat cards x460G2-24p-24hp and x460G2-24t-24ht""",
},
{
"date" : "2016-07-25 08:10",
"description" :
"""Added new slot type for x460-G2-16mp-32p-10GE4 platform""",
},
{
"date" : "2016-03-29 00:00",
"description" :
"""Added new SlotType entries X690 models""",
},
{
"date" : "2015-03-06 19:55",
"description" :
"""Added new slot types for new cards bdxa-48t, bdxa-48x""",
},
),
"identity node" : "extremeSystem",
},
"imports" : (
{"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
{"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "Integer32"},
{"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "RowStatus"},
{"module" : "RFC1213-MIB", "name" : "DisplayString"},
{"module" : "EXTREME-BASE-MIB", "name" : "extremeAgent"},
{"module" : "EXTREME-BASE-MIB", "name" : "PortList"},
{"module" : "RFC1213-MIB", "name" : "sysDescr"},
{"module" : "RFC1213-MIB", "name" : "sysUpTime"},
{"module" : "RFC1213-MIB", "name" : "ifDescr"},
{"module" : "SNMPv2-TC", "name" : "MacAddress"},
{"module" : "SNMPv2-SMI", "name" : "IpAddress"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
),
"typedefs" : {
"SlotType" : {
"basetype" : "Enumeration",
"status" : "current",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fe32" : {
"nodetype" : "namednumber",
"number" : "2"
},
"g4x" : {
"nodetype" : "namednumber",
"number" : "3"
},
"g6x" : {
"nodetype" : "namednumber",
"number" : "4"
},
"fe32fx" : {
"nodetype" : "namednumber",
"number" : "5"
},
"msm" : {
"nodetype" : "namednumber",
"number" : "6"
},
"f48ti" : {
"nodetype" : "namednumber",
"number" : "7"
},
"g8xi" : {
"nodetype" : "namednumber",
"number" : "8"
},
"g8ti" : {
"nodetype" : "namednumber",
"number" : "9"
},
"g12sxi" : {
"nodetype" : "namednumber",
"number" : "10"
},
"g12ti" : {
"nodetype" : "namednumber",
"number" : "11"
},
"msm64i" : {
"nodetype" : "namednumber",
"number" : "18"
},
"alpine3808" : {
"nodetype" : "namednumber",
"number" : "19"
},
"alpine3804" : {
"nodetype" : "namednumber",
"number" : "20"
},
"fm32t" : {
"nodetype" : "namednumber",
"number" : "21"
},
"gm4x" : {
"nodetype" : "namednumber",
"number" : "22"
},
"gm4sx" : {
"nodetype" : "namednumber",
"number" : "23"
},
"gm4t" : {
"nodetype" : "namednumber",
"number" : "24"
},
"wdm8" : {
"nodetype" : "namednumber",
"number" : "25"
},
"fm24f" : {
"nodetype" : "namednumber",
"number" : "26"
},
"fm24sf" : {
"nodetype" : "namednumber",
"number" : "27"
},
"fm24te" : {
"nodetype" : "namednumber",
"number" : "28"
},
"f96ti" : {
"nodetype" : "namednumber",
"number" : "29"
},
"wdm4" : {
"nodetype" : "namednumber",
"number" : "30"
},
"f32fi" : {
"nodetype" : "namednumber",
"number" : "31"
},
"tenGig" : {
"nodetype" : "namednumber",
"number" : "32"
},
"tenGigLR" : {
"nodetype" : "namednumber",
"number" : "33"
},
"g16x3" : {
"nodetype" : "namednumber",
"number" : "34"
},
"g24t3" : {
"nodetype" : "namednumber",
"number" : "35"
},
"gm16x3" : {
"nodetype" : "namednumber",
"number" : "36"
},
"gm16t3" : {
"nodetype" : "namednumber",
"number" : "37"
},
"fm16t3" : {
"nodetype" : "namednumber",
"number" : "38"
},
"fm32p" : {
"nodetype" : "namednumber",
"number" : "39"
},
"fm8v" : {
"nodetype" : "namednumber",
"number" : "50"
},
"wm4t1" : {
"nodetype" : "namednumber",
"number" : "51"
},
"wm4t3" : {
"nodetype" : "namednumber",
"number" : "52"
},
"wm1t3" : {
"nodetype" : "namednumber",
"number" : "53"
},
"wm4e1" : {
"nodetype" : "namednumber",
"number" : "54"
},
"alpine3802" : {
"nodetype" : "namednumber",
"number" : "55"
},
"p3c" : {
"nodetype" : "namednumber",
"number" : "101"
},
"p12c" : {
"nodetype" : "namednumber",
"number" : "102"
},
"arm" : {
"nodetype" : "namednumber",
"number" : "103"
},
"mpls" : {
"nodetype" : "namednumber",
"number" : "104"
},
"sma" : {
"nodetype" : "namednumber",
"number" : "105"
},
"p48c" : {
"nodetype" : "namednumber",
"number" : "106"
},
"a3c" : {
"nodetype" : "namednumber",
"number" : "107"
},
"a12c" : {
"nodetype" : "namednumber",
"number" : "108"
},
"pxm" : {
"nodetype" : "namednumber",
"number" : "200"
},
"s300fixed" : {
"nodetype" : "namednumber",
"number" : "201"
},
"msm3" : {
"nodetype" : "namednumber",
"number" : "202"
},
"msm1" : {
"nodetype" : "namednumber",
"number" : "203"
},
"msm1xl" : {
"nodetype" : "namednumber",
"number" : "204"
},
"s300expansion" : {
"nodetype" : "namednumber",
"number" : "301"
},
"g60t" : {
"nodetype" : "namednumber",
"number" : "400"
},
"g60x" : {
"nodetype" : "namednumber",
"number" : "401"
},
"teng6x" : {
"nodetype" : "namednumber",
"number" : "402"
},
"vm386EXOS" : {
"nodetype" : "namednumber",
"number" : "406"
},
"msm-g8x" : {
"nodetype" : "namednumber",
"number" : "414"
},
"g8x" : {
"nodetype" : "namednumber",
"number" : "415"
},
"g48t" : {
"nodetype" : "namednumber",
"number" : "416"
},
"g48p" : {
"nodetype" : "namednumber",
"number" : "417"
},
"g24x" : {
"nodetype" : "namednumber",
"number" : "418"
},
"teng4x" : {
"nodetype" : "namednumber",
"number" : "419"
},
"teng2x" : {
"nodetype" : "namednumber",
"number" : "420"
},
"g20x" : {
"nodetype" : "namednumber",
"number" : "421"
},
"teng2h" : {
"nodetype" : "namednumber",
"number" : "422"
},
"x450-24x" : {
"nodetype" : "namednumber",
"number" : "423"
},
"x450-24t" : {
"nodetype" : "namednumber",
"number" : "424"
},
"msm5" : {
"nodetype" : "namednumber",
"number" : "425"
},
"msm5r" : {
"nodetype" : "namednumber",
"number" : "426"
},
"gm20t" : {
"nodetype" : "namednumber",
"number" : "427"
},
"gm20xt" : {
"nodetype" : "namednumber",
"number" : "428"
},
"gm20xtr" : {
"nodetype" : "namednumber",
"number" : "429"
},
"xm2x" : {
"nodetype" : "namednumber",
"number" : "430"
},
"xm2xr" : {
"nodetype" : "namednumber",
"number" : "431"
},
"msm6r" : {
"nodetype" : "namednumber",
"number" : "432"
},
"g48te" : {
"nodetype" : "namednumber",
"number" : "433"
},
"g48ta" : {
"nodetype" : "namednumber",
"number" : "434"
},
"g48pe" : {
"nodetype" : "namednumber",
"number" : "435"
},
"g48x" : {
"nodetype" : "namednumber",
"number" : "437"
},
"x450a-24t" : {
"nodetype" : "namednumber",
"number" : "439"
},
"x450e-24p" : {
"nodetype" : "namednumber",
"number" : "440"
},
"x450a-48t" : {
"nodetype" : "namednumber",
"number" : "442"
},
"x450e-48p" : {
"nodetype" : "namednumber",
"number" : "443"
},
"x450a-24x" : {
"nodetype" : "namednumber",
"number" : "444"
},
"x450a-24tdc" : {
"nodetype" : "namednumber",
"number" : "445"
},
"x450a-24xdc" : {
"nodetype" : "namednumber",
"number" : "446"
},
"msm-48" : {
"nodetype" : "namednumber",
"number" : "447"
},
"teng4ca" : {
"nodetype" : "namednumber",
"number" : "448"
},
"teng4xa" : {
"nodetype" : "namednumber",
"number" : "449"
},
"g48tc" : {
"nodetype" : "namednumber",
"number" : "450"
},
"g48te2" : {
"nodetype" : "namednumber",
"number" : "451"
},
"g48xc" : {
"nodetype" : "namednumber",
"number" : "452"
},
"g24xc" : {
"nodetype" : "namednumber",
"number" : "453"
},
"tenG4xc" : {
"nodetype" : "namednumber",
"number" : "454"
},
"tenG8xc" : {
"nodetype" : "namednumber",
"number" : "455"
},
"msms48c" : {
"nodetype" : "namednumber",
"number" : "456"
},
"g8xc" : {
"nodetype" : "namednumber",
"number" : "457"
},
"tenG1xc" : {
"nodetype" : "namednumber",
"number" : "458"
},
"g48tcPoE" : {
"nodetype" : "namednumber",
"number" : "459"
},
"g48te2PoE" : {
"nodetype" : "namednumber",
"number" : "460"
},
"x450a-48tdc" : {
"nodetype" : "namednumber",
"number" : "461"
},
"x250e-24t" : {
"nodetype" : "namednumber",
"number" : "462"
},
"x250e-24p" : {
"nodetype" : "namednumber",
"number" : "463"
},
"x250e-48t" : {
"nodetype" : "namednumber",
"number" : "464"
},
"x250e-48p" : {
"nodetype" : "namednumber",
"number" : "465"
},
"x250e-24x" : {
"nodetype" : "namednumber",
"number" : "466"
},
"x250e-24xtaa" : {
"nodetype" : "namednumber",
"number" : "467"
},
"x250e-24tdc" : {
"nodetype" : "namednumber",
"number" : "468"
},
"x250e-48tdc" : {
"nodetype" : "namednumber",
"number" : "469"
},
"x250e-24xdc" : {
"nodetype" : "namednumber",
"number" : "470"
},
"x150-24t" : {
"nodetype" : "namednumber",
"number" : "471"
},
"x150-24tdc" : {
"nodetype" : "namednumber",
"number" : "472"
},
"x150-24p" : {
"nodetype" : "namednumber",
"number" : "473"
},
"x150-48t" : {
"nodetype" : "namednumber",
"number" : "474"
},
"x150-48tdc" : {
"nodetype" : "namednumber",
"number" : "475"
},
"x150-48p" : {
"nodetype" : "namednumber",
"number" : "476"
},
"x150-24x" : {
"nodetype" : "namednumber",
"number" : "477"
},
"x150-24xdc" : {
"nodetype" : "namednumber",
"number" : "478"
},
"xm2hr" : {
"nodetype" : "namednumber",
"number" : "480"
},
"x350-24t" : {
"nodetype" : "namednumber",
"number" : "481"
},
"x350-48t" : {
"nodetype" : "namednumber",
"number" : "482"
},
"x650-24t" : {
"nodetype" : "namednumber",
"number" : "483"
},
"x650-24x" : {
"nodetype" : "namednumber",
"number" : "484"
},
"x650-24tG4X" : {
"nodetype" : "namednumber",
"number" : "485"
},
"x650-24xG4X" : {
"nodetype" : "namednumber",
"number" : "486"
},
"x650-24tG4X10G2S" : {
"nodetype" : "namednumber",
"number" : "487"
},
"x650-24xG4X10G2S" : {
"nodetype" : "namednumber",
"number" : "488"
},
"x650-24t10G8X10G2S" : {
"nodetype" : "namednumber",
"number" : "489"
},
"x650-24x10G8X10G2S" : {
"nodetype" : "namednumber",
"number" : "490"
},
"x650-24t64G2S" : {
"nodetype" : "namednumber",
"number" : "491"
},
"x650-24x64G2S" : {
"nodetype" : "namednumber",
"number" : "492"
},
"x650-24t64G4S" : {
"nodetype" : "namednumber",
"number" : "493"
},
"x650-24x64G4S" : {
"nodetype" : "namednumber",
"number" : "494"
},
"mmbase" : {
"nodetype" : "namednumber",
"number" : "496"
},
"mmadv" : {
"nodetype" : "namednumber",
"number" : "497"
},
"gm40xb" : {
"nodetype" : "namednumber",
"number" : "498"
},
"xm8xb" : {
"nodetype" : "namednumber",
"number" : "500"
},
"x8900msm128" : {
"nodetype" : "namednumber",
"number" : "503"
},
"x8900tenG24xc" : {
"nodetype" : "namednumber",
"number" : "504"
},
"x8900tenG8xm" : {
"nodetype" : "namednumber",
"number" : "505"
},
"x8900g48tm" : {
"nodetype" : "namednumber",
"number" : "506"
},
"x8900g48xm" : {
"nodetype" : "namednumber",
"number" : "507"
},
"x8900g96tc" : {
"nodetype" : "namednumber",
"number" : "508"
},
"x8900g48tmPoE" : {
"nodetype" : "namednumber",
"number" : "509"
},
"nwie450a" : {
"nodetype" : "namednumber",
"number" : "510"
},
"x480-24x" : {
"nodetype" : "namednumber",
"number" : "511"
},
"x480-48x" : {
"nodetype" : "namednumber",
"number" : "512"
},
"x480-48t" : {
"nodetype" : "namednumber",
"number" : "513"
},
"x480-24x10G2S" : {
"nodetype" : "namednumber",
"number" : "514"
},
"x480-48x10G2S" : {
"nodetype" : "namednumber",
"number" : "515"
},
"x480-48t10G2S" : {
"nodetype" : "namednumber",
"number" : "516"
},
"x480-24x10G4X" : {
"nodetype" : "namednumber",
"number" : "517"
},
"x480-48x10G4X" : {
"nodetype" : "namednumber",
"number" : "518"
},
"x480-48t10G4X" : {
"nodetype" : "namednumber",
"number" : "519"
},
"x480-24x32G2S" : {
"nodetype" : "namednumber",
"number" : "520"
},
"x480-48x32G2S" : {
"nodetype" : "namednumber",
"number" : "521"
},
"x480-48t32G2S" : {
"nodetype" : "namednumber",
"number" : "522"
},
"x8500msm48" : {
"nodetype" : "namednumber",
"number" : "523"
},
"x8500g24xa" : {
"nodetype" : "namednumber",
"number" : "524"
},
"x8500g48te" : {
"nodetype" : "namednumber",
"number" : "525"
},
"x8500g48tePoE" : {
"nodetype" : "namednumber",
"number" : "526"
},
"x460-24t" : {
"nodetype" : "namednumber",
"number" : "527"
},
"x460-24p" : {
"nodetype" : "namednumber",
"number" : "528"
},
"x460-24x" : {
"nodetype" : "namednumber",
"number" : "529"
},
"x460-48t" : {
"nodetype" : "namednumber",
"number" : "530"
},
"x460-48p" : {
"nodetype" : "namednumber",
"number" : "531"
},
"x460-48x" : {
"nodetype" : "namednumber",
"number" : "532"
},
"x450e-24t" : {
"nodetype" : "namednumber",
"number" : "533"
},
"x450e-48t" : {
"nodetype" : "namednumber",
"number" : "534"
},
"hm-2x24ga" : {
"nodetype" : "namednumber",
"number" : "535"
},
"xcm88s1" : {
"nodetype" : "namednumber",
"number" : "536"
},
"xcm8848t" : {
"nodetype" : "namednumber",
"number" : "537"
},
"xcm88p" : {
"nodetype" : "namednumber",
"number" : "538"
},
"xcm8824f" : {
"nodetype" : "namednumber",
"number" : "539"
},
"xcm8808x" : {
"nodetype" : "namednumber",
"number" : "540"
},
"xcm888f" : {
"nodetype" : "namednumber",
"number" : "541"
},
"x480-48x20G2S" : {
"nodetype" : "namednumber",
"number" : "542"
},
"x480-48t20G2S" : {
"nodetype" : "namednumber",
"number" : "543"
},
"x670-48x" : {
"nodetype" : "namednumber",
"number" : "546"
},
"x670v-48x" : {
"nodetype" : "namednumber",
"number" : "547"
},
"e4g-400" : {
"nodetype" : "namednumber",
"number" : "548"
},
"bdx-mm1" : {
"nodetype" : "namednumber",
"number" : "549"
},
"bdxa-10g48x" : {
"nodetype" : "namednumber",
"number" : "550"
},
"bdxa-10g24x" : {
"nodetype" : "namednumber",
"number" : "551"
},
"bdxa-40g24x" : {
"nodetype" : "namednumber",
"number" : "552"
},
"bdxa-40g12x" : {
"nodetype" : "namednumber",
"number" : "553"
},
"bdxa-fm20t" : {
"nodetype" : "namednumber",
"number" : "554"
},
"bdxa-fm10t" : {
"nodetype" : "namednumber",
"number" : "555"
},
"x480-24x20G2S" : {
"nodetype" : "namednumber",
"number" : "556"
},
"x650-24x40G4X" : {
"nodetype" : "namednumber",
"number" : "557"
},
"x650-24t40G4X" : {
"nodetype" : "namednumber",
"number" : "558"
},
"x480-24x40G4X" : {
"nodetype" : "namednumber",
"number" : "559"
},
"x480-48x40G4X" : {
"nodetype" : "namednumber",
"number" : "560"
},
"x480-48t40G4X" : {
"nodetype" : "namednumber",
"number" : "561"
},
"tenG2xc" : {
"nodetype" : "namednumber",
"number" : "562"
},
"fortyG6xc" : {
"nodetype" : "namednumber",
"number" : "563"
},
"e4g-200" : {
"nodetype" : "namednumber",
"number" : "564"
},
"x440-8t" : {
"nodetype" : "namednumber",
"number" : "565"
},
"x440-8p" : {
"nodetype" : "namednumber",
"number" : "566"
},
"x440-24t" : {
"nodetype" : "namednumber",
"number" : "567"
},
"x440-24p" : {
"nodetype" : "namednumber",
"number" : "568"
},
"x440-48t" : {
"nodetype" : "namednumber",
"number" : "569"
},
"x440-48p" : {
"nodetype" : "namednumber",
"number" : "570"
},
"x440-24t-10G" : {
"nodetype" : "namednumber",
"number" : "571"
},
"x440-24p-10G" : {
"nodetype" : "namednumber",
"number" : "572"
},
"x440-48t-10G" : {
"nodetype" : "namednumber",
"number" : "573"
},
"x440-48p-10G" : {
"nodetype" : "namednumber",
"number" : "574"
},
"ags100-24t" : {
"nodetype" : "namednumber",
"number" : "575"
},
"ags150-24p" : {
"nodetype" : "namednumber",
"number" : "576"
},
"x670v-48t" : {
"nodetype" : "namednumber",
"number" : "578"
},
"x440-L2-24t" : {
"nodetype" : "namednumber",
"number" : "579"
},
"x440-L2-48t" : {
"nodetype" : "namednumber",
"number" : "580"
},
"x440-24x" : {
"nodetype" : "namednumber",
"number" : "582"
},
"x440-48x" : {
"nodetype" : "namednumber",
"number" : "583"
},
"bdxa-10g48t" : {
"nodetype" : "namednumber",
"number" : "584"
},
"x430-24t" : {
"nodetype" : "namednumber",
"number" : "585"
},
"x430-48t" : {
"nodetype" : "namednumber",
"number" : "586"
},
"x440-24tdc" : {
"nodetype" : "namednumber",
"number" : "587"
},
"x440-48tdc" : {
"nodetype" : "namednumber",
"number" : "588"
},
"x770-32q" : {
"nodetype" : "namednumber",
"number" : "589"
},
"x670G2-48x-4q" : {
"nodetype" : "namednumber",
"number" : "590"
},
"x670G2-72x" : {
"nodetype" : "namednumber",
"number" : "591"
},
"x460G2-24t-10G4" : {
"nodetype" : "namednumber",
"number" : "592"
},
"x460G2-24p-10G4" : {
"nodetype" : "namednumber",
"number" : "593"
},
"x460G2-24x-10G4" : {
"nodetype" : "namednumber",
"number" : "594"
},
"x460G2-48t-10G4" : {
"nodetype" : "namednumber",
"number" : "595"
},
"x460G2-48p-10G4" : {
"nodetype" : "namednumber",
"number" : "596"
},
"x460G2-48x-10G4" : {
"nodetype" : "namednumber",
"number" : "597"
},
"bdxb-40g12x-xl" : {
"nodetype" : "namednumber",
"number" : "600"
},
"bdxb-100g4x-xl" : {
"nodetype" : "namednumber",
"number" : "601"
},
"x430-8p" : {
"nodetype" : "namednumber",
"number" : "602"
},
"x430-24p" : {
"nodetype" : "namednumber",
"number" : "603"
},
"bdxb-100g4x" : {
"nodetype" : "namednumber",
"number" : "604"
},
"ctr-8440" : {
"nodetype" : "namednumber",
"number" : "605"
},
"x450-G2-24t" : {
"nodetype" : "namednumber",
"number" : "606"
},
"x450-G2-24p" : {
"nodetype" : "namednumber",
"number" : "607"
},
"x450-G2-48t" : {
"nodetype" : "namednumber",
"number" : "608"
},
"x450-G2-48p" : {
"nodetype" : "namednumber",
"number" : "609"
},
"x450-G2-24t-GE4" : {
"nodetype" : "namednumber",
"number" : "610"
},
"x450-G2-24p-GE4" : {
"nodetype" : "namednumber",
"number" : "611"
},
"x450-G2-48t-GE4" : {
"nodetype" : "namednumber",
"number" : "612"
},
"x450-G2-48p-GE4" : {
"nodetype" : "namednumber",
"number" : "613"
},
"x460G2-24t-G4" : {
"nodetype" : "namednumber",
"number" : "614"
},
"x460G2-24p-G4" : {
"nodetype" : "namednumber",
"number" : "615"
},
"x460G2-48t-G4" : {
"nodetype" : "namednumber",
"number" : "616"
},
"x460G2-48p-G4" : {
"nodetype" : "namednumber",
"number" : "617"
},
"x440G2-48p-10G4" : {
"nodetype" : "namednumber",
"number" : "618"
},
"x440G2-48t-10G4" : {
"nodetype" : "namednumber",
"number" : "619"
},
"x440G2-48t-10G4-DC" : {
"nodetype" : "namednumber",
"number" : "620"
},
"x440G2-24p-10G4" : {
"nodetype" : "namednumber",
"number" : "621"
},
"x440G2-24t-10G4" : {
"nodetype" : "namednumber",
"number" : "622"
},
"x440G2-24t-10G4-DC" : {
"nodetype" : "namednumber",
"number" : "623"
},
"x440G2-24x-10G4" : {
"nodetype" : "namednumber",
"number" : "624"
},
"x440G2-12p-10GE4" : {
"nodetype" : "namednumber",
"number" : "625"
},
"x440G2-12t-10GE4" : {
"nodetype" : "namednumber",
"number" : "626"
},
"x440G2-12t8fx-G4" : {
"nodetype" : "namednumber",
"number" : "627"
},
"x440G2-24t-G4" : {
"nodetype" : "namednumber",
"number" : "628"
},
"x440G2-24fx-G4" : {
"nodetype" : "namednumber",
"number" : "629"
},
"bdxa-48t" : {
"nodetype" : "namednumber",
"number" : "630"
},
"bdxa-48x" : {
"nodetype" : "namednumber",
"number" : "631"
},
"bdxa-48x-0" : {
"nodetype" : "namednumber",
"number" : "632"
},
"x620-16t" : {
"nodetype" : "namednumber",
"number" : "633"
},
"x620-16p" : {
"nodetype" : "namednumber",
"number" : "634"
},
"x620-16x" : {
"nodetype" : "namednumber",
"number" : "635"
},
"x620-10x" : {
"nodetype" : "namednumber",
"number" : "636"
},
"x620-8t-2x" : {
"nodetype" : "namednumber",
"number" : "637"
},
"x8900msm96" : {
"nodetype" : "namednumber",
"number" : "638"
},
"x870-32c" : {
"nodetype" : "namednumber",
"number" : "639"
},
"x870-96x-8c" : {
"nodetype" : "namednumber",
"number" : "640"
},
"x690-48t-4q-2c" : {
"nodetype" : "namednumber",
"number" : "644"
},
"x690-48x-4q-2c" : {
"nodetype" : "namednumber",
"number" : "645"
},
"x460-G2-16mp-32p-10GE4" : {
"nodetype" : "namednumber",
"number" : "646"
},
"x460G2-24p-24hp" : {
"nodetype" : "namednumber",
"number" : "647"
},
"x460G2-24t-24ht" : {
"nodetype" : "namednumber",
"number" : "648"
},
"v400-24t-10GE2" : {
"nodetype" : "namednumber",
"number" : "650"
},
"v400-24p-10GE2" : {
"nodetype" : "namednumber",
"number" : "651"
},
"v400-48t-10GE4" : {
"nodetype" : "namednumber",
"number" : "652"
},
"v400-48p-10GE4" : {
"nodetype" : "namednumber",
"number" : "653"
},
"xtremeWhitebox" : {
"nodetype" : "namednumber",
"number" : "656"
},
"x695-48y-8c" : {
"nodetype" : "namednumber",
"number" : "660"
},
"x590-24t-1q-2c" : {
"nodetype" : "namednumber",
"number" : "661"
},
"x590-24x-1q-2c" : {
"nodetype" : "namednumber",
"number" : "662"
},
"x465-48t" : {
"nodetype" : "namednumber",
"number" : "663"
},
"x465-48p" : {
"nodetype" : "namednumber",
"number" : "664"
},
"x465-48w" : {
"nodetype" : "namednumber",
"number" : "665"
},
"x465-24mu" : {
"nodetype" : "namednumber",
"number" : "666"
},
"x465-24mu-24w" : {
"nodetype" : "namednumber",
"number" : "667"
},
"x465-24w" : {
"nodetype" : "namednumber",
"number" : "670"
},
"x725-48y" : {
"nodetype" : "namednumber",
"number" : "671"
},
"v300-8p-2t-w" : {
"nodetype" : "namednumber",
"number" : "672"
},
"v300-8p-2x" : {
"nodetype" : "namednumber",
"number" : "673"
},
"v300-8t-2x" : {
"nodetype" : "namednumber",
"number" : "674"
},
"v300ht-8p-2x" : {
"nodetype" : "namednumber",
"number" : "675"
},
"v300ht-8t-2x" : {
"nodetype" : "namednumber",
"number" : "676"
},
"x465-24xe" : {
"nodetype" : "namednumber",
"number" : "677"
},
"x465-24s" : {
"nodetype" : "namednumber",
"number" : "678"
},
"x435-24p-4s" : {
"nodetype" : "namednumber",
"number" : "679"
},
"x435-24t-4s" : {
"nodetype" : "namednumber",
"number" : "680"
},
"x435-8p-4s" : {
"nodetype" : "namednumber",
"number" : "681"
},
"x435-8t-4s" : {
"nodetype" : "namednumber",
"number" : "682"
},
"x435-8p-2t-w" : {
"nodetype" : "namednumber",
"number" : "683"
},
"x465i-48w" : {
"nodetype" : "namednumber",
"number" : "684"
},
"description" :
"""The type of the slot. It is used both for the configured
as well as the inserted slot types.""",
},
"PowerValue" : {
"basetype" : "Enumeration",
"status" : "current",
"v110" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v220" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v48DC" : {
"nodetype" : "namednumber",
"number" : "3"
},
"unknown" : {
"nodetype" : "namednumber",
"number" : "4"
},
"description" :
"""The input power value of the switch.""",
},
"UnitMultiplier" : {
"basetype" : "Enumeration",
"status" : "current",
"yocto" : {
"nodetype" : "namednumber",
"number" : "-24"
},
"zepto" : {
"nodetype" : "namednumber",
"number" : "-21"
},
"atto" : {
"nodetype" : "namednumber",
"number" : "-18"
},
"femto" : {
"nodetype" : "namednumber",
"number" : "-15"
},
"pico" : {
"nodetype" : "namednumber",
"number" : "-12"
},
"nano" : {
"nodetype" : "namednumber",
"number" : "-9"
},
"micro" : {
"nodetype" : "namednumber",
"number" : "-6"
},
"milli" : {
"nodetype" : "namednumber",
"number" : "-3"
},
"units" : {
"nodetype" : "namednumber",
"number" : "0"
},
"kilo" : {
"nodetype" : "namednumber",
"number" : "3"
},
"mega" : {
"nodetype" : "namednumber",
"number" : "6"
},
"giga" : {
"nodetype" : "namednumber",
"number" : "9"
},
"tera" : {
"nodetype" : "namednumber",
"number" : "12"
},
"peta" : {
"nodetype" : "namednumber",
"number" : "15"
},
"exa" : {
"nodetype" : "namednumber",
"number" : "18"
},
"zetta" : {
"nodetype" : "namednumber",
"number" : "21"
},
"yotta" : {
"nodetype" : "namednumber",
"number" : "24"
},
"description" :
"""The Unit Multiplier is an integer value that represents
the IEEE 61850 Annex A units multiplier associated with
the integer units used to measure the power or energy.
For example, when used with pmPowerUnitMultiplier, -3
represents 10^-3 or milliwatts.""",
"reference>" :
"""The International System of Units (SI),
National Institute of Standards and Technology,
Spec. Publ. 330, August 1991.""",
},
}, # typedefs
"nodes" : {
"extremeSystem" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1",
"status" : "current",
}, # node
"extremeSystemCommon" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1",
}, # node
"extremeSaveConfiguration" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"saveToPrimary" : {
"nodetype" : "namednumber",
"number" : "1"
},
"saveToSecondary" : {
"nodetype" : "namednumber",
"number" : "2"
},
"saveToCurrent" : {
"nodetype" : "namednumber",
"number" : "3"
},
"factoryDefault" : {
"nodetype" : "namednumber",
"number" : "4"
},
"saveToFile" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""When this object is set, the device will copy the contents
of the configuration database to a buffer and save it to the
persistent store specified by the value of the object. The
save is performed asynchronously, and the snmp agent will
continue to respond to only gets while the save is
taking place. A network management application may use the
extremeSaveStatus object to determine when the asynchronous
save operation has completed and can respond to sets. When
this object is set to value saveToFile(5), the file name should
be indicated with the object extremeSaveConfigurationFileName.
factoryDefault(4) is a read-only value for this object.""",
}, # scalar
"extremeSaveStatus" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"saveInProgress" : {
"nodetype" : "namednumber",
"number" : "1"
},
"saveNotInProgress" : {
"nodetype" : "namednumber",
"number" : "2"
},
"saveNotReady" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This object will return the status of a save operation invoked
by setting the extremeSaveConfiguration object. A network
management application can read this object to determine that a
save operation has completed.""",
}, # scalar
"extremeCurrentConfigInUse" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"primary" : {
"nodetype" : "namednumber",
"number" : "1"
},
"secondary" : {
"nodetype" : "namednumber",
"number" : "2"
},
"other" : {
"nodetype" : "namednumber",
"number" : "3"
},
"factoryDefault" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""Shows which NVRAM configuration store was used at last boot.""",
}, # scalar
"extremeConfigToUseOnReboot" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"primary" : {
"nodetype" : "namednumber",
"number" : "1"
},
"secondary" : {
"nodetype" : "namednumber",
"number" : "2"
},
"other" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Controls which NVRAM configuration store will be used
on next reboot.""",
}, # scalar
"extremeOverTemperatureAlarm" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""Alarm status of overtemperature sensor in device
enclosure.""",
}, # scalar
"extremeCurrentTemperature" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Current temperature in degrees celcius measured inside
device enclosure.""",
}, # scalar
"extremeFanStatusTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.9",
"status" : "current",
"description" :
"""Table of operational status of all internal cooling fans.""",
}, # table
"extremeFanStatusEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.9.1",
"status" : "current",
"linkage" : [
"extremeFanNumber",
],
"description" :
"""Entry in table of all internal cooling fans.""",
}, # row
"extremeFanNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.9.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Identifier of cooling fan, numbered from the front and/or
left side of device.""",
}, # column
"extremeFanOperational" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.9.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""Operational status of a cooling fan.""",
}, # column
"extremeFanEntPhysicalIndex" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.9.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The entity index for this fan entity in the entityPhysicalTable table of the
entity MIB.""",
}, # column
"extremeFanSpeed" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.9.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The speed (RPM) of a cooling fan in the fantray.""",
}, # column
"extremePrimaryPowerOperational" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""Operational status of internal power supply of a device.""",
}, # scalar
"extremeRedundantPowerStatus" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"notPresent" : {
"nodetype" : "namednumber",
"number" : "1"
},
"presentOK" : {
"nodetype" : "namednumber",
"number" : "2"
},
"presentNotOK" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Operational status of an external redundant power supply to a device.""",
}, # scalar
"extremeRedundantPowerAlarm" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""Alarm state of an external redundant power supply to a device.
Alarm state indicates either fan failure or overtemperature
condition.""",
}, # scalar
"extremePrimarySoftwareRev" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "80"
},
],
"range" : {
"min" : "0",
"max" : "80"
},
},
},
"access" : "readonly",
"description" :
"""The software revision of the primary image stored in
this device. This string will have a zero length if
the revision is unknown, invalid or not present. This
will also be reported in RMON2 probeSoftwareRev if this
is the software image currently running in the device.""",
}, # scalar
"extremeSecondarySoftwareRev" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "80"
},
],
"range" : {
"min" : "0",
"max" : "80"
},
},
},
"access" : "readonly",
"description" :
"""The software revision of the secondary image stored in
this device. This string will have a zero length if
the revision is unknown, invalid or not present. This
will also be reported in RMON2 probeSoftwareRev if this
is the software image currently running in the device.""",
}, # scalar
"extremeImageToUseOnReboot" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"primary" : {
"nodetype" : "namednumber",
"number" : "1"
},
"secondary" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Controls which image will be used
on next reboot.""",
}, # scalar
"extremeSystemID" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "126"
},
],
"range" : {
"min" : "0",
"max" : "126"
},
},
},
"access" : "readonly",
"description" :
"""This represents the System ID of the Summit Switch.""",
}, # scalar
"extremeSystemBoardID" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "126"
},
],
"range" : {
"min" : "0",
"max" : "126"
},
},
},
"access" : "readonly",
"description" :
"""This represents the Board ID of the Summit Switch.""",
}, # scalar
"extremeSystemLeftBoardID" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.18",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "126"
},
],
"range" : {
"min" : "0",
"max" : "126"
},
},
},
"access" : "readonly",
"description" :
"""This represents the Left Board ID of the Summit Switch.""",
}, # scalar
"extremeSystemRightBoardID" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.19",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "126"
},
],
"range" : {
"min" : "0",
"max" : "126"
},
},
},
"access" : "readonly",
"description" :
"""This represents the Right Board ID of the Summit Switch.""",
}, # scalar
"extremeInputPowerVoltage" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.20",
"status" : "current",
"syntax" : {
"type" : { "module" :"EXTREME-SYSTEM-MIB", "name" : "PowerValue"},
},
"access" : "readonly",
"description" :
"""The input power voltage at which the system is currently operating.""",
}, # scalar
"extremePowerStatus" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.21",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"notPresent" : {
"nodetype" : "namednumber",
"number" : "1"
},
"presentOK" : {
"nodetype" : "namednumber",
"number" : "2"
},
"presentNotOK" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Operational status of the power supply to a device.""",
}, # scalar
"extremePowerAlarm" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.22",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""Alarm state of the power supply to a device.
Alarm state indicates either fan failure or overtemperature
condition.""",
}, # scalar
"extremeRmonEnable" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.23",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""Setting this to true will cause the agent to
start collecting RMON statistics.""",
}, # scalar
"extremeBootROMVersion" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.25",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "15"
},
],
"range" : {
"min" : "0",
"max" : "15"
},
},
},
"access" : "readonly",
"description" :
"""The software revision of the bootrom on the device.
This string will have a zero length if the revision is
unknown or invalid.""",
}, # scalar
"extremeDot1dTpFdbTableEnable" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.26",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""Setting this to true will cause GetNext operations on the dot1dTpFdbTable to be allowed. Note that Get operations are always allowed.""",
}, # scalar
"extremePowerSupplyTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27",
"status" : "current",
"description" :
"""Table of status of all power supplies in the system.""",
}, # table
"extremePowerSupplyEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1",
"status" : "current",
"linkage" : [
"extremePowerSupplyNumber",
],
"description" :
"""An entry indicating the status of a specific power supply.""",
}, # row
"extremePowerSupplyNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Power supply number.""",
}, # column
"extremePowerSupplyStatus" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"notPresent" : {
"nodetype" : "namednumber",
"number" : "1"
},
"presentOK" : {
"nodetype" : "namednumber",
"number" : "2"
},
"presentNotOK" : {
"nodetype" : "namednumber",
"number" : "3"
},
"presentPowerOff" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""Status of the power supply.""",
}, # column
"extremePowerSupplyInputVoltage" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"EXTREME-SYSTEM-MIB", "name" : "PowerValue"},
},
"access" : "readonly",
"description" :
"""Input voltage of the power supply""",
}, # column
"extremePowerSupplySerialNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "126"
},
],
"range" : {
"min" : "0",
"max" : "126"
},
},
},
"access" : "readonly",
"description" :
""" The serial number of the power supply unit.""",
}, # column
"extremePowerSupplyEntPhysicalIndex" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""" The entity index for this psu entity in the entityPhysicalTable
of the entity MIB.""",
}, # column
"extremePowerSupplyFan1Speed" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"noRPMInfo" : {
"nodetype" : "namednumber",
"number" : "-2"
},
"notPresent" : {
"nodetype" : "namednumber",
"number" : "-1"
},
},
},
"access" : "readonly",
"description" :
""" The speed (RPM) of Fan-1 in the power supply unit.""",
}, # column
"extremePowerSupplyFan2Speed" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"noRPMInfo" : {
"nodetype" : "namednumber",
"number" : "-2"
},
"notPresent" : {
"nodetype" : "namednumber",
"number" : "-1"
},
},
},
"access" : "readonly",
"description" :
""" The speed (RPM) of Fan-2 in the power supply unit.""",
}, # column
"extremePowerSupplySource" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ac" : {
"nodetype" : "namednumber",
"number" : "2"
},
"dc" : {
"nodetype" : "namednumber",
"number" : "3"
},
"externalPowerSupply" : {
"nodetype" : "namednumber",
"number" : "4"
},
"internalRedundant" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
""" The power supply unit input source.""",
}, # column
"extremePowerSupplyInputPowerUsage" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""" Input power usage for the given psu slot. The value 0 in this field indicate the power usage is not supported or read failure.""",
}, # column
"extremePowerMonSupplyNumOutput" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.27.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""" Number of output sensors in the power supply unit""",
}, # column
"extremePowerSupplyInputPowerUsageUnitMultiplier" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.37.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"EXTREME-SYSTEM-MIB", "name" : "UnitMultiplier"},
},
"access" : "readonly",
"description" :
""" The magnitude of watts for the usage value in extremePowerSupplyInputPowerUsage.""",
}, # column
"extremeCpuAggregateUtilization" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.28",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The aggregate CPU utilization since
the time the start started executing.""",
}, # scalar
"extremeCpuTask2Table" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.29",
"status" : "deprecated",
"description" :
"""Table of CPU tasks that are active.""",
}, # table
"extremeCpuTask2Entry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.1",
"status" : "deprecated",
"linkage" : [
"extremeCpuTask2CpuId",
"extremeCpuTask2Name",
],
"description" :
"""An entry in table of describes a single task.""",
}, # row
"extremeCpuTask2CpuId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.29.1.1",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "noaccess",
"description" :
"""CPU on which this task last executed or is executing.
The primary CPU has a value of 1.""",
}, # column
"extremeCpuTask2Name" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.1.2",
"status" : "deprecated",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "31"
},
],
"range" : {
"min" : "0",
"max" : "31"
},
},
},
"access" : "noaccess",
"description" :
"""Name associated with the reported task id.""",
}, # column
"extremeCpuTask2Id" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.29.1.3",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""Task identifier assigned by the operating system when
this task is spawned.""",
}, # column
"extremeCpuTask2Pc" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.29.1.4",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""The value of the program counter for this task.
It indicates the address of the next instruction
that would be executed once the operating system
resumes this task.""",
}, # column
"extremeCpuTask2Status" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.29.1.5",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The current status of the task as reported by the
operating system.""",
}, # column
"extremeCpuTask2Utilization" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.29.1.6",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readonly",
"description" :
"""The current CPU utilization by this task. This
is the utilization when the task last executed.""",
}, # column
"extremeCpuTask2MaxUtilization" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.29.1.7",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"", "name" : "Unsigned32"},
},
"access" : "readwrite",
"description" :
"""The maximum CPU utilization by this task since
the time the start started executing. This value
may be cleared.""",
}, # column
"extremeAuthFailSrcAddr" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.30",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "notifyonly",
"description" :
"""The IP address of the originator of the bad SNMP
request that caused the generation of an authentication
failure trap.""",
}, # scalar
"extremeCpuTransmitPriority" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.31",
"status" : "deprecated",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"normal" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The CPU transmit priority.""",
}, # scalar
"extremeImageBooted" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.32",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"primary" : {
"nodetype" : "namednumber",
"number" : "1"
},
"secondary" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The image with which the switch was last booted, using which it is currently running.""",
}, # scalar
"extremeMsmFailoverCause" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.33",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"never" : {
"nodetype" : "namednumber",
"number" : "1"
},
"admin" : {
"nodetype" : "namednumber",
"number" : "2"
},
"exception" : {
"nodetype" : "namednumber",
"number" : "3"
},
"removal" : {
"nodetype" : "namednumber",
"number" : "4"
},
"hwFailure" : {
"nodetype" : "namednumber",
"number" : "5"
},
"watchdog" : {
"nodetype" : "namednumber",
"number" : "6"
},
"keepalive" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""The cause of the last MSM failover. never(1) means an
MSM Failover has not occurred since the last reboot.
admin(2) means the failover was initiated by the user.
exception(3) means the former master MSM encountered a
software exception condition. removal(4) means the master
MSM was physically removed from the chassis. hwFailure(5)
means a diagnostic failure was detected in the master MSM.
watchdog(6) means that the master MSM hardware watchdog
timer expired. keepalive(7) means the master MSM failed to
respond to slave keepalive requests. The MSM failover will
have been hitless only in the admin(2) and exception(3)
cases """,
}, # scalar
"extremeImageTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34",
"status" : "current",
"description" :
"""A table containing information about each software image.""",
}, # table
"extremeImageEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1",
"status" : "current",
"linkage" : [
"extremeImageNumber",
],
"description" :
"""A table entry containing information about each software image.""",
}, # row
"extremeImageNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"cur" : {
"nodetype" : "namednumber",
"number" : "0"
},
"pri" : {
"nodetype" : "namednumber",
"number" : "1"
},
"sec" : {
"nodetype" : "namednumber",
"number" : "2"
},
"curr" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""A unique integer identifying the particular software
image.""",
}, # column
"extremeMajorVersion" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The ExtremeWare Release Major Version.""",
}, # column
"extremeSubMajorVersion" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.3",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The ExtremeWare Release Sub-major Version.""",
}, # column
"extremeMinorVersion" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The ExtremeWare Release Minor Version.""",
}, # column
"extremeBuildNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The ExtremeWare Build Number.""",
}, # column
"extremeTechnologyReleaseNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The Technology Release version. This value is zero for
all but TR releases.""",
}, # column
"extremeSustainingReleaseNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The Sustaining Release number for the ExtremeWare version.""",
}, # column
"extremeBranchRevisionNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The incremental build on specified branch.""",
}, # column
"extremeImageType" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"trunk" : {
"nodetype" : "namednumber",
"number" : "0"
},
"branch" : {
"nodetype" : "namednumber",
"number" : "1"
},
"patch" : {
"nodetype" : "namednumber",
"number" : "2"
},
"technology" : {
"nodetype" : "namednumber",
"number" : "3"
},
"beta" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The branch type from which the image was built.""",
}, # column
"extremeImageDescription" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""A unique string that can be used to identify the specific patch,
technology, or development branch release.""",
}, # column
"extremeImageSecurity" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.34.1.11",
"status" : "deprecated",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "0"
},
"nossh" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Indicates whether image was built with ssh. This object
is deprecated, the ssh capability can be obtained from
the extremeImageSshCapability of the ImageFeatureTable""",
}, # column
"extremePatchVersion" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The ExtremeWare Release Patch Version.""",
}, # column
"extremeImageFeatureTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.35",
"status" : "current",
"description" :
"""A table containing information about the software features.""",
}, # table
"extremeImageFeatureEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.58.3.1",
"status" : "current",
"linkage" : [
"extremeImageFeatureNumber",
],
"description" :
"""A table entry containing information about software features.""",
}, # row
"extremeImageFeatureNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.35.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"cur" : {
"nodetype" : "namednumber",
"number" : "0"
},
"pri" : {
"nodetype" : "namednumber",
"number" : "1"
},
"sec" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""A unique integer identifying the particular software
image.""",
}, # column
"extremeImageSshCapability" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.35.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "0"
},
"nossh" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Indicates whether image has ssh capability.""",
}, # column
"extremeImageUAACapability" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.35.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "0"
},
"nouaa" : {
"nodetype" : "namednumber",
"number" : "1"
},
"uaa" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Indicates whether image has Wireless(UAA) components.""",
}, # column
"extremeSystemPowerState" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.36",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"computing" : {
"nodetype" : "namednumber",
"number" : "1"
},
"sufficientButNotRedundantPower" : {
"nodetype" : "namednumber",
"number" : "2"
},
"redundantPowerAvailable" : {
"nodetype" : "namednumber",
"number" : "3"
},
"insufficientPower" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The current state of power available.""",
}, # scalar
"extremeBootTime" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.37",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
""" The boot time expressed in standard time_t value.
When interpreted as an absolute time value, it
represents the number of seconds elapsed since 00:00:00
on January 1, 1970, Coordinated Universal Time (UTC)""",
}, # scalar
"extremePowerSupplyOutputPowerTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.38",
"status" : "current",
"description" :
"""The output power supply table per power supply unit.""",
}, # table
"extremePowerSupplyOutputPowerEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.38.1",
"status" : "current",
"linkage" : [
"extremePowerSupplyIndex",
"extremePowerSupplyOutputSensorIdx",
],
"description" :
"""An entry in the power supply output table.""",
}, # row
"extremePowerSupplyIndex" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.38.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Power supply unit slot index""",
}, # column
"extremePowerSupplyOutputSensorIdx" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.38.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Power supply Sensor Index""",
}, # column
"extremePowerSupplyOutputVoltage" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.38.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Output voltage per sensor for the current psu slot no.
0 in this field tells the psu doesnt support output voltage reading or output voltage read error.""",
}, # column
"extremePowerSupplyOutputCurrent" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.38.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Output current per sensor for the current psu slot no.
0 in this field tells the psu doesnt support output current reading or output current read error.""",
}, # column
"extremePowerSupplyOutputUnitMultiplier" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.38.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"EXTREME-SYSTEM-MIB", "name" : "UnitMultiplier"},
},
"access" : "readonly",
"description" :
"""The magnitude of volts and amps for the usage value in extremePowerSupplyOutputVoltage and
extremePowerSupplyOutputCurrent.""",
}, # column
"extremePowerSupplyUsageTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12",
"status" : "current",
"description" :
"""The power supply usage on each slot.""",
}, # table
"extremePowerSupplyUsageEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.39.1",
"status" : "current",
"linkage" : [
"extremeSlotIndex",
],
"description" :
"""An entry in the power supply usage table.""",
}, # row
"extremeSlotIndex" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.39.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Slot number in the chassis/stack based system.""",
}, # column
"extremePowerSupplyUsageValue" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.39.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Power Usage of the particular slot in the chassis or stack.The power usage is measured in milli-watts.""",
}, # column
"extremePowerSupplyUnitMultiplier" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.39.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"EXTREME-SYSTEM-MIB", "name" : "UnitMultiplier"},
},
"access" : "readonly",
"description" :
"""The magnitude of watts for the usage value in extremePowerSupplyUsageValue.""",
}, # column
"extremeSystemPowerUsage" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12",
}, # node
"extremeSystemPowerUsageValue" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The current power usage of the system.In stack mode this variables tells total power usage
of the entire system.""",
}, # scalar
"extremeSystemPowerUsageUnitMultiplier" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"EXTREME-SYSTEM-MIB", "name" : "UnitMultiplier"},
},
"access" : "readonly",
"description" :
"""The magnitude of watts for the usage value in extremeSystemPowerUsageValue.""",
}, # scalar
"extremeSystemPowerMonitorTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.41",
"status" : "current",
"description" :
"""The output power supply table per power supply unit.""",
}, # table
"extremeSystemPowerMonitorEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.41.1",
"status" : "current",
"linkage" : [
"extremeSystemPowerMonitorIndex1",
],
"description" :
"""An entry in the power supply output table.""",
}, # row
"extremeSystemPowerMonitorIndex1" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Reserved can be used for future expansion. currently set to zero.""",
}, # column
"extremeSystemPowerMonitorPollInterval" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.41.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "300"
},
],
"range" : {
"min" : "0",
"max" : "300"
},
},
},
"access" : "readwrite",
"description" :
"""Configure how often input power is measured. it is configured in seconds. default value is 60 seconds.
if 0 is configured then the input power measurement is disabled""",
}, # column
"extremeSystemPowerMonitorReportChanges" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.41.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"log" : {
"nodetype" : "namednumber",
"number" : "2"
},
"trap" : {
"nodetype" : "namednumber",
"number" : "3"
},
"logandtrap" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""configure report-changes has none or log or trap or log-and-trap, by default none is configured""",
}, # column
"extremeSystemPowerMonitorChangeThreshold" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.41.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""configure input power change-threshold to initiate report-changes action.
By default 2 watts is configured, this field is configured in watts. """,
}, # column
"extremeRebootTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.31.10",
"status" : "current",
"description" :
"""This group of objects use to initiate a device reboot or
contain details of the last reboot operation of the switch
modules or nodes.""",
}, # table
"rebootTimeEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1",
"create" : "true",
"status" : "current",
"linkage" : [
"extremeRebootSlotId",
],
"description" :
"""This group of objects use to initiate a device reboot or
contain details of the last reboot operation of the switch
modules or nodes.""",
}, # row
"extremeRebootSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.31.10.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Specifies the MSM/MM module number of a switch or the slot number currently being
used by the active stack node.""",
}, # column
"extremeRebootNodeAddress" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""Specifies the MAC address of the SummitStack node to be rebooted.
NOTE: This object is valid only for Summit X250e and X450
series switches, and SummitStack.""",
}, # column
"extremeRebootModuleSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""Specifies A or B for an MSM/MM module.
- A specifies the MSM/MM installed in slot A.
- B specifies the MSM/MM installed in slot B.
Note: The modules that can be rebooted are management switch fabric
modules(MSM) and management modules(MM). This object is valid only
on modular switches.""",
}, # column
"extremeRebootSlotNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specifies the slot number currently being used by the active stack
node that is to be rebooted.
Note: This variable is available only on SummitStack.""",
}, # column
"extremeRebootAsStandby" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies that all stack nodes that are to be rebooted
are to operate as if configured to not be master-capable.
NOTE: This object is valid only for Summit X250e
and X450 series switches and SummitStack.""",
}, # column
"extremeRebootStackTopology" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.31.10.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies that the entire SummitStack is to be rebooted
whether or not nodes are active.
NOTE: This object is valid only for Summit X250e and
X450 series switches and SummitStack. """,
}, # column
"extremeRebootMonth" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.31.10.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "12"
},
],
"range" : {
"min" : "1",
"max" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the month that the reboot is scheduled to start.""",
}, # column
"extremeRebootDay" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.31.10.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the day that the reboot is scheduled to start.""",
}, # column
"extremeRebootYear" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.31.10.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "2003",
"max" : "2036"
},
],
"range" : {
"min" : "2003",
"max" : "2036"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the year that the reboot is scheduled to start.""",
}, # column
"extremeRebootHour" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.172.16.31.10.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "23"
},
],
"range" : {
"min" : "0",
"max" : "23"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the hour that the reboot is scheduled to start.""",
}, # column
"extremeRebootMinute" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "59"
},
],
"range" : {
"min" : "0",
"max" : "59"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the number of minutes that the reboot is scheduled to start.""",
}, # column
"extremeRebootSeconds" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "59"
},
],
"range" : {
"min" : "0",
"max" : "59"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the number of seconds that the reboot is scheduled to start.""",
}, # column
"extremeRebootCancel" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Cancels a previously scheduled reboot.
Note: This object, when enabled, override all objects associated with
a reboot request.""",
}, # column
"extremeRebootImmediate" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates that a reboot should be executed on the target device immediately.""",
}, # column
"extremeRebootRowStatus" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.42.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The existence state of this reboot request. This object
follows the row status behavior.""",
}, # column
"extremeDownloadImageTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43",
"status" : "current",
"description" :
"""This group of objects contain details of the last
or the current download image operation of the switch
modules or nodes.""",
}, # table
"extremeDownloadImageEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1",
"create" : "true",
"status" : "current",
"linkage" : [
"extremeDownloadImageSlotId",
],
"description" :
"""This group of objects contain details of the last
or the current download image operation of one of the switch
modules or nodes.""",
}, # row
"extremeDownloadImageSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "0",
"description" :
"""Specifies the MSM/MM module number of a switch or the slot number currently being
used by the active stack node.""",
}, # column
"extremeDownloadImageStatus" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"downloadInProgress" : {
"nodetype" : "namednumber",
"number" : "1"
},
"downloadOperationSuccess" : {
"nodetype" : "namednumber",
"number" : "2"
},
"downloadNotPrimary" : {
"nodetype" : "namednumber",
"number" : "3"
},
"downloadNameLengthError" : {
"nodetype" : "namednumber",
"number" : "4"
},
"downloadInvalidFileType" : {
"nodetype" : "namednumber",
"number" : "5"
},
"downloadActivePartitionError" : {
"nodetype" : "namednumber",
"number" : "6"
},
"downloadIllegalHostname" : {
"nodetype" : "namednumber",
"number" : "7"
},
"downloadFailed" : {
"nodetype" : "namednumber",
"number" : "8"
},
"downloadInvalidIpaddr" : {
"nodetype" : "namednumber",
"number" : "9"
},
"downloadMemAllocFailed" : {
"nodetype" : "namednumber",
"number" : "10"
},
"downloadNotInActiveTop" : {
"nodetype" : "namednumber",
"number" : "11"
},
"downloadMissingFileName" : {
"nodetype" : "namednumber",
"number" : "12"
},
"downloadIllegalFileName" : {
"nodetype" : "namednumber",
"number" : "13"
},
"downloadOperationTimeout" : {
"nodetype" : "namednumber",
"number" : "14"
},
"downloadInvalidRowStatus" : {
"nodetype" : "namednumber",
"number" : "15"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the status of the current down load operation.""",
}, # column
"extremeDownloadImageFilename" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the file name of the downloading EXOS image.""",
}, # column
"extremeDownloadImagePartition" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"primary" : {
"nodetype" : "namednumber",
"number" : "1"
},
"secondary" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies which partition the image should be saved
to primary or secondary. Select primary to save the
image to the primary partition and secondary to save
the image to the secondary partition.
Note: Beginning with ExtremeXOS 12.1, an ExtremeXOS core
image must be installed on the alternate (nonactive)
partition. If a user tries to install on an active partition,
the error message [Error: Image can only be installed
to the non-active partition.] is displayed.""",
}, # column
"extremeDownloadImageHostName" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the hostname of the TFTP server from which the
image should be obtained.""",
}, # column
"extremeDownloadImageIpaddress" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the IP address of the TFTP server from which the
image should be obtained.""",
}, # column
"extremeDownloadImageStartTime" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "31"
},
],
"range" : {
"min" : "0",
"max" : "31"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the start time (date and time) of the current down load operation.""",
}, # column
"extremeDownloadImageMemorycard" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies that the image should be obtained from a removable
storage device, which can be a compact flash card or a USB 2.0
storage device.""",
}, # column
"extremeDownloadImageInstall" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies to start the install process after the successful download of
the image.""",
}, # column
"extremeDownloadSlotNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "8"
},
],
"range" : {
"min" : "1",
"max" : "8"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the slot number currently being used by the active stack
node that is to be rebooted.
Note: This variable is available only on stackable switches in a stack.""",
}, # column
"extremeDownloadModuleSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""Specifies A or B for an MSM/MM module.
- A specifies the MSM/MM installed in slot A.
- B specifies the MSM/MM installed in slot B.
Note: The modules that can be rebooted are management switch fabric
modules(MSM) and management modules(MM). This object is valid only
on modular switches.""",
}, # column
"extremeDownloadRowStatus" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The existence state of this download image request. This object
follows the row status behavior.""",
}, # column
"extremeDownloadBlockSize" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.43.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "24",
"max" : "65000"
},
],
"range" : {
"min" : "24",
"max" : "65000"
},
},
},
"access" : "readwrite",
"default" : "1400",
"description" :
"""Specifies the TFTP block-size to download image from the server""",
}, # column
"extremeInstallImageTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11",
"status" : "current",
"description" :
"""This group of objects contain details of the last
or the current install image operation of the switch
modules or nodes.""",
}, # table
"extremeInstallImageEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1",
"create" : "true",
"status" : "current",
"linkage" : [
"extremeInstallImageSlotId",
],
"description" :
"""This group of objects contain details of the last
or the current install image operation of one of the switch
modules or nodes.""",
}, # row
"extremeInstallImageSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"default" : "0",
"description" :
"""Specifies the MSM/MM module number of a switch or the slot number currently being
used by the active stack node.""",
}, # column
"extremeInstallImageStatus" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"installInProgress" : {
"nodetype" : "namednumber",
"number" : "1"
},
"installOperationSuccess" : {
"nodetype" : "namednumber",
"number" : "2"
},
"installOperationPending" : {
"nodetype" : "namednumber",
"number" : "3"
},
"installNameLengthError" : {
"nodetype" : "namednumber",
"number" : "4"
},
"installInvalidFileType" : {
"nodetype" : "namednumber",
"number" : "5"
},
"installActivePartitionError" : {
"nodetype" : "namednumber",
"number" : "6"
},
"installDwnloadSlotMismatch" : {
"nodetype" : "namednumber",
"number" : "7"
},
"installFailed" : {
"nodetype" : "namednumber",
"number" : "8"
},
"installNotPrimary" : {
"nodetype" : "namednumber",
"number" : "9"
},
"installMemAllocFailed" : {
"nodetype" : "namednumber",
"number" : "10"
},
"installNotInActiveTop" : {
"nodetype" : "namednumber",
"number" : "11"
},
"installMissingFileName" : {
"nodetype" : "namednumber",
"number" : "12"
},
"installIllegalFileName" : {
"nodetype" : "namednumber",
"number" : "13"
},
"installOperationTimeout" : {
"nodetype" : "namednumber",
"number" : "14"
},
"installOperBackupTimeout" : {
"nodetype" : "namednumber",
"number" : "15"
},
"installInvalidRowStatus" : {
"nodetype" : "namednumber",
"number" : "16"
},
},
},
"access" : "readonly",
"description" :
"""Specifies the status of the current install image operation.""",
}, # column
"extremeInstallImageFilename" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the software image file.""",
}, # column
"extremeInstallImagePartition" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"primary" : {
"nodetype" : "namednumber",
"number" : "1"
},
"secondary" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies which partition the image should be saved
to: primary or secondary. Select primary to save the
image to the primary partition and secondary to save
the image to the secondary partition.
Note: Beginning with ExtremeXOS 12.1, an ExtremeXOS core
image must be installed on the alternate (nonactive)
partition. If a user tries to install on an active partition,
the error message [Error: Image can only be installed
to the non-active partition.] is displayed.""",
}, # column
"extremeInstallImageStartTime" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "31"
},
],
"range" : {
"min" : "0",
"max" : "31"
},
},
},
"access" : "readonly",
"description" :
"""Specifies the start time of the current install operation.""",
}, # column
"extremeInstallImageReboot" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies to reboot the switch after the image is installed.""",
}, # column
"extremeInstallImageModuleSlotId" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""Specifies A or B for an MSM/MM module.
- A specifies the MSM/MM installed in slot A.
- B specifies the MSM/MM installed in slot B.
Note: The modules that can be rebooted are management switch fabric
modules(MSM) and management modules(MM). This object is valid only
on modular switches.""",
}, # column
"extremeInstallImageSlotNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.3.11.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "8"
},
],
"range" : {
"min" : "1",
"max" : "8"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the slot number currently being used by the active stack
node that is to be rebooted.
Note: This variable is available only on stackable switches in a stack.""",
}, # column
"extremeInstallImageRowStatus" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.44.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The existence state of this install image request. This object
follows the row status behavior.""",
}, # column
"extremeLoadInstallTrap" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12",
}, # node
"loadInstallControl" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.45.1",
}, # node
"downloadImageTrapEnable" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.45.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"yes" : {
"nodetype" : "namednumber",
"number" : "1"
},
"no" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This variable indicates whether the system produces the
downloadImageTrap notification. A no(2) value will prevent
notifications from being generated by this system.""",
}, # scalar
"installImageTrapEnable" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.45.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"yes" : {
"nodetype" : "namednumber",
"number" : "1"
},
"no" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This variable indicates whether the system produces the
extremeInstallImageTrap notification. A no(2) value will prevent
notifications from being generated by this system.""",
}, # scalar
"loadInstallTraps" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.45.2",
}, # node
"extremeSaveConfigurationFileName" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.48",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "127"
},
],
"range" : {
"min" : "0",
"max" : "127"
},
},
},
"access" : "readwrite",
"description" :
""" This object is set, along the object extremSaveConfiguration
option with value 5.This object indicates the file name to be used
while saving the file. On reading it returns the current selected
config.""",
}, # scalar
"extremeUseOnRebootFileName" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.49",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "127"
},
],
"range" : {
"min" : "0",
"max" : "127"
},
},
},
"access" : "readwrite",
"description" :
""" This object is set, along the object extremeConfigToUseOnReboot
option with value 3.This object indicates the file name to be used
while saving the file""",
}, # scalar
"extremeAuthFailSrcAddressType" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.50",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
},
"access" : "notifyonly",
"description" :
"""This object indicates the address type of the
address contained in extremeAuthFailSrcAddr.""",
}, # scalar
"extremeAuthFailSrcAddress" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.51",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "notifyonly",
"description" :
"""The address of the originator of the SNMP message that
could not be authenticated.""",
}, # scalar
"extremeAuthFailSrcAddressVrName" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.52",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "notifyonly",
"description" :
"""The VR from which the SNMP message that could
not be authenticated was received from.""",
}, # scalar
"extremeAutoSave" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.53",
}, # node
"extremeAutoSaveConfigurationFileName" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.53.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "63"
},
],
"range" : {
"min" : "0",
"max" : "63"
},
},
},
"access" : "readwrite",
"description" :
""" This object indicates the file name to be used when configuration
is automatically saved. On reading it returns the file name currently
being used for automatic configuration saves.""",
}, # scalar
"extremeAutoSaveConfigurationEnabled" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.53.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disable" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Enable automatic configuration save. On reading it returns the current
state of automatic configuration save.""",
}, # scalar
"extremeAutoSaveConfigurationTimeInterval" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.53.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "2",
"max" : "1440"
},
],
"range" : {
"min" : "2",
"max" : "1440"
},
},
},
"access" : "readwrite",
"description" :
"""Configure how often configuration is automatically saved. It is configured
in minutes.""",
}, # scalar
"extremeChassisGroup" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2",
}, # node
"extremeMasterMSMSlot" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The extremeSlotNumber of the master MSM module.""",
}, # scalar
"extremeSlotTable" : {
"nodetype" : "table",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.2",
"status" : "current",
"description" :
"""A table containing information about each slot in the
chassis.""",
}, # table
"extremeSlotEntry" : {
"nodetype" : "row",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.2.1",
"status" : "current",
"linkage" : [
"extremeSlotNumber",
],
"description" :
"""A table entry containing information about the module in
each slot of the chassis.""",
}, # row
"extremeSlotNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""A unique integer identifying the particular slot
in the chassis.""",
}, # column
"extremeSlotName" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""A name identifying the particular slot in the chassis.""",
}, # column
"extremeSlotModuleConfiguredType" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"EXTREME-SYSTEM-MIB", "name" : "SlotType"},
},
"access" : "readwrite",
"description" :
"""The configured module type for the given slot.
At startup, the module-type is none(1). It is
possible to configure the module-type even if there
is no module in the slot. If the current module in the
slot is different than the requested configured module-type,
then the current configuration for the module is erased and
the card will be restarted. The new configured module-type
will be recorded. Since the configured module type is different
than the actual module type, a moduleMismatch trap will be sent,
and the extremeSlotModuleState for that module will show a
mismatch(3). Setting this variable to none(1) will clear the
previously assigned module-type of this slot, and all
configuration information related to the slot will be erased.""",
}, # column
"extremeSlotModuleInsertedType" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"EXTREME-SYSTEM-MIB", "name" : "SlotType"},
},
"access" : "readonly",
"description" :
"""The module type inserted into the slot. It is possible
to have a slot inserted into the slot even though
extremeSlotConfiguredType is none(1).""",
}, # column
"extremeSlotModuleState" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"notPresent" : {
"nodetype" : "namednumber",
"number" : "1"
},
"testing" : {
"nodetype" : "namednumber",
"number" : "2"
},
"mismatch" : {
"nodetype" : "namednumber",
"number" : "3"
},
"failed" : {
"nodetype" : "namednumber",
"number" : "4"
},
"operational" : {
"nodetype" : "namednumber",
"number" : "5"
},
"powerdown" : {
"nodetype" : "namednumber",
"number" : "6"
},
"unknown" : {
"nodetype" : "namednumber",
"number" : "7"
},
"present" : {
"nodetype" : "namednumber",
"number" : "8"
},
"poweron" : {
"nodetype" : "namednumber",
"number" : "9"
},
"post" : {
"nodetype" : "namednumber",
"number" : "10"
},
"downloading" : {
"nodetype" : "namednumber",
"number" : "11"
},
"booting" : {
"nodetype" : "namednumber",
"number" : "12"
},
"offline" : {
"nodetype" : "namednumber",
"number" : "13"
},
"initializing" : {
"nodetype" : "namednumber",
"number" : "14"
},
"invalid" : {
"nodetype" : "namednumber",
"number" : "100"
},
},
},
"access" : "readonly",
"description" :
"""The state of the module inserted in this slot.""",
}, # column
"extremeSlotModuleSerialNumber" : {
"nodetype" : "column",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The serial number of the module inserted in this slot.""",
}, # column
"extremeChassisPortsPerSlot" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.2.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum number of ports that can be accomodated
in a single slot. This number would change to accomodate
blades with higher port density than current ones.""",
}, # scalar
"extremeSystemHealthCheck" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.3",
}, # node
"extremeHealthCheckErrorType" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cpuPacket" : {
"nodetype" : "namednumber",
"number" : "2"
},
"backplane" : {
"nodetype" : "namednumber",
"number" : "3"
},
"hardwareFail" : {
"nodetype" : "namednumber",
"number" : "4"
},
"pbusChecksum" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "notifyonly",
"description" :
"""The error reported in the system health check trap""",
}, # scalar
"extremeHealthCheckAction" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.3.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"syslogOnly" : {
"nodetype" : "namednumber",
"number" : "1"
},
"healthCheckTrap" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ioModuleDown" : {
"nodetype" : "namednumber",
"number" : "3"
},
"systemDown" : {
"nodetype" : "namednumber",
"number" : "4"
},
"autoRecovery" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""The action/alarm level configured for health check.""",
}, # scalar
"extremeHealthCheckMaxRetries" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.3.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum number of times a module restart will be attempted if it fails.
If extremeHealthCheckAction is not autorecovery(5), then this value is zero.""",
}, # scalar
"extremeSystemThresholds" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.4",
}, # node
"extremeCpuUtilRisingThreshold" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.4.1",
"status" : "deprecated",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readwrite",
"description" :
"""Rising threshold for CPU Aggregation utilization trap""",
}, # scalar
"extremeCpuTaskUtilPair" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.4.2",
"status" : "deprecated",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "notifyonly",
"description" :
"""TaskName/CPU_% Util pair reported in CPU Utilization trap""",
}, # scalar
"extremeSystemNotifications" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.6",
}, # node
"extremeSystemTrapsPrefix" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.6.0",
}, # node
"extremeGenericTrapParams" : {
"nodetype" : "node",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.7",
}, # node
"severity" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.7.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"critical" : {
"nodetype" : "namednumber",
"number" : "1"
},
"error" : {
"nodetype" : "namednumber",
"number" : "2"
},
"warning" : {
"nodetype" : "namednumber",
"number" : "3"
},
"notice" : {
"nodetype" : "namednumber",
"number" : "4"
},
"info" : {
"nodetype" : "namednumber",
"number" : "5"
},
"debug-summary" : {
"nodetype" : "namednumber",
"number" : "6"
},
"debug-verbose" : {
"nodetype" : "namednumber",
"number" : "7"
},
"debug-data" : {
"nodetype" : "namednumber",
"number" : "8"
},
},
},
"access" : "notifyonly",
"description" :
"""The severity of the message being sent. """,
}, # scalar
"eventName" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.7.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "40"
},
],
"range" : {
"min" : "0",
"max" : "40"
},
},
},
"access" : "notifyonly",
"description" :
"""The event name being sent.""",
}, # scalar
"message" : {
"nodetype" : "scalar",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.7.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "256"
},
],
"range" : {
"min" : "0",
"max" : "256"
},
},
},
"access" : "notifyonly",
"description" :
"""The message being sent""",
}, # scalar
}, # nodes
"notifications" : {
"downloadImageTrap" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.1.45.2.1",
"status" : "current",
"objects" : {
"extremeDownloadImageSlotId" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeDownloadImageStatus" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeDownloadImageFilename" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeDownloadImagePartition" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeDownloadImageStartTime" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
},
"description" :
"""This notification indicates the status of the last/current
download operation.""",
}, # notification
"installImageTrap" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.192.168.127.12.2.2",
"status" : "current",
"objects" : {
"extremeInstallImageSlotId" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeInstallImageStatus" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeInstallImageFilename" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeInstallImagePartition" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeInstallImageStartTime" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
},
"description" :
"""This notification indicates the status of the last/current
install operation.""",
}, # notification
"extremeSystemPowerStatus" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.6.0.1",
"status" : "current",
"objects" : {
"sysDescr" : {
"nodetype" : "object",
"module" : "RFC1213-MIB"
},
"extremeSystemPowerState" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
},
"description" :
"""Change in status of System Power
The trap will not be generated for discovering state.""",
}, # notification
"extremeGenericTrap" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.6.0.2",
"status" : "current",
"objects" : {
"severity" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"eventName" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"message" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
},
"description" :
"""Some event took place in the system""",
}, # notification
"extremePsuPowerStatus" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.6.0.3",
"status" : "current",
"objects" : {
"sysDescr" : {
"nodetype" : "object",
"module" : "RFC1213-MIB"
},
"extremePowerSupplyNumber" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremePowerSupplyStatus" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
},
"description" :
"""Trap to indicate change in status of Power Supply.""",
}, # notification
"extremeSystemPowerUsageNotification" : {
"nodetype" : "notification",
"moduleName" : "EXTREME-SYSTEM-MIB",
"oid" : "1.3.6.1.4.1.1916.1.1.6.0.4",
"status" : "current",
"objects" : {
"sysUpTime" : {
"nodetype" : "object",
"module" : "RFC1213-MIB"
},
"sysDescr" : {
"nodetype" : "object",
"module" : "RFC1213-MIB"
},
"extremeSystemPowerUsageValue" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
"extremeSystemPowerUsageUnitMultiplier" : {
"nodetype" : "object",
"module" : "EXTREME-SYSTEM-MIB"
},
},
"description" :
"""Whenever the power usage is increased/decreased by the configured
threshold value then the power usage trap is generated if the trap is enabled..""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/tplink_sysmonitor.py
|
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.smidumps import get_mib
from twisted.internet import defer
import inspect
class TPLink_Sysmonitor_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('TP_Link_tplink_sysMonitor_mib')
@defer.inlineCallbacks
def get_cpu_loadavg(self):
self._logger.debug(here(self))
result = {}
columns = yield self.retrieve_columns([
'tpSysMonitorCpuUnitNumber',
'tpSysMonitorCpu1Minute',
'tpSysMonitorCpu5Minutes'
])
if columns:
for _, item in columns.items():
unit_no = item.get('tpSysMonitorCpuUnitNumber')
unit_name = 'unit_%d' % unit_no
utilization_1_min = item.get('tpSysMonitorCpu1Minute')
utilization_5_min = item.get('tpSysMonitorCpu5Minutes')
result[unit_name] = [
(1, utilization_1_min),
(5, utilization_5_min)
]
defer.returnValue(result)
def get_cpu_utilization(self):
self._logger.debug(here(self))
return defer.succeed(None)
@defer.inlineCallbacks
def get_memory_usage(self):
self._logger.debug(here(self))
result = {}
columns = yield self.retrieve_columns([
'tpSysMonitorMemoryUnitNumber',
'tpSysMonitorMemoryUtilization'
])
if columns:
for _, item in columns.items():
unit_no = item.get('tpSysMonitorMemoryUnitNumber')
unit_name = 'unit_%d' % unit_no
utilization = item.get('tpSysMonitorMemoryUtilization')
free = 100 - utilization
result[unit_name] = (utilization, free)
defer.returnValue(result)
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/NetPing_DKSF_60_5_2_MB_mib.py
|
<filename>snmp/nav/smidumps/NetPing_DKSF_60_5_2_MB_mib.py<gh_stars>0
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python DKSF-60-4-X-X-X
FILENAME = "mibs/NetPing/[Pub] DKSF 60.5.2 MB.mib"
MIB = {
"moduleName" : "DKSF-60-4-X-X-X",
"DKSF-60-4-X-X-X" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""NetPing East, Alentis Electronics""",
"contact" :
"""<EMAIL>""",
"description" :
"""Generic MIB for NetPing remote sensing and control""",
"revisions" : (
{
"date" : "2016-01-14 00:00",
"description" :
"""npIrStatus values changed""",
},
{
"date" : "2015-09-24 00:00",
"description" :
"""npElecMeter branch added""",
},
{
"date" : "2015-04-09 00:00",
"description" :
"""npRelHumTrap added; npIoTrapLevelLegend added""",
},
{
"date" : "2014-11-21 00:00",
"description" :
"""npRelayFlip variable max-access bugfix""",
},
{
"date" : "2014-10-23 00:00",
"description" :
"""Major update for DKSF 60.4""",
},
{
"date" : "2012-10-09 00:00",
"description" :
"""npTrapEmailTo variable is added in Traps for forwarding to email with external service""",
},
{
"date" : "2012-03-01 00:00",
"description" :
"""npReboot branch is added""",
},
{
"date" : "2011-04-11 00:00",
"description" :
"""npIoPulseCounter, npIoSinglePulseDuration, npIoSinglePulseStart is added
Identification is changed from DKSF 52.3 to DKSF 52.4""",
},
{
"date" : "2011-02-05 00:00",
"description" :
"""npIoCurLoop Traps""",
},
{
"date" : "2011-01-28 00:00",
"description" :
"""DKSF 50.9.1.A-2,-3,-10 - IR module (DKST28) support,
new Trap definitions for npIO and npThermo.
It's NO backward compatibility with DKSF 50.8 on Traps!""",
},
{
"date" : "2010-04-14 00:00",
"description" :
"""SMIv2-style rewrite""",
},
),
"identity node" : "netPing",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "enterprises"},
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "Counter32"},
{"module" : "SNMPv2-SMI", "name" : "Gauge32"},
{"module" : "SNMPv2-SMI", "name" : "Counter64"},
{"module" : "SNMPv2-SMI", "name" : "Integer32"},
{"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
{"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
{"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
{"module" : "SNMPv2-TC", "name" : "DisplayString"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "TimeStamp"},
{"module" : "SNMPv2-MIB", "name" : "snmpTraps"},
),
"nodes" : {
"lightcom" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728",
}, # node
"netPing" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.50",
"status" : "current",
}, # node
"npReboot" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.911",
}, # node
"npSoftReboot" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.911.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Write 1 to reboot device after
current operations completition""",
}, # scalar
"npResetStack" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.911.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Write 1 to re-initialize network
stack""",
}, # scalar
"npForcedReboot" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.911.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Write 1 to immediate forced reboot""",
}, # scalar
"npRelay" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500",
}, # node
"npRelayTable" : {
"nodetype" : "table",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500.5",
"status" : "current",
"description" :
"""Watchdog and outlet/relay control table""",
}, # table
"npRelayEntry" : {
"nodetype" : "row",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500.5.1",
"status" : "current",
"linkage" : [
"npRelayN",
],
"description" :
"""Relay/outlet table row""",
}, # row
"npRelayN" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500.5.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "2"
},
],
"range" : {
"min" : "1",
"max" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The N of output relay""",
}, # column
"npRelayMode" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500.5.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
"watchdog" : {
"nodetype" : "namednumber",
"number" : "2"
},
"schedule" : {
"nodetype" : "namednumber",
"number" : "3"
},
"scheduleAndWatchdog" : {
"nodetype" : "namednumber",
"number" : "4"
},
"logic" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Control of relay:
0 - manual off
1 - manual on
2 - watchdog
3 - schedule
4 - both schedule and watchdog (while switched on by schedule)
5 - logic""",
}, # column
"npRelayStartReset" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Write 1 to start reset (switch relay off for some time)""",
}, # column
"npRelayMemo" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500.5.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Relay memo""",
}, # column
"npRelayFlip" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500.5.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"flip" : {
"nodetype" : "namednumber",
"number" : "-1"
},
},
},
"access" : "readwrite",
"description" :
"""Write -1 to flip between manual on and manual off states of relay""",
}, # column
"npRelayState" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5500.5.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readonly",
"description" :
"""Actual relay state at the moment,
regardless of source of control.
0 - relay is off
1 - relay is on""",
}, # column
"npPwr" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800",
}, # node
"npPwrTable" : {
"nodetype" : "table",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3",
"status" : "current",
"description" :
"""Watchdog and outlet/relay control table""",
}, # table
"npPwrEntry" : {
"nodetype" : "row",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1",
"status" : "current",
"linkage" : [
"npPwrChannelN",
],
"description" :
"""Watchdog and outlet/relay control table row""",
}, # row
"npPwrChannelN" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "2"
},
],
"range" : {
"min" : "1",
"max" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The id of watchdog/power channel""",
}, # column
"npPwrStartReset" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2"
},
],
"range" : {
"min" : "0",
"max" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Write 1 to start forced reset
On read:
0 - normal operation
1 - reset is active
2 - reboot pause is active or watchdog is inactive""",
}, # column
"npPwrManualMode" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
"watchdog" : {
"nodetype" : "namednumber",
"number" : "2"
},
"schedule" : {
"nodetype" : "namednumber",
"number" : "3"
},
"scheduleAndWatchdog" : {
"nodetype" : "namednumber",
"number" : "4"
},
"logic" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Mode of power channel
0 - manual off
1 - manual on
2 - watchdog
3 - schedule
4 - schedule and watchdog
5 - controlled by Logic""",
}, # column
"npPwrResetsCounter" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""Counter of watchdog resets
Write 0 to clear.""",
}, # column
"npPwrRepeatingResetsCounter" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Counter of continous failed
watchdog resets""",
}, # column
"npPwrMemo" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Relay channel memo""",
}, # column
"npPwrRelayFlip" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"flip" : {
"nodetype" : "namednumber",
"number" : "-1"
},
},
},
"access" : "readwrite",
"description" :
"""Write -1 to flip between manual on and manual off states of relay""",
}, # column
"npPwrRelayState" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.5800.3.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readonly",
"description" :
"""Actual relay state at the moment,
regardless of source of control.
0 - relay is off
1 - relay is on""",
}, # column
"npIr" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.7900",
}, # node
"npIrCtrl" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.7900.1",
}, # node
"npIrPlayCmd" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.7900.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "16"
},
],
"range" : {
"min" : "1",
"max" : "16"
},
},
},
"access" : "readwrite",
"description" :
"""Write IR command number to send IR command""",
}, # scalar
"npIrReset" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.7900.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1"
},
],
"range" : {
"min" : "0",
"max" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Write 1 to reset IR transiever.
After reset, send IR command and check npIrStatus.""",
}, # scalar
"npIrStatus" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.7900.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"commandCompleted" : {
"nodetype" : "namednumber",
"number" : "0"
},
"protocolError" : {
"nodetype" : "namednumber",
"number" : "1"
},
"commandAccepted" : {
"nodetype" : "namednumber",
"number" : "2"
},
"errorUnknown" : {
"nodetype" : "namednumber",
"number" : "16"
},
"errorBadNumber" : {
"nodetype" : "namednumber",
"number" : "17"
},
"errorEmptyRecord" : {
"nodetype" : "namednumber",
"number" : "18"
},
"errorFlashChip" : {
"nodetype" : "namednumber",
"number" : "19"
},
"errorTimeout" : {
"nodetype" : "namednumber",
"number" : "20"
},
"errorExtBusBusy" : {
"nodetype" : "namednumber",
"number" : "21"
},
},
},
"access" : "readonly",
"description" :
"""IR transiever status""",
}, # scalar
"npCurLoop" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300",
}, # node
"npCurLoopTable" : {
"nodetype" : "table",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.1",
"status" : "current",
"description" :
"""Current loop sensors Table""",
}, # table
"npCurLoopEntry" : {
"nodetype" : "row",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.1.1",
"status" : "current",
"linkage" : [
"npCurLoopN",
],
"description" :
"""Current loop sensors Table Row""",
}, # row
"npCurLoopN" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "8"
},
],
"range" : {
"min" : "1",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""Index of current loop, 1 to max supported""",
}, # column
"npCurLoopStatus" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"alert" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cut" : {
"nodetype" : "namednumber",
"number" : "2"
},
"short" : {
"nodetype" : "namednumber",
"number" : "3"
},
"notPowered" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""Status of the loop
0=Normal, 1=Alert, 2=Cut, 3=Short, 4=Not Powered""",
}, # column
"npCurLoopI" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "99999"
},
],
"range" : {
"min" : "0",
"max" : "99999"
},
},
},
"access" : "readonly",
"description" :
"""Loop current, mA""",
}, # column
"npCurLoopV" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "99999"
},
],
"range" : {
"min" : "0",
"max" : "99999"
},
},
},
"access" : "readonly",
"description" :
"""Voltage drop on the loop, mV""",
}, # column
"npCurLoopR" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "99999"
},
],
"range" : {
"min" : "0",
"max" : "99999"
},
},
},
"access" : "readonly",
"description" :
"""Resistance of the loop, Ohm""",
}, # column
"npCurLoopPower" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cyclePower" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Control of loop power
0=Off, 1=On, 2=reset by off/on power""",
}, # column
"npCurLoopTraps" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2",
}, # node
"npCurLoopTrapPrefix" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2.0",
}, # node
"npCurLoopTrapN" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "8"
},
],
"range" : {
"min" : "1",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""Index of current loop, which status has changed""",
}, # scalar
"npCurLoopTrapStatus" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"alert" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cut" : {
"nodetype" : "namednumber",
"number" : "2"
},
"short" : {
"nodetype" : "namednumber",
"number" : "3"
},
"notPowered" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""Status of the loop
0=Normal, 1=Alert, 2=Cut, 3=Short, 4=Not Powered""",
}, # scalar
"npCurLoopTrapI" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "99999"
},
],
"range" : {
"min" : "0",
"max" : "99999"
},
},
},
"access" : "readonly",
"description" :
"""Loop current, mA""",
}, # scalar
"npCurLoopTrapV" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "99999"
},
],
"range" : {
"min" : "0",
"max" : "99999"
},
},
},
"access" : "readonly",
"description" :
"""Voltage drop on the loop, mV""",
}, # scalar
"npCurLoopTrapR" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "99999"
},
],
"range" : {
"min" : "0",
"max" : "99999"
},
},
},
"access" : "readonly",
"description" :
"""Resistance of the loop, Ohm""",
}, # scalar
"npCurLoopTrapPower" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Status of loop power
0=Off, 1=On""",
}, # scalar
"npRelHumidity" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400",
}, # node
"npRelHumSensor" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.2",
}, # node
"npRelHumSensorValueH" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Relative humidity value, %""",
}, # scalar
"npRelHumSensorStatus" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"error" : {
"nodetype" : "namednumber",
"number" : "0"
},
"ok" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readonly",
"description" :
"""Status of the Rel.Humidity Sensor One
0=Normal, 1=Error or Sensor isn't connected""",
}, # scalar
"npRelHumSensorValueT" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-60",
"max" : "200"
},
],
"range" : {
"min" : "-60",
"max" : "200"
},
},
},
"access" : "readonly",
"description" :
"""Sensor temperature, deg.C""",
}, # scalar
"npRelHumSensorStatusH" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.2.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sensorFailed" : {
"nodetype" : "namednumber",
"number" : "0"
},
"belowSafeRange" : {
"nodetype" : "namednumber",
"number" : "1"
},
"inSafeRange" : {
"nodetype" : "namednumber",
"number" : "2"
},
"aboveSafeRange" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Status of Relative Humiduty""",
}, # scalar
"npRelHumSafeRangeHigh" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.2.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Relative Humidity safe range, top margin, %RH""",
}, # scalar
"npRelHumSafeRangeLow" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.2.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Relative Humidity safe range, bottom margin, %RH""",
}, # scalar
"npRelHumSensorValueT100" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.2.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Sensor temperature, deg.C * 100 (fixed point two decimal places)
Used to get access to the fractional part of T value""",
}, # scalar
"npRelHumTraps" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.9",
}, # node
"npRelHumTrapPrefix" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.9.0",
}, # node
"npThermo" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800",
}, # node
"npThermoTable" : {
"nodetype" : "table",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.1",
"status" : "current",
"description" :
"""Thermo Sensors Table""",
}, # table
"npThermoEntry" : {
"nodetype" : "row",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.1.1",
"status" : "current",
"linkage" : [
"npThermoSensorN",
],
"description" :
"""Thermo Sensors Table Row""",
}, # row
"npThermoSensorN" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "8"
},
],
"range" : {
"min" : "1",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""The id of temperature sensor, 1 to 8""",
}, # column
"npThermoValue" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-60",
"max" : "280"
},
],
"range" : {
"min" : "-60",
"max" : "280"
},
},
},
"access" : "readonly",
"description" :
"""Temperature, deg.C""",
}, # column
"npThermoStatus" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"failed" : {
"nodetype" : "namednumber",
"number" : "0"
},
"low" : {
"nodetype" : "namednumber",
"number" : "1"
},
"norm" : {
"nodetype" : "namednumber",
"number" : "2"
},
"high" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Temperature status (0=fault, 1=underheat, 2=normal, 3=overheat)""",
}, # column
"npThermoLow" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-60",
"max" : "280"
},
],
"range" : {
"min" : "-60",
"max" : "280"
},
},
},
"access" : "readonly",
"description" :
"""Bottom margin of normal temperature range, deg.C""",
}, # column
"npThermoHigh" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-60",
"max" : "280"
},
],
"range" : {
"min" : "-60",
"max" : "280"
},
},
},
"access" : "readonly",
"description" :
"""Top margin of normal temperature range, deg.C""",
}, # column
"npThermoMemo" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""T channel memo""",
}, # column
"npThermoTraps" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2",
}, # node
"npThermoTrapPrefix" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2.0",
}, # node
"npThermoTrapSensorN" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "8"
},
],
"range" : {
"min" : "1",
"max" : "8"
},
},
},
"access" : "readonly",
"description" :
"""The id of temperature sensor, 1 to 8""",
}, # scalar
"npThermoTrapValue" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-60",
"max" : "280"
},
],
"range" : {
"min" : "-60",
"max" : "280"
},
},
},
"access" : "readonly",
"description" :
"""Temperature, deg.C""",
}, # scalar
"npThermoTrapStatus" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"failed" : {
"nodetype" : "namednumber",
"number" : "0"
},
"low" : {
"nodetype" : "namednumber",
"number" : "1"
},
"norm" : {
"nodetype" : "namednumber",
"number" : "2"
},
"high" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Temperature status (0=fault, 1=underheat, 2=normal, 3=overheat)""",
}, # scalar
"npThermoTrapLow" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-60",
"max" : "280"
},
],
"range" : {
"min" : "-60",
"max" : "280"
},
},
},
"access" : "readonly",
"description" :
"""Bottom margin of normal temperature range, deg.C""",
}, # scalar
"npThermoTrapHigh" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-60",
"max" : "280"
},
],
"range" : {
"min" : "-60",
"max" : "280"
},
},
},
"access" : "readonly",
"description" :
"""Top margin of normal temperature range, deg.C""",
}, # scalar
"npThermoTrapMemo" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""T channel memo""",
}, # scalar
"npIo" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900",
}, # node
"npIoTable" : {
"nodetype" : "table",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1",
"status" : "current",
"description" :
"""Digital Input/output Table""",
}, # table
"npIoEntry" : {
"nodetype" : "row",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1.1",
"status" : "current",
"linkage" : [
"npIoLineN",
],
"description" :
"""Digital Input/output Table Row""",
}, # row
"npIoLineN" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "16"
},
],
"range" : {
"min" : "1",
"max" : "16"
},
},
},
"access" : "readonly",
"description" :
"""Number of IO line, from 1 to max supported""",
}, # column
"npIoLevelIn" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1"
},
],
"range" : {
"min" : "0",
"max" : "1"
},
},
},
"access" : "readonly",
"description" :
"""Input level, 0 or 1""",
}, # column
"npIoLevelOut" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Output level, 0 or 1.
Write -1 to flip output.""",
}, # column
"npIoMemo" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""IO line memo""",
}, # column
"npIoPulseCounter" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readwrite",
"description" :
"""Pulse Counter on IO input line (counts positive fronts)
Write 0 to reset.""",
}, # column
"npIoSinglePulseDuration" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "100",
"max" : "25500"
},
],
"range" : {
"min" : "100",
"max" : "25500"
},
},
},
"access" : "readwrite",
"description" :
"""Set duration of single pulse on IO output line,
100ms to 25500ms, min. step is 100ms""",
}, # column
"npIoSinglePulseStart" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Write 1 to start single pulse on IO output.
Output will be inverted for time, specified by npIoSinglePulseDuration""",
}, # column
"npIoTraps" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.2",
}, # node
"npIoTrapPrefix" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.2.0",
}, # node
"npIoTrapLineN" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "16"
},
],
"range" : {
"min" : "1",
"max" : "16"
},
},
},
"access" : "readonly",
"description" :
"""Trap data, Number of IO line""",
}, # scalar
"npIoTrapLevelIn" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1"
},
],
"range" : {
"min" : "0",
"max" : "1"
},
},
},
"access" : "readonly",
"description" :
"""Trap data, new Input level, 0 or 1""",
}, # scalar
"npIoTrapMemo" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.2.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Trap data, IO line memo""",
}, # scalar
"npIoTrapLevelLegend" : {
"nodetype" : "scalar",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.2.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Legend for current logic level on the IO line""",
}, # scalar
"npElecMeter" : {
"nodetype" : "node",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.9700",
}, # node
"npElecTable" : {
"nodetype" : "table",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.9700.1",
"status" : "current",
"description" :
"""Electricity Meter Table""",
}, # table
"npElecEntry" : {
"nodetype" : "row",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.9700.1.1",
"status" : "current",
"linkage" : [
"npElecIndex",
],
"description" :
"""Electricity Meter Table Table Row""",
}, # row
"npElecIndex" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.9700.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""Number of elec.meter, associated with IO line""",
}, # column
"npElecPulsesPerKwh" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.9700.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Pulses on IO line input per 1 kWh of consumed energy""",
}, # column
"npElecPower" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.9700.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""Power, Watts, based on pulse rate/interval, 5 minute average""",
}, # column
"npElecEnergy" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.9700.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readwrite",
"description" :
"""Energy counter, kWh, based on pulse count""",
}, # column
"npElecEnergy100" : {
"nodetype" : "column",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.9700.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readwrite",
"description" :
"""Energy counter, kWh*100, based on pulse count""",
}, # column
}, # nodes
"notifications" : {
"npCurLoopTrap" : {
"nodetype" : "notification",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8300.2.0.1",
"status" : "current",
"objects" : {
"npCurLoopTrapN" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npCurLoopTrapStatus" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npCurLoopTrapI" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npCurLoopTrapV" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npCurLoopTrapR" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npCurLoopTrapPower" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
},
"description" :
"""Status of current loop N has changed!""",
}, # notification
"npRelHumTrap" : {
"nodetype" : "notification",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8400.9.0.1",
"status" : "current",
"objects" : {
"npRelHumSensorStatusH" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npRelHumSensorValueH" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npRelHumSafeRangeHigh" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npRelHumSafeRangeLow" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
},
"description" :
"""Status of Relative Humidity RH sensor has changed!""",
}, # notification
"npThermoTrap" : {
"nodetype" : "notification",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8800.2.0.1",
"status" : "current",
"objects" : {
"npThermoTrapSensorN" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npThermoTrapValue" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npThermoTrapStatus" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npThermoTrapLow" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npThermoTrapHigh" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npThermoTrapMemo" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
},
"description" :
"""Status of Thermo sensor is changed (crossing of normal temp. range)""",
}, # notification
"npIoTrap" : {
"nodetype" : "notification",
"moduleName" : "DKSF-60-4-X-X-X",
"oid" : "1.3.6.1.4.1.25728.8900.2.0.1",
"status" : "current",
"objects" : {
"npIoTrapLineN" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npIoTrapLevelIn" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npIoTrapMemo" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
"npIoTrapLevelLegend" : {
"nodetype" : "object",
"module" : "DKSF-60-4-X-X-X"
},
},
"description" :
"""Input state of IO line is changed""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/D_Link_Genmgmt_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python AGENT-GENERAL-MIB
FILENAME = "mibs/D-Link/Genmgmt.mib"
MIB = {
"moduleName" : "AGENT-GENERAL-MIB",
"AGENT-GENERAL-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""D-Link Corp.""",
"contact" :
"""http://support.dlink.com""",
"description" :
"""The structure of general management information for enterprise.""",
"revisions" : (
{
"date" : "2013-08-22 00:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
),
"identity node" : "agentGeneralMgmt",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "IpAddress"},
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "Integer32"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "RowStatus"},
{"module" : "SNMPv2-TC", "name" : "MacAddress"},
{"module" : "RFC1213-MIB", "name" : "DisplayString"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
{"module" : "DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
{"module" : "DLINK-ID-REC-MIB", "name" : "dlink-common-mgmt"},
{"module" : "Q-BRIDGE-MIB", "name" : "VlanId"},
),
"typedefs" : {
"Ipv6Address" : {
"basetype" : "OctetString",
"status" : "current",
"ranges" : [
{
"min" : "16",
"max" : "16"
},
],
"range" : {
"min" : "16",
"max" : "16"
},
"format" : "2x:",
"description" :
"""This data type is used to model IPv6 addresses.
This is a binary string of 16 octets in network
byte-order.""",
},
"UnitList" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "3"
},
],
"range" : {
"min" : "0",
"max" : "3"
},
},
}, # typedefs
"nodes" : {
"agentGeneralMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32",
"status" : "current",
}, # node
"agentBasicInfo" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1",
}, # node
"agentMgmtProtocolCapability" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"snmp-ip" : {
"nodetype" : "namednumber",
"number" : "2"
},
"snmp-ipx" : {
"nodetype" : "namednumber",
"number" : "3"
},
"snmp-ip-ipx" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The network management protocol(s) supported by this agent.""",
}, # scalar
"agentMibCapabilityTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.2",
"status" : "current",
"description" :
"""A list of MIB capability entries supported by this agent.""",
}, # table
"agentMibCapabilityEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.2.1",
"status" : "current",
"linkage" : [
"agentMibCapabilityIndex",
],
"description" :
"""A MIB capability entry containing objects that describe a particular MIB
supported by this agent.""",
}, # row
"agentMibCapabilityIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""A list of Agent MIB Capability Description entries.""",
}, # column
"agentMibCapabilityDescr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "35"
},
],
"range" : {
"min" : "0",
"max" : "35"
},
},
},
"access" : "readonly",
"description" :
"""The name of the MIB supported by the agent.""",
}, # column
"agentMibCapabilityVersion" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The version of the MIB specified in this entry.""",
}, # column
"agentMibCapabilityType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"standard" : {
"nodetype" : "namednumber",
"number" : "2"
},
"proprietary" : {
"nodetype" : "namednumber",
"number" : "3"
},
"experiment" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The type of MIB specified in this entry.""",
}, # column
"agentStatusConsoleInUse" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"in-use" : {
"nodetype" : "namednumber",
"number" : "2"
},
"not-in-use" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This indicates whether the console is currently in use.""",
}, # scalar
"agentStatusSaveCfg" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"proceeding" : {
"nodetype" : "namednumber",
"number" : "2"
},
"completed" : {
"nodetype" : "namednumber",
"number" : "3"
},
"failed" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This indicates the status of the device configuration.
other (1) - This entry is currently in use but the conditions under
which it will remain so are determined by each of the following values.
proceeding (2) - The device configuration is currently being saved into NV-RAM.
completed (3) - All of the device configuration parameters have been
saved into NV-RAM.
failed (4) - The process to save the device configuration has failed.""",
}, # scalar
"agentStatusFileTransfer" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"in-process" : {
"nodetype" : "namednumber",
"number" : "2"
},
"invalid-file" : {
"nodetype" : "namednumber",
"number" : "3"
},
"violation" : {
"nodetype" : "namednumber",
"number" : "4"
},
"file-not-found" : {
"nodetype" : "namednumber",
"number" : "5"
},
"disk-full" : {
"nodetype" : "namednumber",
"number" : "6"
},
"complete" : {
"nodetype" : "namednumber",
"number" : "7"
},
"time-out" : {
"nodetype" : "namednumber",
"number" : "8"
},
"not-format" : {
"nodetype" : "namednumber",
"number" : "9"
},
"memory-full" : {
"nodetype" : "namednumber",
"number" : "10"
},
},
},
"access" : "readonly",
"description" :
"""The status of the firmware download control. If the value is stated as 'other',
the firmware has not been updated since the device was started.""",
}, # scalar
"agentCPUutilization" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.6",
}, # node
"agentCPUutilizationIn5sec" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.6.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The time scale is set at 5 second intervals.
The value will be between 0% (idle) and 100% (very busy).""",
}, # scalar
"agentCPUutilizationIn1min" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.6.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The time scale is set at 1 minute intervals.
The value will be between 0% (idle) and 100% (very busy).""",
}, # scalar
"agentCPUutilizationIn5min" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.6.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The time scale is set at 5 minute intervals.
The value will be between 0% (idle) and 100% (very busy).""",
}, # scalar
"agentDualImageStatus" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"not-supported" : {
"nodetype" : "namednumber",
"number" : "0"
},
"supported" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readonly",
"description" :
"""The dual image status.""",
}, # scalar
"agentPORTutilizationTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.8",
"status" : "current",
"description" :
"""This table specifies the current utilization of a specified port.""",
}, # table
"agentPORTutilizationEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.8.1",
"status" : "current",
"linkage" : [
"agentPORTutilizationProtIndex",
],
"description" :
"""A list of information regarding the port utilization function.""",
}, # row
"agentPORTutilizationProtIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.8.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the module's port number.""",
}, # column
"agentPORTutilizationTX" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.8.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The current rate of transmitted frames on the specified port.""",
}, # column
"agentPORTutilizationRX" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.8.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The current rate of received frames on the specified port.""",
}, # column
"agentPORTutilizationUtil" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.8.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"units" : "%",
"description" :
"""The current percentages regarding port statistics.""",
}, # column
"agentDRAMutilizationTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.1.9",
"status" : "current",
"description" :
"""Information about DRAM memory.""",
}, # table
"agentDRAMutilizationEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.1.9.1",
"status" : "current",
"linkage" : [
"agentDRAMutilizationUnitID",
],
"description" :
"""A list of information about DRAM memory.""",
}, # row
"agentDRAMutilizationUnitID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.9.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Specifies the unit ID.
If the ID equals zero, it means the current device.""",
}, # column
"agentDRAMutilizationTotalDRAM" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.9.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"units" : "KB",
"description" :
"""The size of total DRAM memory.""",
}, # column
"agentDRAMutilizationUsedDRAM" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.9.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"units" : "KB",
"description" :
"""The size of used DRAM memory.""",
}, # column
"agentDRAMutilization" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.9.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The percentage of used DRAM memory of the total DRAM memory available.
The value will be between 0% (idle) and 100% (very busy).""",
}, # column
"agentFLASHutilizationTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.10",
"status" : "current",
"description" :
"""Information about the flash memory.""",
}, # table
"agentFLASHutilizationEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.10.1",
"status" : "current",
"linkage" : [
"agentFLASHutilizationUnitID",
],
"description" :
"""Information about the flash memory.""",
}, # row
"agentFLASHutilizationUnitID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.1.10.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Specifies the unit ID.
If the ID equals zero, it means the current device.""",
}, # column
"agentFLASHutilizationTotalFLASH" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.1.10.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"units" : "KB",
"description" :
"""The total size of flash memory.""",
}, # column
"agentFLASHutilizationUsedFLASH" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.10.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"units" : "KB",
"description" :
"""The size of the used flash memory.""",
}, # column
"agentFLASHutilization" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.1.10.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The percentage of used flash memory in total flash memory.
The value will be between 0% (idle) and 100% (very busy).""",
}, # column
"agentStatusReset" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"proceeding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"completed" : {
"nodetype" : "namednumber",
"number" : "2"
},
"failed" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This indicates the status of 'agentReset'.""",
}, # scalar
"agentSerialNumber" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""A text string containing the serial number of this device.""",
}, # scalar
"agentFirmwareType" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""A text string containing the firmware type.""",
}, # scalar
"agentBasicConfig" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2",
}, # node
"agentBscSwFileTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1",
"status" : "current",
"description" :
"""A list of MIB Basic Config entry support files updated by this agent.""",
}, # table
"agentBscSwFileEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1",
"status" : "current",
"linkage" : [
"agentBscSwFileIndex",
],
"description" :
"""A basic configuration entry containing the objects that describe a particular MIB
supported by this agent.""",
}, # row
"agentBscSwFileIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The table index for the file entry""",
}, # column
"agentBscSwFileDscr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The description of the software file purpose in this entry.
Note: For systems that do not support a change to this object, setting a value for
this object will cause the system to return bad-value error messages.""",
}, # column
"agentBscSwFileAddr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IP address where the file that needs to be downloaded is located, or the IP address
where the file will be uploaded to.""",
}, # column
"agentBscSwFileTransferType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"network-load" : {
"nodetype" : "namednumber",
"number" : "2"
},
"out-of-band-load" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""The channel through which the file will be downloaded or uploaded.
Note: For systems that do not support all channels, setting a value to the unsupported
channel will cause the system to return bad-value error messages.""",
}, # column
"agentBscSwFile" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the file to be downloaded from, or uploaded to, the TFTP server.""",
}, # column
"agentBscSwFileLocateId" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "16"
},
],
"range" : {
"min" : "1",
"max" : "16"
},
},
},
"access" : "readwrite",
"description" :
"""This object describes the type of file.
runtime-code (1),
log-file (2),
cfg-file (3)
Note: For systems that do not support changes to this object, setting a value for
this object will cause the system to return bad-value error messages.""",
}, # column
"agentBscSwFileLoadType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
"download" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object provides the user with a choice of uploading or downloading the selected file.
Note: For systems that do not support a change to this object, setting a value for this object
will cause the system to return bad-value error messages.""",
}, # column
"agentBscSwFileCtrl" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"inactive" : {
"nodetype" : "namednumber",
"number" : "2"
},
"start" : {
"nodetype" : "namednumber",
"number" : "3"
},
"delete" : {
"nodetype" : "namednumber",
"number" : "4"
},
"config-as-bootup" : {
"nodetype" : "namednumber",
"number" : "5"
},
"apply" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""This object gives the user the option of downloading runtime software. This setting will take effect
when the system restarts. See Note (1) below
Note:
For systems that do not support changes to this object, setting a value to this object
will cause the system to return bad-value error messages.
start - Activate firmware.
delete (4) - Delete the firmware by indicated firmware ID.
config-as-bootup (5) - Configured as bootup firmware by the indicated
firmware(ID).
apply (6) - Apply the configuration to be the active configuration by the indicated config ID.""",
}, # column
"agentBscSwFileBIncrement" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""This object indicates whether the previous configuration will remain
valid or not after downloading the configuration file.
True: Keep valid
False: Erase. """,
}, # column
"agentBscSwFileCtrlID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The section ID of the firmware image or configuration file.
A value of 0 indicates the boot-up firmware image or configuration file.""",
}, # column
"agentBscSwFileCtrlUnitID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"AGENT-GENERAL-MIB", "name" : "UnitList"},
},
"access" : "readwrite",
"description" :
"""Specifies which unit of the switch stack the firmware image will be downloaded from.
One or more units can be set in this list. Each bit from the left to the right represents the
switch from unit ID 1 to unit ID 12.
A null entry in this field denotes all switches in the switch stack.""",
}, # column
"agentBscSwFileIPv6Addr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"AGENT-GENERAL-MIB", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The IPv6 address where the file will be downloaded from or uploaded to.""",
}, # column
"agentBscSwFileBootUpImage" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""The result of the download will depend on whether the boot_up option is specified.
Case 1: In the case where the master unit provides the file system and the slave unit does
not provide the file system, when boot_up is specified, the file will be downloaded
to the boot_up image on the slave. If boot_up is not specified, then the file will
not be downloaded to this slave unit.
Case 2: In the case where the master unit does not provide the file system and the slave unit
provides the file system, when boot_up is specified, the file will be downloaded to
the boot_up image on the slave unit. If boot_up is not specified, the file will
not be downloaded to this slave unit.
Case 3: In the case where the master unit and the slave unit both support or do not support
the file system, the file will be downloaded to the specified file on the slave unit.
If boot_up is specified, the downloaded file will be assigned as the boot_up image.
True: boot_up option is specified.
False: boot_up option is not specified. """,
}, # column
"agentBscSwFileForceAgree" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.1.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""When the force_agree option is specified, the reboot command will be executed
immediately, without any further confirmation from the user.
True: force_agree option is specified.
False: force_agree option is not specified. """,
}, # column
"agentBscSwFileInterfaceName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.1.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "12"
},
],
"range" : {
"min" : "0",
"max" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""This node is used to specify the interface name when the agentBscSwFileIPv6Addr
is the link local address.""",
}, # column
"agentBscSwFileServerDomainName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.1.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the domain name of the TFTP server.""",
}, # column
"agentFileTransfer" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.2",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
"start-and-reset" : {
"nodetype" : "namednumber",
"number" : "3"
},
"noaction" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object will execute the download or upload action. If start (2) is chosen, it will
begin to download/upload and no reset will follow. If start-and-reset (3) is chosen,
then the reset will be activated after completing the download or upload.
No action if noaction (4) is chosen.
Note:
Because these functions will be limited by the support for the system in question,
some of the selected items will be invalid. When the user selects an invalid entry,
the system will respond with a bad-value status.""",
}, # scalar
"agentSystemReset" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.3",
"status" : "deprecated",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cold-start" : {
"nodetype" : "namednumber",
"number" : "2"
},
"warm-start" : {
"nodetype" : "namednumber",
"number" : "3"
},
"no-reset" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the agent system reset state. Setting this
object to no-reset (4) has no effect. Setting this object to
cold-start (2) or warm-start (3) will reset the agent. The agent
always returns to no-reset (4) when this object is read.
This object is replaced by 'agentReset'.""",
}, # scalar
"agentRs232PortConfig" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"console" : {
"nodetype" : "namednumber",
"number" : "2"
},
"out-of-band" : {
"nodetype" : "namednumber",
"number" : "3"
},
"notAvail" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the RS-232C mode once the device has restarted.""",
}, # scalar
"agentOutOfBandBaudRateConfig" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.5",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"baudRate-2400" : {
"nodetype" : "namednumber",
"number" : "2"
},
"baudRate-9600" : {
"nodetype" : "namednumber",
"number" : "3"
},
"baudRate-19200" : {
"nodetype" : "namednumber",
"number" : "4"
},
"baudRate-38400" : {
"nodetype" : "namednumber",
"number" : "5"
},
"baudRate-115200" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""This object allows the user to specify an out-of-band baud rate, which
will take effect upon system restart.
Note:
Because these functions will be limited by the support for the system
in question, some of the selected items will be invalid. When the user
selects an invalid entry, the system will respond with a bad-value error message.
""",
}, # scalar
"agentSaveCfg" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cfg-id1" : {
"nodetype" : "namednumber",
"number" : "2"
},
"cfg-id2" : {
"nodetype" : "namednumber",
"number" : "3"
},
"log" : {
"nodetype" : "namednumber",
"number" : "4"
},
"all" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the type of save command to be executed, when saving to NV-RAM.
other (1) - None of the following.
cfg-id1 (2) - Save configuration ID1.
cfg-id2 (3)- Save configuration ID2.
log (4) - Save log.
all (5) - Save both (active configuration and log).""",
}, # scalar
"swMultiImageInfoTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.7",
"status" : "current",
"description" :
"""""",
}, # table
"swMultiImageInfoEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.7.1",
"status" : "current",
"linkage" : [
"swMultiImageInfoID",
],
"description" :
"""A list of information about multiple image management.""",
}, # row
"swMultiImageInfoID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.7.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The stacking section ID of the firmware image.
The stacking section ID = 256 * Unit ID + Image File ID.""",
}, # column
"swMultiImageVersion" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.7.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The recorded downloaded firmware version.""",
}, # column
"swMultiImageSize" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.7.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The recorded downloaded firmware size.""",
}, # column
"swMultiImageUpdateTime" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.7.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The recorded firmware update time.""",
}, # column
"swMultiImageFrom" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.7.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""The recorded IP address of the TFTP server""",
}, # column
"swMultiImageSendUser" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.7.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The record of the user who downloaded the firmware.""",
}, # column
"swMultiImageFileName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.7.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""When the system is set to boot from SD card, this object will display the recorded path name of the boot firmware file. """,
}, # column
"agentMultiCfgMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8",
}, # node
"swMultiCfgInfoTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.1",
"status" : "current",
"description" :
"""""",
}, # table
"swMultiCfgInfoEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.8.1.1",
"status" : "current",
"linkage" : [
"swMultiCfgInfoID",
],
"description" :
"""A list of information about multiple configuration files.""",
}, # row
"swMultiCfgInfoID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The section ID of the configuration files.""",
}, # column
"swMultiCfgVersion" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.8.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The recorded downloaded configuration version.""",
}, # column
"swMultiCfgSize" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The recorded downloaded configuration size (in bytes).""",
}, # column
"swMultiCFgUpdateTime" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The recorded configuration update time
displayed in string format, i.e. yyyy/mon/dd hh:mm:ss.""",
}, # column
"swMultiCfgFrom" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""The recorded IP address of the TFTP server.""",
}, # column
"swMultiCfgSendUser" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.8.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The record of the user who downloaded the configuration file""",
}, # column
"swMultiCfgFileName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.8.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""When the system is set to boot from SD card, this object displays the recorded path name of the boot configuration file. """,
}, # column
"swMultiCfgCurrentUsed" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.8.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The indicated configuration file ID of the system currently in use.""",
}, # scalar
"swMultiCfgBootUp" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This object indicates the configuration file ID which will take effect upon the next reboot.""",
}, # scalar
"swMultiCfgCtrlTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.8.4",
"status" : "current",
"description" :
"""""",
}, # table
"swMultiCfgCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.4.1",
"status" : "current",
"linkage" : [
"swMultiCfgCtrlID",
],
"description" :
"""A list of information about multiple configuration management.""",
}, # row
"swMultiCfgCtrlID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"cfgId-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cfgId-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The section ID of the configuration file.""",
}, # column
"swMultiCfgAction" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.8.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"active" : {
"nodetype" : "namednumber",
"number" : "1"
},
"delete" : {
"nodetype" : "namednumber",
"number" : "2"
},
"apply" : {
"nodetype" : "namednumber",
"number" : "3"
},
"none" : {
"nodetype" : "namednumber",
"number" : "4"
},
"config-as-bootup-cfg" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""
save: Save configuration to active configuration ID when the parameter is omitted.
active: Set any valid configuration as the active configuration.
delete: Removes the configuration from the flash memory. This configuration
cannot be the active or current configuration file.
apply: Loads the indicated configuration file and applies it to the system.
config-as-bootup-cfg: Configured as the boot-up configuration by the indicated configuration(ID).""",
}, # column
"systemSeverityControlMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.9",
}, # node
"systemSeverityTrapControl" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.9.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the level of trap severity control. The system has a severity level control
and each trap should have a severity control set. When trap events occur and its severity
is higher than the system severity control level, the trap works as defined. If the event
severity is lower than the system severity control level, the event is ignored as if it
did not occur.""",
}, # scalar
"systemSeverityLogControl" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.9.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the level of trap severity control. The system has a severity level control and
each trap should have a severity control set. When trap events occur and its severity is
higher than the system severity control level, the trap works as defined. If the event
severity is lower than the system severity control level, the event is ignored as if
it did not occur.""",
}, # scalar
"agentTrustedHostMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10",
}, # node
"agentTrustedHostTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1",
"status" : "current",
"description" :
"""This table contains the trusted host information.""",
}, # table
"agentTrustedHostEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"agentTrustedHostIndex",
],
"description" :
"""A list of information about the trusted hosts.""",
}, # row
"agentTrustedHostIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "30"
},
],
"range" : {
"min" : "1",
"max" : "30"
},
},
},
"access" : "readonly",
"description" :
"""The index of the trusted host entry.""",
}, # column
"agentTrustedHostIPAddress" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Specifies the IP address of the trusted host.""",
}, # column
"agentTrustedHostRowStatus" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""Indicates the status of this entry. When creating a trusted host
entry, the IP address should also be set.""",
}, # column
"agentTrustedHostIPSubnetMask" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.10.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Specifies the IP subnet mask of the trusted host.""",
}, # column
"agentTrustedHostForSNMP" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.10.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the trusted host for SNMP.""",
}, # column
"agentTrustedHostForTELNET" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.192.168.127.12.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the trusted host for Telnet.""",
}, # column
"agentTrustedHostForSSH" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the trusted host for SSH.""",
}, # column
"agentTrustedHostForHTTP" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the trusted host for HTTP.""",
}, # column
"agentTrustedHostForHTTPS" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the trusted host for HTTPS.""",
}, # column
"agentTrustedHostForPING" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the trusted host for PING.""",
}, # column
"agentTrustedHostAddrType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
},
"access" : "readwrite",
"description" :
"""The type of trusted host address as specified by
the 'agentTrustedHostAddr' object.""",
}, # column
"agentTrustedHostAddr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.10.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "readwrite",
"description" :
"""Specifies the IP address of the trusted host.""",
}, # column
"agentTrustedHostIPv6PrefixLen" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.10.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "128"
},
],
"range" : {
"min" : "1",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the IPv6 prefix length of the IPv6 trusted host.""",
}, # column
"agentTrustedHostDelAllState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.10.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Used to delete all trusted host entries.""",
}, # scalar
"agentFDBMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.11",
}, # node
"agentFDBClearAllState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.11.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Used to clear all FDB entries.""",
}, # scalar
"agentFDBClearByPortTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.11.2",
"status" : "current",
"description" :
"""Used to clear FDB entries by port.""",
}, # table
"agentFDBClearByPortEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.2.1",
"status" : "current",
"linkage" : [
"agentFDBClearPortIndex",
],
"description" :
"""This is an entry of the agentFDBClearByPortTable.""",
}, # row
"agentFDBClearPortIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "noaccess",
"description" :
"""This object indicates the port number.""",
}, # column
"agentFDBClearByPortAction" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates whether to clear FDB or not.""",
}, # column
"agentFDBClearByVlanTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.3",
"status" : "current",
"description" :
"""Used to clear FDB entries by port.""",
}, # table
"agentFDBClearByVlanEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.3.1",
"status" : "current",
"linkage" : [
"agentFDBClearVid",
],
"description" :
"""This is an entry of agentFDBClearByPortTable.""",
}, # row
"agentFDBClearVid" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "VlanId"},
},
"access" : "noaccess",
"description" :
"""This object indicates the VLAN-ID.""",
}, # column
"agentFDBClearByVlanAction" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.11.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates whether to clear the FDB or not.""",
}, # column
"agentFDBSecurityTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.4",
"status" : "current",
"description" :
"""Used to display the FDB entries that have been created by the security module.""",
}, # table
"agentFDBSecurityEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.4.1",
"status" : "current",
"linkage" : [
"agentFDBVid",
"agentFDBMacAddress",
],
"description" :
"""This is an entry of agentFDBSecurityTable.""",
}, # row
"agentFDBVid" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "VlanId"},
},
"access" : "noaccess",
"description" :
"""This object indicates the VLAN-ID.""",
}, # column
"agentFDBMacAddress" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "noaccess",
"description" :
"""This object indicates the MAC address.""",
}, # column
"agentFDBPort" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the port number.""",
}, # column
"agentFDBType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "1"
},
"static" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the MAC address type.""",
}, # column
"agentFDBStatus" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.11.4.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"drop" : {
"nodetype" : "namednumber",
"number" : "1"
},
"forward" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the MAC address's forwarding status.""",
}, # column
"agentFDBSecurityModule" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.11.4.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dot1x" : {
"nodetype" : "namednumber",
"number" : "1"
},
"wac" : {
"nodetype" : "namednumber",
"number" : "2"
},
"jwac" : {
"nodetype" : "namednumber",
"number" : "3"
},
"port-security" : {
"nodetype" : "namednumber",
"number" : "4"
},
"mac-based-access-control" : {
"nodetype" : "namednumber",
"number" : "5"
},
"compound-authentication" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""This object is used to indicate which security module created the current MAC address.
dot1x: 802.1X.
wac: Web-based Access Control.
jwac: Web-Based Access Control extension for Japan.
port-security: Port Security.
mac-based-access-control: MAC-based Access Control.
compound-authentication: Compound Authentication.""",
}, # column
"agentARPMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12",
}, # node
"agentARPClearAllState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Used to clear all ARP entries.""",
}, # scalar
"agentGratuitousARPMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.2",
}, # node
"agentGratuitousARPSendIpifStatusUpState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""This is used to enable/disable sending of gratuitous ARP request
packets while the IPIF interface comes up. This is used to automatically
announce the interface's IP address to other nodes. By default,
the state is enabled, and only one ARP packet will be broadcast.""",
}, # scalar
"agentGratuitousARPSendDupIpDetectedState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""This is used to enable/disable the sending of gratuitous ARP request
packets while a duplicate IP is detected. By default, the state is enabled.
The duplicate IP detected state indicates that the system has received an ARP request
packet that was sent by an IP address that matches the system's own IP address.
In this case, the system knows that somebody out there is using an IP address
that is in conflict with the system. In order to reclaim the correct host
of this IP address, the system can send out the gratuitous ARP request
packet for this duplicate IP address.""",
}, # scalar
"agentGratuitousARPLearningState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""This is used to enable/disable learning of an ARP entry in the ARP
cache based on the received gratuitous ARP packet. If the switch
receives a gratuitous ARP request/reply packet and the sender's
IP address is in its ARP table, it should update the ARP entry.
By default, the state is disabled.""",
}, # scalar
"agentGratuitousARPTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.2.4",
"status" : "current",
"description" :
"""Gratuitous ARP Table Information.""",
}, # table
"agentGratuitousARPEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.2.4.1",
"status" : "current",
"linkage" : [
"agentGratuitousARPInterfaceName",
],
"description" :
"""A list of information from the Gratuitous ARP Table.""",
}, # row
"agentGratuitousARPInterfaceName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.12.2.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The name of the IP interface.""",
}, # column
"agentGratuitousARPPeriodicalSendInterval" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.2.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "0",
"units" : "seconds",
"description" :
"""This is used to configure the interval for the periodic sending of
gratuitous ARP request packets.
0 means do not send gratuitous ARP request packets periodically.""",
}, # column
"agentGratuitousARPTrapState" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.2.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""This indicates the state of the gratuitous ARP trap. The switch can
trap the IP conflict events to inform the administrator.
By default, the trap is disabled.""",
}, # column
"agentGratuitousARPLogState" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.12.2.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""This indicates the state of the gratuitous Log trap. The switch can
log the IP conflict events to inform the administrator.
By default, the event log is enabled.""",
}, # column
"agentARPTotalARPEntries" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.12.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Used to display the total number of ARP entries.""",
}, # scalar
"agentARPRetryTimes" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.12.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""This indicates the retry times of the ARP request.""",
}, # scalar
"swMultiImageCtrlTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.13",
"status" : "current",
"description" :
"""""",
}, # table
"swMultiImageCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.13.1",
"status" : "current",
"linkage" : [
"swMultiImageCtrlID",
],
"description" :
"""A list of information about multiple image management.""",
}, # row
"swMultiImageCtrlID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.13.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The stacking section ID of the firmware image.
The stacking section ID = 256 * Unit ID + Image File ID.""",
}, # column
"swMultiImageCtrlAction" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.13.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"config-as-bootup-fw" : {
"nodetype" : "namednumber",
"number" : "1"
},
"delete" : {
"nodetype" : "namednumber",
"number" : "2"
},
"none" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the running status of the image which is
specified by swMultiImageCtrlID and swMultiImageCtrlUnitID.
config-as-bootup-fw (1) - Configured as the bootup firmware by the indicated firmware(ID).
delete (2) - Delete the firmware by indicated firmware ID.
none (3) - No action.""",
}, # column
"agentOutOfBandDataBits" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This object indicates the out-of-band data bits.""",
}, # scalar
"agentOutOfBandParityBits" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This object indicates the out-of-band parity bits.""",
}, # scalar
"agentOutOfBandStopBits" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This object indicates the out-of-band stop bits.""",
}, # scalar
"agentOutOfBandAutoLogoutConfig" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"never" : {
"nodetype" : "namednumber",
"number" : "1"
},
"minutes-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"minutes-5" : {
"nodetype" : "namednumber",
"number" : "3"
},
"minutes-10" : {
"nodetype" : "namednumber",
"number" : "4"
},
"minutes-15" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""This object allows the user to specify an out-of-band auto logout time.""",
}, # scalar
"agentBscFileSystemMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18",
}, # node
"agentBscFileSystemTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1",
"status" : "current",
"description" :
"""A list of MIB File System Basic Configuration entries supported
by the file update of this agent.""",
}, # table
"agentBscFileSystemEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.18.1.1",
"status" : "current",
"linkage" : [
"agentBscFileSystemIndex",
],
"description" :
"""A File System basic configuration entry that contains objects
describing a particular MIB supported by this agent.""",
}, # row
"agentBscFileSystemIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The table index for the file entry.
This object describes the file type.
runtime-code (1),
log-file (2),
cfg-file (3),
attack-log-file (7)""",
}, # column
"agentBscFileSystemDscr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.18.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readonly",
"description" :
"""The description of the software file purpose in this entry.""",
}, # column
"agentBscFileSystemServerAddr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IP address where the file to be downloaded is located, or the IP address
where the file will be uploaded to.""",
}, # column
"agentBscFileSystemServerIPv6Addr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"AGENT-GENERAL-MIB", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The IPv6 address where the file is to be downloaded from or uploaded to.""",
}, # column
"agentBscFileSystemServerFileName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the file to be downloaded from or uploaded to the TFTP server.
If agentBscFileSystemDeviceFileName is not set, the switch will default to using
the bootup file as the runtime image for the switch.""",
}, # column
"agentBscFileSystemDeviceDriverID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.18.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"a" : {
"nodetype" : "namednumber",
"number" : "2"
},
"b" : {
"nodetype" : "namednumber",
"number" : "3"
},
"c" : {
"nodetype" : "namednumber",
"number" : "4"
},
"d" : {
"nodetype" : "namednumber",
"number" : "5"
},
"e" : {
"nodetype" : "namednumber",
"number" : "6"
},
"f" : {
"nodetype" : "namednumber",
"number" : "7"
},
"g" : {
"nodetype" : "namednumber",
"number" : "8"
},
"h" : {
"nodetype" : "namednumber",
"number" : "9"
},
"i" : {
"nodetype" : "namednumber",
"number" : "10"
},
"j" : {
"nodetype" : "namednumber",
"number" : "11"
},
"k" : {
"nodetype" : "namednumber",
"number" : "12"
},
"l" : {
"nodetype" : "namednumber",
"number" : "13"
},
"m" : {
"nodetype" : "namednumber",
"number" : "14"
},
"n" : {
"nodetype" : "namednumber",
"number" : "15"
},
"o" : {
"nodetype" : "namednumber",
"number" : "16"
},
"p" : {
"nodetype" : "namednumber",
"number" : "17"
},
"q" : {
"nodetype" : "namednumber",
"number" : "18"
},
"r" : {
"nodetype" : "namednumber",
"number" : "19"
},
"s" : {
"nodetype" : "namednumber",
"number" : "20"
},
"t" : {
"nodetype" : "namednumber",
"number" : "21"
},
"u" : {
"nodetype" : "namednumber",
"number" : "22"
},
"v" : {
"nodetype" : "namednumber",
"number" : "23"
},
"w" : {
"nodetype" : "namednumber",
"number" : "24"
},
"x" : {
"nodetype" : "namednumber",
"number" : "25"
},
"y" : {
"nodetype" : "namednumber",
"number" : "26"
},
"z" : {
"nodetype" : "namednumber",
"number" : "27"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the drive of the device that the firmware to be uploaded/downloaded is located.
If none (1) is specified, the switch will default to the current drive.""",
}, # column
"agentBscFileSystemDeviceFileName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the file to be downloaded to the device, or uploaded from the
device. When downloading or uploading, the agentBscFileSystemServerFileName object must also be set.""",
}, # column
"agentBscFileSystemLoadType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
"download" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object allows the user to select a download or upload function for the file.
Note:
For systems that do not support changes to this object, setting a value for
this object will cause the system to return a bad-value error message.""",
}, # column
"agentBscFileSystemCtrlUnitID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.18.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"AGENT-GENERAL-MIB", "name" : "UnitList"},
},
"access" : "readwrite",
"description" :
"""Specifies which unit of the switch stack the firmware image or configuration file should be downloaded from.
One or more units can be set in this list. Each bit from left to right represents the
switch from unit ID 1 to unit ID 12.
If this list is set to null it represents all stack switches.""",
}, # column
"agentBscFileSystemBootUpImage" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""The result of the download will depend on whether the boot_up option has been specified.
Case 1: In the case of the master unit providing the file system and the slave unit
not providing the file system, when the boot_up parameter is specified, then the file will
be downloaded to the boot_up image on the slave. If the boot_up parameter is not specified,
then the file will not be downloaded to this slave unit.
Case 2: In the case of the master unit not providing the file system and the slave unit
providing the file system, when the boot_up parameter is specified, then the file will be downloaded
to the boot_up image on the slave unit. If boot_up is not specified, then the file will
not be downloaded to this slave unit.
Case 3: In the case of the master unit and the slave unit both supporting or not supporting the
file system, the file will be downloaded to the specified file on the slave unit. If boot_up
is specified, the downloaded file will be assigned as the boot_up image.
True: boot_up option is specified.
False: boot_up option is not specified.. """,
}, # column
"agentBscFileSystemForceAgree" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""When the force_agree option is specified, the reboot command will be executed immediately
without any further confirmation from the user.
True: force_agree option is specified.
False: force_agree option is not specified.. """,
}, # column
"agentBscFileSystemCtrl" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"inactive" : {
"nodetype" : "namednumber",
"number" : "2"
},
"start" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object allows the user to download runtime software. The settings
will take effect when the system restarts. See Note (1) below
Note 1:
For systems which do not support value changes to this object,
setting these values will cause the system to return a bad-value error message
start (3) - activate firmware.""",
}, # column
"agentBscFileSystemInterfaceName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "12"
},
],
"range" : {
"min" : "0",
"max" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""This node is used to specify the interface name when agentBscFileSystemServerIPv6Addr
is the local link address.""",
}, # column
"agentBscFileSystemServerDomainName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the domain name of the TFTP server.""",
}, # column
"agentBscFileSystemIncrement" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.1.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""If increment is specified, then the existing configuration will not be cleared before applying
of the new configuration. If it is not specified, then the existing configuration will be cleared
before applying of the new configuration.
True : keep valid
False : erase. """,
}, # column
"agentBscFileSystemSaveConfigDriverID" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"a" : {
"nodetype" : "namednumber",
"number" : "2"
},
"b" : {
"nodetype" : "namednumber",
"number" : "3"
},
"c" : {
"nodetype" : "namednumber",
"number" : "4"
},
"d" : {
"nodetype" : "namednumber",
"number" : "5"
},
"e" : {
"nodetype" : "namednumber",
"number" : "6"
},
"f" : {
"nodetype" : "namednumber",
"number" : "7"
},
"g" : {
"nodetype" : "namednumber",
"number" : "8"
},
"h" : {
"nodetype" : "namednumber",
"number" : "9"
},
"i" : {
"nodetype" : "namednumber",
"number" : "10"
},
"j" : {
"nodetype" : "namednumber",
"number" : "11"
},
"k" : {
"nodetype" : "namednumber",
"number" : "12"
},
"l" : {
"nodetype" : "namednumber",
"number" : "13"
},
"m" : {
"nodetype" : "namednumber",
"number" : "14"
},
"n" : {
"nodetype" : "namednumber",
"number" : "15"
},
"o" : {
"nodetype" : "namednumber",
"number" : "16"
},
"p" : {
"nodetype" : "namednumber",
"number" : "17"
},
"q" : {
"nodetype" : "namednumber",
"number" : "18"
},
"r" : {
"nodetype" : "namednumber",
"number" : "19"
},
"s" : {
"nodetype" : "namednumber",
"number" : "20"
},
"t" : {
"nodetype" : "namednumber",
"number" : "21"
},
"u" : {
"nodetype" : "namednumber",
"number" : "22"
},
"v" : {
"nodetype" : "namednumber",
"number" : "23"
},
"w" : {
"nodetype" : "namednumber",
"number" : "24"
},
"x" : {
"nodetype" : "namednumber",
"number" : "25"
},
"y" : {
"nodetype" : "namednumber",
"number" : "26"
},
"z" : {
"nodetype" : "namednumber",
"number" : "27"
},
},
},
"access" : "readwrite",
"description" :
"""The drive on the device that the configuration file is will be saved to.
If none (1) is specified, the switch places the file on the current drive by default.""",
}, # scalar
"agentBscFileSystemSaveConfigFileName" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the configuration file that will be saved to the device.
When agentBscFileSystemSaveCfg is set to cfg (2), and if the agentBscFileSystemSaveConfigFileName
is not null, the configuration file will be saved to the set file name.
If set to null, the configuration file will be saved to the boot_up CFG file. """,
}, # scalar
"agentBscFileSystemSaveCfg" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cfg" : {
"nodetype" : "namednumber",
"number" : "2"
},
"log" : {
"nodetype" : "namednumber",
"number" : "3"
},
"all" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This indicates the method of saving information to the NV-RAM of the device.
other (1) - None of the following.
cfg (2) - Save configuration.
log (3) - Save log.
all (4) - Save both ( active configuration and log).""",
}, # scalar
"agentFileSystemConfigTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.18.5",
"status" : "current",
"description" :
"""This table indicates the information about the bootup files.""",
}, # table
"agentFileSystemConfigEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.18.5.1",
"status" : "current",
"linkage" : [
"agentFileSystemUnit",
],
"description" :
"""A list of information about the bootup files for each unit of the switch stack.""",
}, # row
"agentFileSystemUnit" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The unit ID.""",
}, # column
"agentFileSystemDriverID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.5.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"a" : {
"nodetype" : "namednumber",
"number" : "2"
},
"b" : {
"nodetype" : "namednumber",
"number" : "3"
},
"c" : {
"nodetype" : "namednumber",
"number" : "4"
},
"d" : {
"nodetype" : "namednumber",
"number" : "5"
},
"e" : {
"nodetype" : "namednumber",
"number" : "6"
},
"f" : {
"nodetype" : "namednumber",
"number" : "7"
},
"g" : {
"nodetype" : "namednumber",
"number" : "8"
},
"h" : {
"nodetype" : "namednumber",
"number" : "9"
},
"i" : {
"nodetype" : "namednumber",
"number" : "10"
},
"j" : {
"nodetype" : "namednumber",
"number" : "11"
},
"k" : {
"nodetype" : "namednumber",
"number" : "12"
},
"l" : {
"nodetype" : "namednumber",
"number" : "13"
},
"m" : {
"nodetype" : "namednumber",
"number" : "14"
},
"n" : {
"nodetype" : "namednumber",
"number" : "15"
},
"o" : {
"nodetype" : "namednumber",
"number" : "16"
},
"p" : {
"nodetype" : "namednumber",
"number" : "17"
},
"q" : {
"nodetype" : "namednumber",
"number" : "18"
},
"r" : {
"nodetype" : "namednumber",
"number" : "19"
},
"s" : {
"nodetype" : "namednumber",
"number" : "20"
},
"t" : {
"nodetype" : "namednumber",
"number" : "21"
},
"u" : {
"nodetype" : "namednumber",
"number" : "22"
},
"v" : {
"nodetype" : "namednumber",
"number" : "23"
},
"w" : {
"nodetype" : "namednumber",
"number" : "24"
},
"x" : {
"nodetype" : "namednumber",
"number" : "25"
},
"y" : {
"nodetype" : "namednumber",
"number" : "26"
},
"z" : {
"nodetype" : "namednumber",
"number" : "27"
},
},
},
"access" : "readwrite",
"description" :
"""The drive on the device that the configuration file will be saved to.
If none (1) is specified, the switch will place the file to the current drive by default.""",
}, # column
"agentFileSystemBootImage" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.5.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""When displayed, it shows the current bootup image file name.
When set, the set name will be set as the bootup image.""",
}, # column
"agentFileSystemBootConfig" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.18.5.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""When displayed, it shows the current bootup configuration file name.
When set, the set name will be set as the bootup configuration.""",
}, # column
"agentFileSystemActConfig" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.18.5.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""When displayed, it shows null.
When set, the set name will be active at once, but the set name
will not be set as the bootup configuration.""",
}, # column
"agentReboot" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.19",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Used to restart the switch.""",
}, # scalar
"agentReset" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"config" : {
"nodetype" : "namednumber",
"number" : "2"
},
"system" : {
"nodetype" : "namednumber",
"number" : "3"
},
"reset" : {
"nodetype" : "namednumber",
"number" : "4"
},
"system-exclude-vlan" : {
"nodetype" : "namednumber",
"number" : "5"
},
"system-exclude-ip" : {
"nodetype" : "namednumber",
"number" : "6"
},
"system-exclude-vlan-ip" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""Used to reset all switch parameters.
none (1): No action. This is the default value of this object.
config (2): All parameters are reset to default settings.
The device will neither save nor reboot.
system (3): All parameters are reset to default settings.
The switch will then do a factory reset, save, and reboot.
reset (4) : All parameters will be reset to default settings except for the
IP address, user account, and history log.
The device will neither save nor reboot.
system-exclude-vlan(5) : All parameters are reset to default settings except for VLAN.
The switch will then save its settings and reboot.
system-exclude-ip(6) : All parameters are reset to default settings except IP address.
The switch will then save its settings and reboot.
system-exclude-vlan-ip(7): All parameters are reset to default settings except VLAN and IP address.
The switch will then save its settings and reboot.""",
}, # scalar
"agentFTPFileTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.21",
"status" : "current",
"description" :
"""A list of the MIB Basic Config entries support files updated by this agent.""",
}, # table
"agentFTPFileEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.21.1",
"status" : "current",
"linkage" : [
"agentFTPFileIndex",
],
"description" :
"""A basic configuration entry containing the objects describing a particular MIB
supported by this agent.""",
}, # row
"agentFTPFileIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The table index for the file entry. This object describes the file type
runtime-code (1),
log-file (2),
cfg-file (3)""",
}, # column
"agentFTPFileDscr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.21.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The description of the software file purpose in this entry.
Note: For systems which do not support changes to this object, setting a value for
this object will cause the system to return bad-value error messages.""",
}, # column
"agentFTPFileLoadType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
"download" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object provides the user with a choice of uploading or downloading the selected file.
Note: For systems which do not support a change of this object, setting a value to this object
will cause the system to return bad-value error messages.""",
}, # column
"agentFTPFileAddr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IP address that the file to be downloaded is located on, or the IP address
where the file will be uploaded to.""",
}, # column
"agentFTPTCPPort" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The TCP port number being used to establish the command connection.""",
}, # column
"agentFTPFileName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the file to be downloaded from, or uploaded to, the FTP server.""",
}, # column
"agentFTPUserName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This is the user name to enter in upload/download. """,
}, # column
"agentFTPPassword" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This is the password to enter for an upload/download.""",
}, # column
"agentFTPFileCtrlID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The section ID of the firmware image or configuration file.
A value of 0 indicates the boot-up firmware image or configuration file.""",
}, # column
"agentFTPFileBIncrement" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.21.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""This object indicates whether the previous configuration will remain
valid or not after downloading the configuration file.
True: Keep valid
False: Erase. """,
}, # column
"agentFTPFileCtrl" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object gives the user the option to download runtime software. The setting will take effect
when the system restarts. See Note (1) below
Note 1:
For systems which do not support changes to this object, setting a value for this object
will cause the system to return bad-value error messages. """,
}, # column
"agentFTPFileBootUpImage" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""This object indicates whether to set the special file as a boot up file or not.
True: The boot-up option is specified.
False: The boot-up option is not specified.""",
}, # column
"agentFTPFileForceAgree" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.21.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""When the force-agree option is specified, the reboot command will be executed
immediately without any further confirmation from the user.
True: Force-agree option is specified.
False: Force-agree option is not specified.""",
}, # column
"agentFTPFileIPv6Addr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.21.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The IPv6 address where the file is to be downloaded from or uploaded to.""",
}, # column
"agentFTPFileInterfaceName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.21.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This node is used to specify the interface name when agentFTPFileIPv6Addr
is the local link address. """,
}, # column
"agentFTPFileUnitID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.21.1.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"AGENT-GENERAL-MIB", "name" : "UnitList"},
},
"access" : "readwrite",
"description" :
"""Specifies which unit of the switch stack the firmware image or configuration
file should be downloaded from. One or more units can be set in this list. Each
bit from left to right represents the switch from unit ID 1 to unit ID 12.If this
list is set to null it represents all stack switches.""",
}, # column
"agentSnmpTrapState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.22",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates if the SNMP trap is enabled or disabled.""",
}, # scalar
"agentOutOfBandMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.23",
}, # node
"agentOutOfBandMgmtState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.23.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enables or disables the interface.""",
}, # scalar
"agentOutOfBandMgmtIpAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.23.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IP address for out of band management. This object can only take the
value of the unicast IP address.""",
}, # scalar
"agentOutOfBandMgmtSubnetMask" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.23.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IP net mask for out of band management.""",
}, # scalar
"agentOutOfBandMgmtGateway" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.23.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The gateway for out of band management. """,
}, # scalar
"agentOutOfBandMgmtLinkStatus" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.23.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"link-up" : {
"nodetype" : "namednumber",
"number" : "1"
},
"link-down" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The current Link status for out of band management.""",
}, # scalar
"agentTrapMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.24",
}, # node
"agentTrapColdStart" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.24.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""When enabled (1), whenever the device detects a cold start event,
a trap will be sent out.""",
}, # scalar
"agentTrapWarmStart" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.24.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""When enabled (1), whenever the device detects a warm start event,
a trap will be sent out.""",
}, # scalar
"agentTrapRmonRisingAlarm" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.24.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""When enabled (1), whenever the device detects a RMON rising alarm
event , a trap will be sent out.""",
}, # scalar
"agentTrapRmonFallingAlarm" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.24.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""When enabled (1), whenever the device detects a RMON falling alarm
event, a trap will be sent out.""",
}, # scalar
"agentTrapCfgSave" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.24.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""When enabled (1), whenever the device detects a configuration saving
completed event, a trap will be sent out.""",
}, # scalar
"agentTrapCfgUpload" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.24.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""When enabled (1), whenever the device detects a configuration
uploading completed event, a trap will be sent out.""",
}, # scalar
"agentTrapCfgDownload" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.172.16.31.10.12.1.2.24.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""When enabled (1), whenever the device detects a configuration
downloading completed event, a trap will be sent out""",
}, # scalar
"agentFTPFileSystemTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.25",
"status" : "current",
"description" :
"""The FTP management table for the file system""",
}, # table
"agentFTPFileSystemEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.25.1",
"status" : "current",
"linkage" : [
"agentFTPFileSystemIndex",
],
"description" :
"""A File System basic configuration entry that contains objects
describing a particular MIB supported by this agent.""",
}, # row
"agentFTPFileSystemIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""The table index for the file entry.""",
}, # column
"agentFTPFileSystemDscr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The description of the software file purpose in this entry.""",
}, # column
"agentFTPFileSystemLoadType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.25.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
"download" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object allows the user to select a download or upload function for the file.""",
}, # column
"agentFTPFileSystemAddressType" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.25.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
},
"access" : "readwrite",
"description" :
"""The address type of agentFTPFileSystemAddress.""",
}, # column
"agentFTPFileSystemAddress" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "readwrite",
"description" :
"""This object indicates the FTP server address.""",
}, # column
"agentFTPFileSystemTCPPort" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The TCP port number being used to establish the control connection.""",
}, # column
"agentFTPFileSystemServerFileName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.25.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the file to be downloaded from or uploaded to the FTP server.""",
}, # column
"agentFTPFileSystemDeviceFileName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the file to be downloaded to the device, or uploaded from the
device.
If agentFTPFileSystemDeviceFileName is not set, the switch will default to
the bootup file.""",
}, # column
"agentFTPFileSystemUserName" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object indicates the user name to access the FTP server.""",
}, # column
"agentFTPFileSystemPassword" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object indicates the password to access the FTP server.""",
}, # column
"agentFTPFileSystemCtrlUnitID" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"AGENT-GENERAL-MIB", "name" : "UnitList"},
},
"access" : "readwrite",
"description" :
"""Specifies which unit of the switch stack the firmware image or configuration
file should be downloaded from. One or more units can be set in this list. Each
bit from left to right represents the switch from unit ID 1 to unit ID 12.If this
list is set to null it represents all stack switches.""",
}, # column
"agentFTPFileSystemBootUpImage" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""This object indicates whether to set the special file as the boot up file or not.
True: The boot-up option is specified.
False: The boot-up option is not specified.""",
}, # column
"agentFTPFileSystemCtrl" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.25.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"start" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object allows the user to execute an FTP download/upload.""",
}, # column
"agentBscCMDLogState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.26",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the command logging state.""",
}, # scalar
"agentBscBroadcastPingReplyState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.27",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the broadcast ping reply state.""",
}, # scalar
"agentBscTftpConfigMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28",
}, # node
"agentBscTftpCfgFirmwareFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The firmware pathname that needs to be downloaded/uploaded from/to the TFTP server.""",
}, # scalar
"agentBscTftpCfgConfigFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.28.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The configuration pathname that needs to be downloaded/uploaded from/to the TFTP server.""",
}, # scalar
"agentBscTftpCfgLogFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The log pathname that needs to be uploaded to the TFTP server.""",
}, # scalar
"agentBscTftpCfgAttackLogFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The attack log pathname that needs to be uploaded to the TFTP server.""",
}, # scalar
"agentBscTftpCfgCertificateFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The certificate pathname that needs to be downloaded from the TFTP server.""",
}, # scalar
"agentBscTftpCfgKeyFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The key pathname that needs to be downloaded from the TFTP server.""",
}, # scalar
"agentBscTftpCfgTechSuooprtFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.28.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The technique's support information pathname that needs to be uploaded to the TFTP server.""",
}, # scalar
"agentBscTftpCfgDebugLogFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The debug log pathname that needs to be uploaded to the TFTP server.""",
}, # scalar
"agentBscTftpCfgSIMFirmwareFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The firmware pathname that needs to be downloaded/uploaded from/to the TFTP server when it is SIM enabled.""",
}, # scalar
"agentBscTftpCfgSIMConfigFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.2.28.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The configuration pathname that needs to be downloaded/uploaded from/to the TFTP server when it is SIM enabled.""",
}, # scalar
"agentBscTftpCfgSIMLogFile" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.28.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The log pathname that needs to be uploaded to the TFTP server when it is SIM enabled.""",
}, # scalar
"agentBscTftpCfgServerIPAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.28.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IPv4 address of the TFTP server.""",
}, # scalar
"agentBscTftpCfgServerIPv6Addr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.28.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"AGENT-GENERAL-MIB", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The IPv6 address of the TFTP server.""",
}, # scalar
"agentBscTftpCfgServerDomainName" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.28.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""The domain name of the TFTP server.""",
}, # scalar
"agentBscCommunityEncryptionState" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.29",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the encryption state on the SNMP community string.""",
}, # scalar
"agentBasicRebootScheduleTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.32",
"status" : "current",
"description" :
"""The management table for reboot schedule.""",
}, # table
"agentBasicRebootScheduleEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.32.1",
"create" : "true",
"status" : "current",
"linkage" : [
"agentBasicRebootScheduleIndex",
],
"description" :
"""A reboot schedule configuration entry.""",
}, # row
"agentBasicRebootScheduleIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.32.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""The table index for the reboot schedule.
If the device only supports to configure one reboot schedule, the index
must be set to 1.""",
}, # column
"agentBasicRebootScheduleInterval" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.32.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "43200"
},
],
"range" : {
"min" : "0",
"max" : "43200"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the reboot happens after a specified time interval is passed.
The range of time interval is 0-43200 minutes.
If the value is 0, this object is not used.""",
}, # column
"agentBasicRebootScheduleSpceficTime" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.32.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "2",
"max" : "2"
},
],
"range" : {
"min" : "2",
"max" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates the reboot specific time by schedule.
octets contents range
1 hour 0..23
2 min 0..59
For example, 13:30
should be given as 0d 1e.""",
}, # column
"agentBasicRebootScheduleDate" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.32.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "4",
"max" : "4"
},
],
"range" : {
"min" : "4",
"max" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates the data of reboot time by schedule.
octets contents range
1 monthDay 1..31
2 month 1..12
where january = 1 december = 12
3-4 year 2000..2100
For example, 06 july 2012
should be given as 06 07 07 dc.""",
}, # column
"agentBasicRebootScheduleSave" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.32.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"yes" : {
"nodetype" : "namednumber",
"number" : "1"
},
"no" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the device will save all configurations before the reboot happens.""",
}, # column
"agentBasicRebootScheduleRowStatus" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.2.32.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The state of reboot schedule, whether it is working or not.
1 : active(1)
2 : notInService(2)
3 : notReady(3)
4 : createAndGo(4)
5 : createAndWait(5)
6 : destroy(6)""",
}, # column
"agentIpProtoConfig" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.3",
}, # node
"agentIpNumOfIf" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The total number of IP interfaces supported by this agent.""",
}, # scalar
"agentIpTftpServerAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.3.2",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IP address of the TFTP Server.""",
}, # scalar
"agentIpGetIpFrom" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.3.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
"bootp" : {
"nodetype" : "namednumber",
"number" : "3"
},
"dhcp" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates if the agent will get its system IP address
from a Bootp/DHCP server at start up.""",
}, # scalar
"agentIpAutoconfig" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.3.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates the status of automatically getting the configuration information
from a TFTP server connected to the device.""",
}, # scalar
"agentIpAutoconfigTimeout" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.3.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""This timer is used to limit the length of time for getting the configuration
information from a TFTP server connected to the device.""",
}, # scalar
"agentIpTrapManager" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.4",
}, # node
"agentTrapManagerTable" : {
"nodetype" : "table",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.4.2",
"status" : "current",
"description" :
"""A list of trap managers that the SNMP traps will be sent to.""",
}, # table
"agentTrapManagerEntry" : {
"nodetype" : "row",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.4.2.1",
"status" : "current",
"linkage" : [
"agentTrapManagerIndex",
],
"description" :
"""Each entry contains the particular trap manager's settings.""",
}, # row
"agentTrapManagerIndex" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.4.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "noaccess",
"description" :
"""A value that uniquely identifies trapDestEntry.""",
}, # column
"agentTrapManagerIpAddr" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.4.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The destination IP address for SNMP traps.""",
}, # column
"agentTrapManagerComm" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.4.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "20"
},
],
"range" : {
"min" : "0",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The community string used to encode SNMP trap packets being sent to the trap
manager.""",
}, # column
"agentTrapManagerMsgVer" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.4.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"snmpAgentVersionDependent" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v1Trap" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v2Trap" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the version of trap packets that will be sent to
this trap manager. The default setting is SNMP Agent Version Dependent.
Note:
Because some of these functions will be limited by the support of
the system in question, some selected items may be invalid. If one
of these items is selected, a bad value error message will prompt
the user.""",
}, # column
"agentTrapManagerStatus" : {
"nodetype" : "column",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.4.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates whether or not the trap should be sent to
the trap manager.""",
}, # column
"agentNotify" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7",
}, # node
"agentNotifMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.1",
}, # node
"notifFirmwareMgmt" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.1.2",
}, # node
"agentNotifFirmware" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2",
}, # node
"agentNotifyPrefix" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.0",
}, # node
"notificationBindings" : {
"nodetype" : "node",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1",
}, # node
"unitID" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "notifyonly",
"description" :
"""The unit ID of the device which triggered the event.""",
}, # scalar
"trapInfosystemRestart" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the last time the device rebooted.""",
}, # scalar
"agentGratuitousARPIpAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.7.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "notifyonly",
"description" :
"""A duplicate IP address with the switch already exists.""",
}, # scalar
"agentGratuitousARPMacAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "notifyonly",
"description" :
"""This object is the MAC address of the device which has the duplicate IP address.""",
}, # scalar
"agentGratuitousARPPortNumber" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "notifyonly",
"description" :
"""This indicates the portNum with a string.
For example, if the device is in standalone mode, and the port
number is 23, the string should be 23.
If the device is in stacking mode, and the unit ID is 2, and the
port number is 3, the string should be 2:3.""",
}, # scalar
"agentLoginType" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"console" : {
"nodetype" : "namednumber",
"number" : "1"
},
"telnet" : {
"nodetype" : "namednumber",
"number" : "2"
},
"web" : {
"nodetype" : "namednumber",
"number" : "3"
},
"ssl" : {
"nodetype" : "namednumber",
"number" : "4"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "notifyonly",
"description" :
"""The type is the user login method type.""",
}, # scalar
"agentLoginAAAMethod" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"local" : {
"nodetype" : "namednumber",
"number" : "2"
},
"server" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "notifyonly",
"description" :
"""This method is the AAA login method.""",
}, # scalar
"agentLoginUserName" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "notifyonly",
"description" :
"""This object is the name of the user that failed to login to the switch.""",
}, # scalar
"agentLoginIpAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "notifyonly",
"description" :
"""This object is the login type from the IP address.""",
}, # scalar
"agentLoginMacAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "notifyonly",
"description" :
"""This object is the login type from a MAC address.""",
}, # scalar
"agentLoginAAAServerAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "notifyonly",
"description" :
"""This object is the login type through a console authenticated by an AAA server.""",
}, # scalar
"agentLoginFailInfo" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"authenticate-fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
"server-timeout" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "notifyonly",
"description" :
"""This object indicates the reason for the login failure.""",
}, # scalar
"agentAccessFlashOper" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "notifyonly",
"description" :
"""This object indicates the operation of the access flash failure.""",
}, # scalar
"agentAccessFlashAddr" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.7.2.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "notifyonly",
"description" :
"""This object indicates the address of the access flash failure.""",
}, # scalar
"agentCfgOperate" : {
"nodetype" : "scalar",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"save" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
"download" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "notifyonly",
"description" :
"""This object indicates the operation type of the configuration.""",
}, # scalar
}, # nodes
"notifications" : {
"agentsystemRestart" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.0.1",
"status" : "current",
"objects" : {
"trapInfosystemRestart" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""This trap contains the reboot information.""",
}, # notification
"agentSaveToNVRAM" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.0.2",
"status" : "current",
"objects" : {
"unitID" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""This trap is sent whenever all the device configuration has been saved to NV-RAM.""",
}, # notification
"agentFileTransferStatusChange" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.0.3",
"status" : "current",
"objects" : {
"unitID" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentStatusFileTransfer" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""File transfer status change notification.""",
}, # notification
"agentSetToFactoryDefault" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.7.2.0.4",
"status" : "current",
"objects" : {
"unitID" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""This trap is sent whenever the 'set to factory default' setting has been processed. """,
}, # notification
"agentGratuitousARPTrap" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.7.2.0.5",
"status" : "current",
"objects" : {
"agentGratuitousARPIpAddr" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentGratuitousARPMacAddr" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentGratuitousARPPortNumber" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentGratuitousARPInterfaceName" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""This trap is sent when there is an IP address conflict.""",
}, # notification
"agentLoginFailTrap" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.0.6",
"status" : "current",
"objects" : {
"agentLoginType" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentLoginAAAMethod" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentLoginUserName" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentLoginIpAddr" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentLoginMacAddr" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentLoginAAAServerAddr" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentLoginFailInfo" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""The trap is sent when a login has failed through one of the login types (console, Telnet, web, SSL or SSH).""",
}, # notification
"agentFirmwareUpgrade" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.0.7",
"status" : "current",
"objects" : {
"swMultiImageVersion" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""This trap is sent when the process of upgrading the firmware via SNMP has finished.""",
}, # notification
"agentAccessFlashFailed" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.1.171.12.1.7.2.0.8",
"status" : "current",
"objects" : {
"agentAccessFlashOper" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentAccessFlashAddr" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""The trap is sent when access to the flash fails.""",
}, # notification
"agentCfgOperCompleteTrap" : {
"nodetype" : "notification",
"moduleName" : "AGENT-GENERAL-MIB",
"oid" : "1.3.6.1.4.172.16.17.32.7.2.0.9",
"status" : "current",
"objects" : {
"unitID" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentCfgOperate" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
"agentLoginUserName" : {
"nodetype" : "object",
"module" : "AGENT-GENERAL-MIB"
},
},
"description" :
"""The trap is sent when the configuration is completely saved, uploaded
or downloaded.""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_28_xs_me_bx.py
|
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
import inspect
class DLink_DGS_1210_28_XS_ME_BX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_28XSME_BX_7_03_001_mib')
GET_DDM_SENSORS = 'get_ddm_sensors'
GET_FAN_SENSORS = '_get_fan_sensors'
def _get_fan_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('sysSmartFanStatus', ''))
return result
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_genmgmt.py
|
<gh_stars>0
from nav.mibs.dlink import DLink
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_Genmgmt_Mib(MibRetriever, DLink):
mib = get_mib('D_Link_Genmgmt_mib')
GUARD_OID = 'agentMgmtProtocolCapability'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink.py
|
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.models.manage import Sensor
from twisted.internet import defer
import inspect
class DLink(SnmpAddOn):
GET_DDM_SENSORS = 'no_sensors'
GET_FAN_SENSORS = 'no_sensors'
GET_PORTS_POE_SENSORS = 'no_sensors'
GET_POWER_SENSORS = 'no_sensors'
GET_SYSTEM_POE_SENSORS = 'no_sensors'
GET_TEMPERATURE_SENSORS = 'no_sensors'
@defer.inlineCallbacks
def get_cpu_loadavg(self):
self._logger.debug(here(self))
result = {}
utilization_1_min = yield self.get_next('agentCPUutilizationIn1min')
utilization_5_min = yield self.get_next('agentCPUutilizationIn5min')
result['cpu'] = [
(1, utilization_1_min),
(5, utilization_5_min)
]
defer.returnValue(result)
def get_cpu_utilization(self):
self._logger.debug(here(self))
return defer.succeed(None)
@defer.inlineCallbacks
def get_all_sensors(self):
self._logger.debug(here(self))
result = []
is_supported = yield self.is_mib_object_supported(self.GUARD_OID)
if is_supported:
ddm_sensors = yield getattr(self, self.GET_DDM_SENSORS)()
result.extend(ddm_sensors)
fan_sensors = yield getattr(self, self.GET_FAN_SENSORS)()
result.extend(fan_sensors)
ports_poe_sensors = yield getattr(self, self.GET_PORTS_POE_SENSORS)()
result.extend(ports_poe_sensors)
power_sensors = yield getattr(self, self.GET_POWER_SENSORS)()
result.extend(power_sensors)
system_poe_sensors = yield getattr(self, self.GET_SYSTEM_POE_SENSORS)()
result.extend(system_poe_sensors)
temperature_sensors = yield getattr(self, self.GET_TEMPERATURE_SENSORS)()
result.extend(temperature_sensors)
self._logger.info('%d sensor(s) detected', len(result))
defer.returnValue(result)
def no_sensors(self):
self._logger.debug(here(self))
return []
@defer.inlineCallbacks
def get_ddm_sensors(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'ddmStatusPort',
'ddmRxPower',
'ddmTxPower',
'ddmVoltage',
'ddmTemperature',
'ddmBiasCurrent'
])
if columns:
for _, item in columns.items():
if SnmpAddOn.is_number(item.get('ddmTemperature')):
port = item.get('ddmStatusPort')
result.append(self.get_port_sensor(port, 'ddmRxPower', Sensor.UNIT_DBM))
result.append(self.get_port_sensor(port, 'ddmTxPower', Sensor.UNIT_DBM))
result.append(self.get_port_sensor(port, 'ddmVoltage', Sensor.UNIT_VOLTS_DC))
result.append(self.get_port_sensor(port, 'ddmTemperature', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
result.append(self.get_port_sensor(port, 'ddmBiasCurrent', Sensor.UNIT_AMPERES, scale=Sensor.SCALE_MILLI))
defer.returnValue(result)
@defer.inlineCallbacks
def get_ddm_sensors_old(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'swDdmPort',
'swDdmRxPower',
'swDdmTxPower',
'swDdmVoltage',
'swDdmTemperature',
'swDdmBiasCurrent'
])
if columns:
for _, item in columns.items():
if SnmpAddOn.is_number(item.get('swDdmTemperature')):
port = item.get('swDdmPort')
result.append(self.get_port_sensor(port, 'swDdmRxPower', Sensor.UNIT_DBM))
result.append(self.get_port_sensor(port, 'swDdmTxPower', Sensor.UNIT_DBM))
result.append(self.get_port_sensor(port, 'swDdmVoltage', Sensor.UNIT_VOLTS_DC))
result.append(self.get_port_sensor(port, 'swDdmTemperature', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
result.append(self.get_port_sensor(port, 'swDdmBiasCurrent', Sensor.UNIT_AMPERES, scale=Sensor.SCALE_MILLI))
defer.returnValue(result)
@defer.inlineCallbacks
def get_fan_sensors_old(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'swFanUnitIndex',
'swFanID',
'swFanStatus',
'swFanSpeed'
])
if columns:
for _, item in columns.items():
unit_index = item.get('swFanUnitIndex')
fan_id = item.get('swFanID')
self.get_double_indexed_system_sensor(unit_index, fan_id, 'swFanStatus', '')
self.get_double_indexed_system_sensor(unit_index, fan_id, 'swFanSpeed', Sensor.UNIT_RPM)
defer.returnValue(result)
@defer.inlineCallbacks
def get_ports_poe_sensors(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'poeportgroup',
'poeportid',
'poePortPower',
'poePortVoltage',
'poePortCurrent'
])
if columns:
for _, item in columns.items():
group = item.get('poeportgroup')
port = item.get('poeportid')
result.append(self.get_grouped_port_sensor(group, port, 'poePortPower', Sensor.UNIT_WATTS))
result.append(self.get_grouped_port_sensor(group, port, 'poePortVoltage', Sensor.UNIT_VOLTS_DC))
result.append(self.get_grouped_port_sensor(group, port, 'poePortCurrent', Sensor.UNIT_AMPERES, scale=Sensor.SCALE_MILLI))
defer.returnValue(result)
@defer.inlineCallbacks
def get_power_sensors_old(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'swPowerUnitIndex',
'swPowerID',
'swPowerStatus'
])
if columns:
for _, item in columns.items():
unit_index = item.get('swPowerUnitIndex')
power_id = item.get('swPowerID')
self.get_double_indexed_system_sensor(unit_index, power_id, 'swPowerStatus', '')
defer.returnValue(result)
def get_system_poe_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('pethPsePortPowerBudget', Sensor.UNIT_WATTS))
result.append(self.get_system_sensor('pethPsePortPowerConsumption', Sensor.UNIT_WATTS))
result.append(self.get_system_sensor('pethPsePortPowerRemainder', Sensor.UNIT_WATTS))
result.append(self.get_system_sensor('pethPsePortPowerRatioOfSystemPower', Sensor.UNIT_PERCENT))
return result
@defer.inlineCallbacks
def get_temperature_sensors_old(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'swTemperatureUnitIndex',
'swTemperatureCurrent'
])
if columns:
for _, item in columns.items():
index = item.get('swTemperatureUnitIndex')
result.append(self.get_indexed_system_sensor(index, 'swTemperatureCurrent', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
defer.returnValue(result)
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/snmp_add_on.py
|
<reponame>alexanderfefelov/nav-add-ons<filename>snmp/nav/mibs/snmp_add_on.py
import inspect
from twisted.internet import defer
class SnmpAddOn:
@defer.inlineCallbacks
def is_mib_object_supported(self, mib_object):
oid = str(self.nodes[mib_object].oid) + '.0'
self._logger.debug('{}: {} ({})'.format(here(self), mib_object, oid))
result = yield self.agent_proxy.get([oid])
defer.returnValue(self.is_number(result[oid]))
def get_indexed_system_sensor(self, index, mib_object, unit_of_measurement, precision=0, scale=None, minimum=0, maximum=100):
module_name = self.get_module_name()
oid = '{}.{}'.format(str(self.nodes[mib_object].oid), str(index))
internal_name = '{}.{}'.format(str(index), mib_object) if index > 0 else mib_object
name = internal_name
description = internal_name
result = dict(
mib=module_name,
oid=oid,
name=name,
internal_name=internal_name,
description=description,
unit_of_measurement=unit_of_measurement,
precision=precision,
scale=scale,
minimum=minimum,
maximum=maximum
)
return result
def get_double_indexed_system_sensor(self, index1, index2, mib_object, unit_of_measurement, precision=0, scale=None, minimum=0, maximum=100):
module_name = self.get_module_name()
oid = '{}.{}.{}'.format(str(self.nodes[mib_object].oid), str(index1), str(index2))
internal_name = '{}.{}.{}'.format(str(index1), str(index2), mib_object)
name = internal_name
description = internal_name
result = dict(
mib=module_name,
oid=oid,
name=name,
internal_name=internal_name,
description=description,
unit_of_measurement=unit_of_measurement,
precision=precision,
scale=scale,
minimum=minimum,
maximum=maximum
)
return result
def get_system_sensor(self, mib_object, unit_of_measurement, precision=0, scale=None, minimum=0, maximum=100):
result = self.get_indexed_system_sensor(0, mib_object, unit_of_measurement, precision, scale, minimum, maximum)
return result
def get_port_sensor(self, port, mib_object, unit_of_measurement, precision=0, scale=None, minimum=0, maximum=100):
module_name = self.get_module_name()
oid = '{}.{}'.format(str(self.nodes[mib_object].oid), str(port))
internal_name = '{}.{}'.format(str(port), mib_object)
name = internal_name
description = internal_name
result = dict(
mib=module_name,
oid=oid,
ifindex=port,
name=name,
internal_name=internal_name,
description=description,
unit_of_measurement=unit_of_measurement,
precision=precision,
scale=scale,
minimum=minimum,
maximum=maximum
)
return result
def get_grouped_port_sensor(self, group, port, mib_object, unit_of_measurement, precision=0, scale=None, minimum=0, maximum=100):
module_name = self.get_module_name()
oid = '{}.{}.{}'.format(str(self.nodes[mib_object].oid), str(group), str(port))
internal_name = '{}.{}.{}'.format(str(group), str(port), mib_object)
name = internal_name
description = internal_name
result = dict(
mib=module_name,
oid=oid,
ifindex=port,
name=name,
internal_name=internal_name,
description=description,
unit_of_measurement=unit_of_measurement,
precision=precision,
scale=scale,
minimum=minimum,
maximum=maximum
)
return result
@staticmethod
def is_number(s):
try:
float(s)
return True
except (TypeError, ValueError):
return False
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_28_me_ax.py
|
<reponame>alexanderfefelov/nav-add-ons<filename>snmp/nav/mibs/dlink_dgs_1210_28_me_ax.py
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_DGS_1210_28_ME_AX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_28ME_AX_6_14_001_mib')
GET_DDM_SENSORS = 'get_ddm_sensors'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_xx.py
|
from nav.mibs.dlink import DLink
class DLink_DGS_1210_XX(DLink):
GUARD_OID = 'sysLoginTimeoutInterval'
|
alexanderfefelov/nav-add-ons
|
web/etc/nav/geomap/config.py
|
<gh_stars>0
# -*- coding: utf-8 -*-
# config.py: Configuration file for Geomap.
#
# Warning: Despite the name, this file is NOT a Python file. The
# '.py' in the name is there because the syntax is sufficiently
# similar to Python to make it beneficial to edit the file in Python
# mode.
def variant(normal, "Map with sensitive information"):
template_file(node_popup, "popup_place.html")
template_file(edge_popup, "popup_network.html")
def indicator(edge, color, "Link load"):
if is_nan(load_out) or capacity == 0:
("#666666", "No statistics")
if load_out/capacity < 0.3:
("#8AE234", "0–30 %")
if load_out/capacity < 0.6:
("#FCE94F", "30–60 %")
if load_out/capacity < 0.9:
("#FCAF3E", "60–90 %")
if True:
("#CC0000", "90–100 %")
def indicator(edge, size, "Link capacity"):
if capacity <= 2:
(4, "<= 2 Mbit/s")
if capacity <= 155:
(6, "<= 155 Mbit/s")
if capacity <= 2500:
(8, "<= 2.5 Gbit/s")
if True:
(10, "> 2.5 Gbit/s")
def indicator(node, color, "CPU load"):
if is_nan(load):
("#666666", "No statistics")
if load < 50:
("#8AE234", "0–0.5")
if load < 100:
("#FCE94F", "0.5–1")
if load >= 100:
("#CC0000", "> 1")
def indicator(node, size, "Netboxes"):
if num_netboxes == 1:
(4, "1")
if num_netboxes <= 10:
(6, "2–10")
if num_netboxes <= 20:
(8, "11–20")
if True:
(10, "> 20")
def variant(open, "Map with open information"):
template_file(node_popup, "popup_place_open.html")
template_file(edge_popup, "popup_network_open.html")
def indicator(edge, color, "Link load"):
if is_nan(load_out) or capacity == 0:
("#666666", "No statistics")
if load_out/capacity < 0.3:
("#8AE234", "0–30 %")
if load_out/capacity < 0.6:
("#FCE94F", "30–60 %")
if load_out/capacity < 0.9:
("#FCAF3E", "60–90 %")
if True:
("#CC0000", "90–100 %")
def indicator(edge, size, "Link capacity"):
if capacity <= 2:
(4, "<= 2 Mbit/s")
if capacity <= 155:
(6, "<= 155 Mbit/s")
if capacity <= 2500:
(8, "<= 2.5 Gbit/s")
if True:
(10, "> 2.5 Gbit/s")
def indicator(node, color, "CPU load"):
if is_nan(load):
("#666666", "No statistics")
if load < 50:
("#8AE234", "0–0.5")
if load < 100:
("#FCE94F", "0.5–1")
if load >= 100:
("#CC0000", "> 1")
def indicator(node, size, "Netboxes"):
if num_netboxes == 1:
(4, "1")
if num_netboxes <= 10:
(6, "2–10")
if num_netboxes <= 20:
(8, "11–20")
if True:
(10, "> 20")
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/nag_nag.py
|
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.models.manage import Sensor
from nav.smidumps import get_mib
from twisted.internet import defer
import inspect
class Nag_Nag_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('NAG_SNR_SWITCH_private_2_1_80_mib')
GUARD_OID = 'snr'
@defer.inlineCallbacks
def get_cpu_loadavg(self):
self._logger.debug(here(self))
result = {}
for cpu in 'sys', 'switch':
idle_30_sec = yield self.get_next(cpu + 'CPUThirtySecondIdle')
load_30_sec = 100 - idle_30_sec if idle_30_sec else None
idle_5_min = yield self.get_next(cpu + 'CPUFiveMinuteIdle')
load_5_min = 100 - idle_5_min if idle_5_min else None
result[cpu] = [
(1, load_30_sec),
(5, load_5_min)
]
defer.returnValue(result)
def get_cpu_utilization(self):
self._logger.debug(here(self))
return defer.succeed(None)
@defer.inlineCallbacks
def get_memory_usage(self):
self._logger.debug(here(self))
result = {}
for pool in 'sys', 'switch':
size = yield self.get_next(pool + 'MemorySize')
if size:
used = yield self.get_next(pool + 'MemoryBusy')
free = size - used
result.update({
pool: (used, free)
})
defer.returnValue(result)
@defer.inlineCallbacks
def get_all_sensors(self):
self._logger.debug(here(self))
result = []
ddm_sensors = yield self._get_ddm_sensors()
result.extend(ddm_sensors)
fan_sensors = yield self._get_fan_sensors()
result.extend(fan_sensors)
ports_poe_sensors = yield self._get_ports_poe_sensors()
result.extend(ports_poe_sensors)
system_poe_sensors = yield self._get_system_poe_sensors()
result.extend(system_poe_sensors)
temperature_sensors = yield self._get_temperature_sensors()
result.extend(temperature_sensors)
self._logger.info('%d sensor(s) detected', len(result))
defer.returnValue(result)
@defer.inlineCallbacks
def _get_ddm_sensors(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'ddmDiagnosisIfIndex',
'ddmDiagnosisTemperature',
'ddmDiagnosisVoltage',
'ddmDiagnosisBias',
'ddmDiagnosisRXPower',
'ddmDiagnosisTXPower'
])
if columns:
for _, item in columns.items():
port = item.get('ddmDiagnosisIfIndex')
result.append(self.get_port_sensor(port, 'ddmDiagnosisRXPower', Sensor.UNIT_DBM))
result.append(self.get_port_sensor(port, 'ddmDiagnosisTXPower', Sensor.UNIT_DBM))
result.append(self.get_port_sensor(port, 'ddmDiagnosisVoltage', Sensor.UNIT_VOLTS_DC))
result.append(self.get_port_sensor(port, 'ddmDiagnosisTemperature', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
result.append(self.get_port_sensor(port, 'ddmDiagnosisBias', Sensor.UNIT_AMPERES, scale=Sensor.SCALE_MILLI))
defer.returnValue(result)
@defer.inlineCallbacks
def _get_fan_sensors(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'sysFanIndex',
'sysFanStatus',
'sysFanSpeed'
])
if columns:
for _, item in columns.items():
index = item.get('sysFanIndex')
result.append(self.get_indexed_system_sensor(index, 'sysFanStatus', ''))
result.append(self.get_indexed_system_sensor(index, 'sysFanSpeed', Sensor.UNIT_RPM))
defer.returnValue(result)
@defer.inlineCallbacks
def _get_ports_poe_sensors(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'poePortIndex',
'poePortMaxPower',
'poePortCurrentPower',
'poePortCurrentCurrent',
'poePortCurrentVoltage'
])
if columns:
for _, item in columns.items():
port = item.get('poePortIndex')
result.append(self.get_port_sensor(port, 'poePortMaxPower', Sensor.UNIT_WATTS))
result.append(self.get_port_sensor(port, 'poePortCurrentPower', Sensor.UNIT_WATTS))
result.append(self.get_port_sensor(port, 'poePortCurrentCurrent', Sensor.UNIT_AMPERES))
result.append(self.get_port_sensor(port, 'poePortCurrentVoltage', Sensor.UNIT_VOLTS_DC))
defer.returnValue(result)
def _get_system_poe_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('poeMaxPower', Sensor.UNIT_WATTS))
result.append(self.get_system_sensor('poeCurrentPower', Sensor.UNIT_WATTS))
return result
def _get_temperature_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('sysTemperature', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
result.append(self.get_system_sensor('switchTemperature', Sensor.UNIT_CELSIUS, precision=7, minimum=-20, maximum=120))
return result
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/mikrotik_mikrotik.py
|
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.models.manage import Sensor
from nav.smidumps import get_mib
from twisted.internet import defer
import inspect
class MikroTik_Mikrotik_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('MikroTik_mikrotik_mib')
GUARD_OID = 'mikrotikExperimentalModule'
@defer.inlineCallbacks
def get_all_sensors(self):
self._logger.debug(here(self))
result = []
health_sensors = yield self._get_health_sensors()
result.extend(health_sensors)
self._logger.info('%d sensor(s) detected', len(result))
defer.returnValue(result)
def _get_health_sensors(self):
self._logger.debug(here(self))
result = []
fan_sensors = self._get_fan_sensors()
result.extend(fan_sensors)
power_supply_sensors = self._get_power_supply_sensors()
result.extend(power_supply_sensors)
other_sensors = self._get_other_sensors()
result.extend(other_sensors)
temperature_sensors = self._get_temperature_sensors()
result.extend(temperature_sensors)
return result
def _get_fan_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('mtxrHlFanSpeed1', Sensor.UNIT_RPM))
result.append(self.get_system_sensor('mtxrHlFanSpeed2', Sensor.UNIT_RPM))
return result
def _get_power_supply_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('mtxrHlBackupPowerSupplyState', ''))
result.append(self.get_system_sensor('mtxrHlCoreVoltage', Sensor.UNIT_VOLTS_DC))
result.append(self.get_system_sensor('mtxrHlCurrent', Sensor.UNIT_AMPERES, scale=Sensor.SCALE_MILLI))
result.append(self.get_system_sensor('mtxrHlFiveVoltage', Sensor.UNIT_VOLTS_DC))
result.append(self.get_system_sensor('mtxrHlPower', Sensor.UNIT_WATTS, 1))
result.append(self.get_system_sensor('mtxrHlPowerSupplyState', ''))
result.append(self.get_system_sensor('mtxrHlThreeDotThreeVoltage', Sensor.UNIT_VOLTS_DC))
result.append(self.get_system_sensor('mtxrHlTwelveVoltage', Sensor.UNIT_VOLTS_DC))
result.append(self.get_system_sensor('mtxrHlVoltage', Sensor.UNIT_VOLTS_DC, precision=1, maximum=42))
return result
def _get_other_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('mtxrHlProcessorFrequency', Sensor.UNIT_HERTZ, scale=Sensor.SCALE_MEGA))
return(result)
def _get_temperature_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('mtxrHlBoardTemperature', Sensor.UNIT_CELSIUS, precision=1, minimum=-20, maximum=120))
result.append(self.get_system_sensor('mtxrHlCpuTemperature', Sensor.UNIT_CELSIUS, precision=1, minimum=-20, maximum=120))
result.append(self.get_system_sensor('mtxrHlProcessorTemperature', Sensor.UNIT_CELSIUS, precision=1, minimum=-20, maximum=120))
result.append(self.get_system_sensor('mtxrHlSensorTemperature', Sensor.UNIT_CELSIUS, precision=1, minimum=-20, maximum=120))
result.append(self.get_system_sensor('mtxrHlTemperature', Sensor.UNIT_CELSIUS, precision=1, minimum=-20, maximum=120))
return result
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/D_Link_Equipment_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python EQUIPMENT-MIB
FILENAME = "mibs/D-Link/Equipment.mib"
MIB = {
"moduleName" : "EQUIPMENT-MIB",
"EQUIPMENT-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""D-Link Corp.""",
"contact" :
"""http://support.dlink.com""",
"description" :
""" equipments MIB.""",
"revisions" : (
{
"date" : "2013-07-25 00:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
),
"identity node" : "swEquipmentMIB",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-TC", "name" : "DateAndTime"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "DisplayString"},
{"module" : "SNMPv2-TC", "name" : "RowStatus"},
{"module" : "Q-BRIDGE-MIB", "name" : "PortList"},
{"module" : "TIMERANGE-MIB", "name" : "swTimeRangeMgmtRangeName"},
{"module" : "DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
{"module" : "DLINK-ID-REC-MIB", "name" : "dlink-common-mgmt"},
),
"typedefs" : {
"MacAddress" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "6",
"max" : "6"
},
],
"range" : {
"min" : "6",
"max" : "6"
},
},
}, # typedefs
"nodes" : {
"swEquipmentMIB" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11",
"status" : "current",
}, # node
"swEquipment" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1",
}, # node
"swEquipmentCapacity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"fanCapable" : {
"nodetype" : "namednumber",
"number" : "0"
},
"redundantPowerCapable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tempteratureDetection" : {
"nodetype" : "namednumber",
"number" : "2"
},
"stackingCapable" : {
"nodetype" : "namednumber",
"number" : "3"
},
"chassisCapable" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the equipment capability supported in the system.""",
}, # scalar
"swFanTrapState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicate the fan warning event trap state.""",
}, # scalar
"swPowerTrapState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicate the power warning event trap state.""",
}, # scalar
"swPowerTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.6",
"status" : "current",
"description" :
"""A list of power information values.""",
}, # table
"swPowerEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.6.1",
"status" : "current",
"linkage" : [
"swPowerUnitIndex",
"swPowerID",
],
"description" :
"""An entry of power information values.""",
}, # row
"swPowerUnitIndex" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.6.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the unit ID in the System.""",
}, # column
"swPowerID" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.6.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Indicates ID of the power
1 : main power
2 : redundant power .""",
}, # column
"swPowerStatus" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.6.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "0"
},
"lowVoltage" : {
"nodetype" : "namednumber",
"number" : "1"
},
"overCurrent" : {
"nodetype" : "namednumber",
"number" : "2"
},
"working" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "4"
},
"connect" : {
"nodetype" : "namednumber",
"number" : "5"
},
"disconnect" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the current power status.
lowVoltage : The voltage of the power unit is too low.
overCurrent: The current of the power unit is too high.
working : The power unit is working normally.
fail : The power unit has failed.
connect : The power unit is connected but not powered on.
disconnect : The power unit is not connected.""",
}, # column
"swFanTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.7",
"status" : "current",
"description" :
"""A list of fan information values.""",
}, # table
"swFanEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.7.1",
"status" : "current",
"linkage" : [
"swFanUnitIndex",
"swFanID",
],
"description" :
"""An entry of fan information values.""",
}, # row
"swFanUnitIndex" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.7.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the unit ID in the System.""",
}, # column
"swFanID" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.7.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the unit ID.""",
}, # column
"swFanStatus" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.7.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "0"
},
"working" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
"speed-0" : {
"nodetype" : "namednumber",
"number" : "3"
},
"speed-low" : {
"nodetype" : "namednumber",
"number" : "4"
},
"speed-middle" : {
"nodetype" : "namednumber",
"number" : "5"
},
"speed-high" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the current fan status.
speed-0 : If the fan function is normal and the fan does not spin
due to the temperature not reaching the threshold,
the status of the fan is speed 0.
speed-low : Fan spin using the lowest speed.
speed-middle: Fan spin using the middle speed.
speed-high : Fan spin using the highest speed.""",
}, # column
"swFanPostion" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.7.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"left" : {
"nodetype" : "namednumber",
"number" : "2"
},
"right" : {
"nodetype" : "namednumber",
"number" : "3"
},
"back" : {
"nodetype" : "namednumber",
"number" : "4"
},
"cpu" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the position of the fan.""",
}, # column
"swFanNumber" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.7.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the fan number.""",
}, # column
"swFanSpeed" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.7.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the fan work speed(RPM).""",
}, # column
"swTemperatureTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.8",
"status" : "current",
"description" :
"""A list of temperature values.""",
}, # table
"swTemperatureEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.8.1",
"status" : "current",
"linkage" : [
"swTemperatureUnitIndex",
],
"description" :
"""An entry of temperature values.""",
}, # row
"swTemperatureUnitIndex" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.8.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Indicates the unit ID in the System.""",
}, # column
"swTemperatureCurrent" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.8.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-500",
"max" : "500"
},
],
"range" : {
"min" : "-500",
"max" : "500"
},
},
},
"access" : "readonly",
"description" :
"""The shelf current temperature.""",
}, # column
"swTemperatureHighThresh" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.8.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-500",
"max" : "500"
},
],
"range" : {
"min" : "-500",
"max" : "500"
},
},
},
"access" : "readwrite",
"description" :
"""The high threshold of shelf temperature.""",
}, # column
"swTemperatureLowThresh" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.8.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-500",
"max" : "500"
},
],
"range" : {
"min" : "-500",
"max" : "500"
},
},
},
"access" : "readwrite",
"description" :
"""The low threshold of shelf temperature.""",
}, # column
"swUnitMgmt" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9",
}, # node
"swUnitStackingVersion" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the version of this stacking system.""",
}, # scalar
"swUnitMaxSupportedUnits" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The maximum number of units that are supported in the system.""",
}, # scalar
"swUnitNumOfUnit" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The current number of units.""",
}, # scalar
"swUnitMgmtTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4",
"status" : "current",
"description" :
"""This table contains the unit information.""",
}, # table
"swUnitMgmtEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1",
"status" : "current",
"linkage" : [
"swUnitMgmtId",
],
"description" :
"""A list of management information for each unit in the system.""",
}, # row
"swUnitMgmtId" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "13"
},
],
"range" : {
"min" : "1",
"max" : "13"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the specific entry in the stacking/chassis
table.""",
}, # column
"swUnitMgmtMacAddr" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"EQUIPMENT-MIB", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address of this unit.""",
}, # column
"swUnitMgmtStartPort" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the starting port of this unit.""",
}, # column
"swUnitMgmtPortRange" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the total ports of this unit.""",
}, # column
"swUnitMgmtFrontPanelLedStatus" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""This object is a set of system LED indicators. The first four
octets are defined as a system LED. The first LED is a power LED.
The second LED in the stacking module is a master LED but in the chassis is
a status LED. The third LED is a console LED. The fourth LED is
an RPS (Redundancy Power Supply) LED. The other octets are the
logical port LED (following dot1dBasePort ordering). Every two
bytes are presented to a port. The first byte is presented as the
link/activity LED. The second byte is presented as the speed LED.
system LED:
01 = fail/error/non existence.
02 = work normal.
link/activity LED :
The most significant bit is used for blinking/solid:
8 = The LED blinks.
The second most significant bit is used for link status:
1 = link fail.
2 = link pass.
speed LED :
01 = 10Mbps.
02 = 100Mbps.
03 = 1000Mbps.
The four remaining bits are currently unused and must be set to 0.
Note:
For the DGS-3700, the first five octets are defined as the system LED.
The first LED is the power LED. The second LED is the console LED.
The third LED is the RPS (Redundancy Power Supply) LED. The fourth
LED is the management port LED. The fifth LED is the fan LED.
For the DGS-3200-10 and DGS-3200-16, the first three octets are defined
as the system LED. The first LED is the power LED. The second LED is the console LED.
The third LED is the RPS (Redundancy Power Supply) LED.
For the DGS-3200-24, the first three octets are defined as the system LED,
the definition of the first three octets is the same as the DGS-3200-10 and DGS-3200-16,
the fourth LED is the SD card LED. The following description is for the SD card LED:
01 = SD card is not present.
02 = SD card is present.
03 = fails to read/write SD card.
04 = read/write SD card successfully.""",
}, # column
"swUnitMgmtCtrlMode" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
"stand-alone" : {
"nodetype" : "namednumber",
"number" : "3"
},
"master" : {
"nodetype" : "namednumber",
"number" : "4"
},
"slave" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the stacking mode the user configured for
the unit. This object can only be configured when the device is
in standalone mode.
other (1) - This object indicates the stacking mode that the user
has configured for the unit. This object can only be configured
when the device is in standalone mode.
auto (2) - The system will auto-assign a stacking role to this
unit to be: standalone(3), master(4), or slave(5).
standalone (3) - The unit is forced to be in standalone mode.
master (4) - The unit is forced to be in master mode. If this unit is
selected to be a master, the unit can modify the configuration of the stacking system.
slave (5) - The unit is forced to be in slave mode. If this unit is
selected to be a slave, it can only view the configuration of
the stacking system.""",
}, # column
"swUnitMgmtCurrentMode" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
"stand-alone" : {
"nodetype" : "namednumber",
"number" : "3"
},
"master" : {
"nodetype" : "namednumber",
"number" : "4"
},
"slave" : {
"nodetype" : "namednumber",
"number" : "5"
},
"backup-master" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""The current stacking role of this unit.""",
}, # column
"swUnitMgmtVersion" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the version of this stacking unit.""",
}, # column
"swUnitMgmtModuleName" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.9.4.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""A textual string containing the stacking unit module name. """,
}, # column
"swUnitMgmtPromVersion" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""A textual string containing the PROM version of the
stacking unit. """,
}, # column
"swUnitMgmtFirmwareVersion" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""A textual string containing the firmware version of the
stacking unit. """,
}, # column
"swUnitMgmtHardwareVersion" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""A textual string containing the hardware version of the
stacking unit. """,
}, # column
"swUnitMgmtPriority" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "63"
},
],
"range" : {
"min" : "1",
"max" : "63"
},
},
},
"access" : "readwrite",
"description" :
"""The Priority of the stacking unit. """,
}, # column
"swUnitMgmtUserSetState" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"other" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
"user" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the user set state of this unit.""",
}, # column
"swUnitMgmtExistState" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"exist" : {
"nodetype" : "namednumber",
"number" : "1"
},
"no-exist" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The state of existence of this unit.""",
}, # column
"swUnitMgmtBoxId" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.4.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"box-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"box-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"box-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"box-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"box-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"box-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"box-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
"box-8" : {
"nodetype" : "namednumber",
"number" : "8"
},
"box-9" : {
"nodetype" : "namednumber",
"number" : "9"
},
"box-10" : {
"nodetype" : "namednumber",
"number" : "10"
},
"box-11" : {
"nodetype" : "namednumber",
"number" : "11"
},
"box-12" : {
"nodetype" : "namednumber",
"number" : "12"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "13"
},
},
},
"access" : "readwrite",
"description" :
"""The box ID of the stacking unit.
When show, it shows the current box ID of this unit;
When set, it sets the new box ID, and the new box ID will
take effect after the next boot.""",
}, # column
"swUnitMgmtSerialNumber" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.9.4.1.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""A text string containing the serial number of the stacking unit.""",
}, # column
"swUnitTopology" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"stand-alone" : {
"nodetype" : "namednumber",
"number" : "1"
},
"duplex-chain" : {
"nodetype" : "namednumber",
"number" : "2"
},
"duplex-ring" : {
"nodetype" : "namednumber",
"number" : "3"
},
"star" : {
"nodetype" : "namednumber",
"number" : "4"
},
"unstable" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""The stacking topology state.""",
}, # scalar
"swUnitStackMode" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates the stacking mode supported in the system.""",
}, # scalar
"swUnitStackForceMasterRole" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates the stack force master role mode supported in the system.""",
}, # scalar
"swUnitStackTrapState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""Indicates the stacking trap state.""",
}, # scalar
"swUnitStackLogState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.9.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""Indicates the stacking log state.""",
}, # scalar
"swExternalAlarmTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.10",
"status" : "current",
"description" :
"""A list of the status of each of the alarm channels by this agent.""",
}, # table
"swExternalAlarmEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.10.1",
"status" : "current",
"linkage" : [
"swExternalAlarmChannel",
],
"description" :
"""An entry containing objects with the status of each alarm channel.""",
}, # row
"swExternalAlarmChannel" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.10.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The number of the alarm channel.""",
}, # column
"swExternalAlarmMessage" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.10.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""Used to configure the alarm message when an alarm occurs on this channel.
If no alarm message is configured on this channel, a default alarm message will be generated.""",
}, # column
"swExternalAlarmStatus" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.10.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"alarming" : {
"nodetype" : "namednumber",
"number" : "1"
},
"normal" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Shows the current status of each alarm channel.""",
}, # column
"swEquipmentPowerSaving" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11",
}, # node
"swEquipPowerSavingLinkDetectState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates the equipment reduced power consumption state.""",
}, # scalar
"swEquipPowerSavingLenDetect" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates the equipment reduced power consumption state with a link partner.""",
}, # scalar
"swEquipPowerSavingHiberState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""This object indicates the power saving state of system hibernation.""",
}, # scalar
"swEquipPowerSavingPortLEDState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""This object indicates the power saving state of port LED.""",
}, # scalar
"swEquipPowerSavingPortState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""This object indicates the power saving state of port.""",
}, # scalar
"swEquipPowerSavingScheduleCtrl" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.11.6",
}, # node
"swEquipPowerSavingHibernationTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.1",
"status" : "current",
"description" :
"""A list of the system hibernation configurations of the power saving.""",
}, # table
"swEquipPowerSavingHibernationEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"swTimeRangeMgmtRangeName",
],
"description" :
"""An entry containing the system hibernation configurations of the power saving.""",
}, # row
"swEquipPowerSavingHiberRowStatus" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.1.1.100",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.""",
}, # column
"swEquipPowerSavingPortLedTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.2",
"status" : "current",
"description" :
"""A list of the port LED configurations of the power saving.""",
}, # table
"swEquipPowerSavingPortLedEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"swTimeRangeMgmtRangeName",
],
"description" :
"""An entry containing the port LED configurations of the power saving.""",
}, # row
"swEquipPowerSavingPortLedRowStatus" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.2.1.100",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.""",
}, # column
"swEquipPowerSavingPortTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.3",
"status" : "current",
"description" :
"""A list of the port configurations of the power saving.""",
}, # table
"swEquipPowerSavingPortEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"swEquipPowerSavingPortIndex",
"swTimeRangeMgmtRangeName",
],
"description" :
"""An entry containing the port configurations of the power saving.""",
}, # row
"swEquipPowerSavingPortIndex" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""Indicates the module's port number.(1..Max port number in
the module).""",
}, # column
"swEquipPowerSavingPortRowStatus" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.6.3.1.100",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.""",
}, # column
"swEquipEeeMgmt" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.11.20",
}, # node
"swEquipEeeState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.11.20.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""This object indicates the EEE state of all ports.
Note:
If the port's bit has a value of '1', specifies the EEE (Energy Efficient Ethernet)
state of this port is 'Enabled',
otherwise, if the port's bit has a value of '0', specifies the EEE
state of this port is 'Disabled'.""",
}, # scalar
"swEquipmentTemperatureCtrl" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.12",
}, # node
"swTemperatureTrapState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.12.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object can enable or disable the warning temperature trap.""",
}, # scalar
"swTemperatureLogState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.12.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object can enable or disable the warning temperature log.""",
}, # scalar
"swEquipmentLEDCtrl" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.13",
}, # node
"swEquipmentPortLEDState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.13.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""This object indicates the LED admin state of all ports.""",
}, # scalar
"swLightPortLED" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.14",
}, # node
"swLightPortLEDTime" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.14.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "3600"
},
],
"range" : {
"min" : "0",
"max" : "3600"
},
},
},
"access" : "readwrite",
"default" : "300",
"description" :
"""Seconds for the port LED keep 'Solid Green' state. Value '0' is represent 'infinite'.
Defaul value is 300 seconds if this node hasn't been configured.""",
}, # scalar
"swLightPortLEDState" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.14.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""'Enabled',all port LED light 'Solid Green'. 'Disabled',all port LED light back to
normal indication. When the timeout of enable light, all the port LED light will
back to normal indication too.""",
}, # scalar
"swExternalAlarmStackingTable" : {
"nodetype" : "table",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.15",
"status" : "current",
"description" :
"""A list of the status of each of the alarm channels by this agent.""",
}, # table
"swExternalAlarmStackingEntry" : {
"nodetype" : "row",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.15.1",
"status" : "current",
"linkage" : [
"swExternalAlarmStackingUnitIndex",
"swExternalAlarmStackingChannel",
],
"description" :
"""An entry containing objects with the status of each alarm channel.""",
}, # row
"swExternalAlarmStackingUnitIndex" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.15.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""Indicates the unit ID in the System..""",
}, # column
"swExternalAlarmStackingChannel" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.15.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""The number of the alarm channel.""",
}, # column
"swExternalAlarmStackingMessage" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.1.15.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""Used to configure the alarm message when an alarm occurs on this channel.
If no alarm message is configured on this channel, a default alarm message will be generated.""",
}, # column
"swExternalAlarmStackingStatus" : {
"nodetype" : "column",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.1.15.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"alarming" : {
"nodetype" : "namednumber",
"number" : "1"
},
"normal" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Shows the current status of each alarm channel.""",
}, # column
"swEquipmentNotify" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2",
}, # node
"swEquipmentNotifyMgmt" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1",
}, # node
"swEquipUnitNotifyMgmt" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.1",
}, # node
"swUnitInsertSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swUnitInsert detection level.""",
}, # scalar
"swUnitRemoveSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swUnitRemove detection level.""",
}, # scalar
"swUnitFailureSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swUnitFailure detection level.""",
}, # scalar
"swEquipPowerNotifyMgmt" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.2",
}, # node
"swPowerStatusChgSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swPowerStatusChg detection level.""",
}, # scalar
"swPowerFailureSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.2.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swPowerFailure detection level.""",
}, # scalar
"swPowerRecoverSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.2.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swPowerRecover detection level.""",
}, # scalar
"swEquipFanNotifyMgmt" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.3",
}, # node
"swFanFailureSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swFanFailure detection level.""",
}, # scalar
"swFanRecoverSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.3.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swFanRecover detection level.""",
}, # scalar
"swEquipTemperatureNotifyMgmt" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.4",
}, # node
"swHighTemperatureSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.4.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swHighTemperature detection level.""",
}, # scalar
"swHighTemperatureRecoverSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.4.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swHighTemperatureRecover detection level.""",
}, # scalar
"swLowTemperatureSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swLowTemperature detection level.""",
}, # scalar
"swLowTemperatureRecoverSeverity" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.1.4.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DLINK-ID-REC-MIB", "name" : "AgentNotifyLevel"},
},
"access" : "readwrite",
"description" :
"""Indicates the swLowTemperatureRecover detection level.""",
}, # scalar
"swEquipmentNotification" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2",
}, # node
"swEquipUnitNotification" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.1",
}, # node
"swEquipUnitNotifyPrefix" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.1.0",
}, # node
"swEquipPowerNotification" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.2",
}, # node
"swEquipPowerNotifyPerfix" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.2.0",
}, # node
"swEquipFanNotification" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.3",
}, # node
"swEquipFanNotifyPrefix" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.3.0",
}, # node
"swEquipTemperatureNotification" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.4",
}, # node
"swEquipTemperatureNotifyPrefix" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.4.0",
}, # node
"swEquipExternalAlarmNotification" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.5",
}, # node
"swEquipExternalAlarmNotifyPrefix" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.5.0",
}, # node
"swNotificationBindings" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.3",
}, # node
"swEquipTemperNotifyBindings" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.2.3.1",
}, # node
"swTemperSensorID" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "notifyonly",
"description" :
"""This object indicates the ID of the temperature sensor in the unit.""",
}, # scalar
"swEquipUnitNotifyBindings" : {
"nodetype" : "node",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.3.2",
}, # node
"swStackTopologyType" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.3.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"chain" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ring" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "notifyonly",
"description" :
"""This object indicates the MAC address of the switch.""",
}, # scalar
"swStackRoleChangeType" : {
"nodetype" : "scalar",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.3.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"backup-to-master" : {
"nodetype" : "namednumber",
"number" : "1"
},
"slave-to-master" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "notifyonly",
"description" :
"""This object indicates the role information of the switch.""",
}, # scalar
}, # nodes
"notifications" : {
"swUnitInsert" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.1.0.1",
"status" : "current",
"objects" : {
"swUnitMgmtId" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swUnitMgmtMacAddr" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Unit Hot Insert notification.""",
}, # notification
"swUnitRemove" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.1.0.2",
"status" : "current",
"objects" : {
"swUnitMgmtId" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swUnitMgmtMacAddr" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Unit Hot Remove notification.""",
}, # notification
"swUnitFailure" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.1.0.3",
"status" : "current",
"objects" : {
"swUnitMgmtId" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Unit Failure notification.""",
}, # notification
"swUnitTPChange" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.1.0.4",
"status" : "current",
"objects" : {
"swStackTopologyType" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swUnitMgmtId" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swUnitMgmtMacAddr" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""The stacking topology change notification.""",
}, # notification
"swUnitRoleChange" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.2.2.1.0.5",
"status" : "current",
"objects" : {
"swStackRoleChangeType" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swUnitMgmtId" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""The stacking unit role change notification.""",
}, # notification
"swPowerStatusChg" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.2.0.1",
"status" : "current",
"objects" : {
"swPowerUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swPowerID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swPowerStatus" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Power Status change notification. The notification is issued
when the swPowerStatus changes in the following cases:
lowVoltage -> overCurrent.
lowVoltage -> working.
lowVoltage -> disconnect.
lowVoltage -> connect.
overCurrent -> lowVoltage.
overCurrent -> working.
overCurrent -> disconnect.
overCurrent -> connect.
working -> lowVoltage.
working -> overCurrent.
working -> connect.
working -> disconnect.
fail -> connect.
fail -> disconnect.
connect -> lowVoltage.
connect -> overCurrent.
connect -> working.
connect -> disconnect.
disconnect -> lowVoltage.
disconnect -> overCurrent.
disconnect -> working.
disconnect -> connect.""",
}, # notification
"swPowerFailure" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.2.2.2.0.2",
"status" : "current",
"objects" : {
"swPowerUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swPowerID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swPowerStatus" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Power Failure notification. The notification is issued
when the swPowerStatus changes in the following cases:
lowVoltage -> fail.
overCurrent -> fail.
working -> fail.
connect -> fail.
disconnect -> fail.""",
}, # notification
"swPowerRecover" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.2.0.3",
"status" : "current",
"objects" : {
"swPowerUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swPowerID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swPowerStatus" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Power Recover notification. The notification is issued
when the swPowerStatus changes in the following cases:
fail -> lowVoltage.
fail -> overCurrent.
fail -> working.""",
}, # notification
"swFanFailure" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.3.0.1",
"status" : "current",
"objects" : {
"swFanUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swFanID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Fan Failure notification.""",
}, # notification
"swFanRecover" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.3.0.2",
"status" : "current",
"objects" : {
"swFanUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swFanID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Fan Recover notification.""",
}, # notification
"swHighTemperature" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.4.0.1",
"status" : "current",
"objects" : {
"swTemperatureUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swTemperSensorID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swTemperatureCurrent" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""High Temperature notification.""",
}, # notification
"swHighTemperatureRecover" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.4.0.2",
"status" : "current",
"objects" : {
"swTemperatureUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swTemperSensorID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swTemperatureCurrent" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""High Temperature notification.""",
}, # notification
"swLowTemperature" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.4.0.3",
"status" : "current",
"objects" : {
"swTemperatureUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swTemperSensorID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swTemperatureCurrent" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Low Temperature notification.""",
}, # notification
"swLowTemperatureRecover" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.4.0.4",
"status" : "current",
"objects" : {
"swTemperatureUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swTemperSensorID" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swTemperatureCurrent" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""Low Temperature notification.""",
}, # notification
"swExternalAlarm" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.192.168.3.11.2.2.5.0.1",
"status" : "current",
"objects" : {
"swExternalAlarmChannel" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swExternalAlarmMessage" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""The notice of an Alarm in the specified channel.""",
}, # notification
"swExternalAlarmStacking" : {
"nodetype" : "notification",
"moduleName" : "EQUIPMENT-MIB",
"oid" : "1.3.6.1.4.1.171.12.11.2.2.5.0.2",
"status" : "current",
"objects" : {
"swExternalAlarmStackingUnitIndex" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swExternalAlarmStackingChannel" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
"swExternalAlarmStackingMessage" : {
"nodetype" : "object",
"module" : "EQUIPMENT-MIB"
},
},
"description" :
"""The notice of an Alarm in the specified channel.""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_des_1210_xx.py
|
from nav.mibs.dlink import DLink
class DLink_DES_1210_XX(DLink):
GUARD_OID = 'sysLoginTimeoutInterval'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/TP_Link_tplink_sysMonitor_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python TPLINK-SYSMONITOR-MIB
FILENAME = "mibs/TP-Link/tplink-sysMonitor.mib"
MIB = {
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"TPLINK-SYSMONITOR-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""TPLINK""",
"contact" :
"""www.tplink.com.cn""",
"description" :
"""Private MIB for System Monitor.""",
"revisions" : (
{
"date" : "2012-12-11 09:30",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
),
"identity node" : "tplinkSysMonitorMIB",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
{"module" : "TPLINK-MIB", "name" : "tplinkMgmt"},
),
"nodes" : {
"tplinkSysMonitorMIB" : {
"nodetype" : "node",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4",
"status" : "current",
}, # node
"tplinkSysMonitorMIBObjects" : {
"nodetype" : "node",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1",
}, # node
"tpSysMonitorCpu" : {
"nodetype" : "node",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.1",
}, # node
"tpSysMonitorCpuTable" : {
"nodetype" : "table",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.1.1",
"status" : "current",
"description" :
"""Displays the CPU utilization of all UNITs.""",
}, # table
"tpSysMonitorCpuEntry" : {
"nodetype" : "row",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.1.1.1",
"status" : "current",
"linkage" : [
"tpSysMonitorCpuUnitNumber",
],
"description" :
"""An entry contains of the information of CPU utilization.""",
}, # row
"tpSysMonitorCpuUnitNumber" : {
"nodetype" : "column",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Displays the UNIT number.""",
}, # column
"tpSysMonitorCpu5Seconds" : {
"nodetype" : "column",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Displays the CPU utilization in 5 seconds.""",
}, # column
"tpSysMonitorCpu1Minute" : {
"nodetype" : "column",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Displays the CPU utilization in 1 minute.""",
}, # column
"tpSysMonitorCpu5Minutes" : {
"nodetype" : "column",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Displays the CPU utilization in 5 minutes.""",
}, # column
"tpSysMonitorMemory" : {
"nodetype" : "node",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.2",
}, # node
"tpSysMonitorMemoryTable" : {
"nodetype" : "table",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.2.1",
"status" : "current",
"description" :
"""Displays the memory utilization of all UNITs.""",
}, # table
"tpSysMonitorMemoryEntry" : {
"nodetype" : "row",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.2.1.1",
"status" : "current",
"linkage" : [
"tpSysMonitorMemoryUnitNumber",
],
"description" :
"""An entry contains of the information of memory utilization.""",
}, # row
"tpSysMonitorMemoryUnitNumber" : {
"nodetype" : "column",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Displays the UNIT number.""",
}, # column
"tpSysMonitorMemoryUtilization" : {
"nodetype" : "column",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.1.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "100"
},
],
"range" : {
"min" : "0",
"max" : "100"
},
},
},
"access" : "readonly",
"description" :
"""Displays the memory utilization.""",
}, # column
"tplinkSysMonitorNotifications" : {
"nodetype" : "node",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.2",
}, # node
}, # nodes
"notifications" : {
"tpSysMonitorCpuOverLoading" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.2.1",
"status" : "current",
"objects" : {
},
"description" :
"""CPU utilization reached the threshold.""",
}, # notification
"tpSysMonitorMemoryOverLoading" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-SYSMONITOR-MIB",
"oid" : "1.3.6.1.4.1.11863.6.4.2.2",
"status" : "current",
"objects" : {
},
"description" :
"""Memory utilization reached the threshold.""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/tplink_poe.py
|
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.smidumps import get_mib
from nav.models.manage import Sensor
from twisted.internet import defer
import inspect
class TPLink_Poe_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('TP_Link_tplink_powerOverEthernet_mib')
@defer.inlineCallbacks
def get_all_sensors(self):
self._logger.debug(here(self))
result = []
ports_poe_sensors = yield self.get_ports_poe_sensors()
result.extend(ports_poe_sensors)
system_poe_sensors = yield self.get_system_poe_sensors()
result.extend(system_poe_sensors)
self._logger.info('%d sensor(s) detected', len(result))
defer.returnValue(result)
@defer.inlineCallbacks
def get_ports_poe_sensors(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'tpPoePortIndex',
'tpPoePower',
'tpPoePowerLimit',
'tpPoeVoltage',
'tpPoeCurrent',
'tpPoePowerStatus'
])
if columns:
for _, item in columns.items():
port = item.get('tpPoePortIndex')
result.append(self.get_port_sensor(port, 'tpPoePower', Sensor.UNIT_WATTS, precision=1))
result.append(self.get_port_sensor(port, 'tpPoePowerLimit', Sensor.UNIT_WATTS, precision=1))
result.append(self.get_port_sensor(port, 'tpPoeVoltage', Sensor.UNIT_VOLTS_DC, precision=1))
result.append(self.get_port_sensor(port, 'tpPoeCurrent', Sensor.UNIT_AMPERES, scale=Sensor.SCALE_MILLI))
result.append(self.get_port_sensor(port, 'tpPoePowerStatus', ''))
defer.returnValue(result)
def get_system_poe_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('tpSystemPowerLimit', Sensor.UNIT_WATTS, precision=1))
result.append(self.get_system_sensor('tpSystemPowerConsumption', Sensor.UNIT_WATTS, precision=1))
result.append(self.get_system_sensor('tpSystemPowerRemain', Sensor.UNIT_WATTS, precision=1))
return result
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_12_ts_me_bx.py
|
<filename>snmp/nav/mibs/dlink_dgs_1210_12_ts_me_bx.py
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_DGS_1210_12_TS_ME_BX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_12TSME_BX_7_03_001_mib')
GET_DDM_SENSORS = 'get_ddm_sensors'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/D_Link_DDM_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python DDM-MGMT-MIB
FILENAME = "mibs/D-Link/DDM.mib"
MIB = {
"moduleName" : "DDM-MGMT-MIB",
"DDM-MGMT-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""D-Link Corp.""",
"contact" :
"""http://support.dlink.com""",
"description" :
"""The structure of DDM for the proprietary enterprise.""",
"revisions" : (
{
"date" : "1909-04-30 00:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
),
"identity node" : "swDdmMIB",
},
"imports" : (
{"module" : "SNMPv2-TC", "name" : "DisplayString"},
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
{"module" : "DLINK-ID-REC-MIB", "name" : "dlink-common-mgmt"},
),
"nodes" : {
"swDdmMIB" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12",
"status" : "current",
}, # node
"swDdmCtrl" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.1",
}, # node
"swDdmTrapState" : {
"nodetype" : "scalar",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.1.171.12.72.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the trap action state.""",
}, # scalar
"swDdmLogState" : {
"nodetype" : "scalar",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the log action state.""",
}, # scalar
"swDdmPowerUnit" : {
"nodetype" : "scalar",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"mw" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dbm" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "mw",
"description" :
"""This object indicates the TX/RX power global unit.""",
}, # scalar
"swDdmInfo" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.2",
}, # node
"swDdmStatus" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.1.171.12.72.2.1",
}, # node
"swDdmStatusTable" : {
"nodetype" : "table",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.2.1.1",
"status" : "current",
"description" :
"""This table contains the DDM status information.""",
}, # table
"swDdmStatusEntry" : {
"nodetype" : "row",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.2.1.1.1",
"status" : "current",
"linkage" : [
"swDdmPort",
],
"description" :
"""This is an entry of the swDdmStatusTable.""",
}, # row
"swDdmPort" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.2.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the port.""",
}, # column
"swDdmTemperature" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.1.171.12.72.2.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This object indicates the real time value of the temperature. As the value
is a floating point data type, the DisplayString type is used to define this parameter.""",
}, # column
"swDdmVoltage" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.2.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This object indicates the real time value of the supply voltage. As the value
value is a floating point data type, the DisplayString type is used to define this parameter.""",
}, # column
"swDdmBiasCurrent" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.2.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This object indicates the real time value of the tx bias.""",
}, # column
"swDdmTxPower" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.2.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This object indicates the real time value of the tx power. As the value
is a floating point data type, the DisplayString type is used to define this parameter.""",
}, # column
"swDdmRxPower" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.2.1.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This object indicates the real time value of the rx power. As the value is
a floating data type, the DisplayString type is used to define this parameter.""",
}, # column
"swDdmMgmt" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3",
}, # node
"swDdmThresholdMgmt" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.1",
}, # node
"swDdmThresholdMgmtTable" : {
"nodetype" : "table",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.1.171.12.72.3.1.1",
"status" : "current",
"description" :
"""This table contains DDM temperature configuration information.""",
}, # table
"swDdmThresholdMgmtEntry" : {
"nodetype" : "row",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.1.1.1",
"status" : "current",
"linkage" : [
"swDdmPort",
"swDdmThresholdType",
],
"description" :
"""This is an entry of the swDdmConfigThresholdTable.""",
}, # row
"swDdmThresholdType" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.1.171.12.72.3.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"temperature" : {
"nodetype" : "namednumber",
"number" : "1"
},
"voltage" : {
"nodetype" : "namednumber",
"number" : "2"
},
"bias" : {
"nodetype" : "namednumber",
"number" : "3"
},
"txPower" : {
"nodetype" : "namednumber",
"number" : "4"
},
"rxPower" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the threshold type.""",
}, # column
"swDdmHighAlarm" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object indicates the high alarm threshold value to be configured. As the
value is a floating point data type, the DisplayString type is used to define this parameter.""",
}, # column
"swDdmLowAlarm" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object indicates the low alarm threshold value to be configured. As the
value is a floating data type, the DisplayString type is used to define this parameter.""",
}, # column
"swDdmHighWarning" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object indicates the high warning threshold value to be configured. As
the value is a floating data type, the DisplayString type is used to define this parameter.""",
}, # column
"swDdmLowWarning" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object indicates the low warning threshold value to be configured. As
the value is a floating data type, the DisplayString type is used to define this parameter.""",
}, # column
"swDdmActionMgmt" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2",
}, # node
"swDdmActionMgmtTable" : {
"nodetype" : "table",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.1",
"status" : "obsolete",
"description" :
"""This table contains the configuration of the action taken
when any parameter exceeds its threshold.""",
}, # table
"swDdmActionMgmtEntry" : {
"nodetype" : "row",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.1.1",
"status" : "obsolete",
"linkage" : [
"swDdmPort",
"swDdmActionType",
],
"description" :
"""This is an entry of the swDdmConfigActionTable.""",
}, # row
"swDdmActionType" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.1.1.1",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"alarm" : {
"nodetype" : "namednumber",
"number" : "1"
},
"warning" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the action type.""",
}, # column
"swDdmShutdown" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.1.1.2",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
"other" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the shutdown action. The
value 'other' means that the port does not support DDM.""",
}, # column
"swDdmTrapAndLog" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.1.1.3",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
"other" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the trap and log action. The value
'other' means that the port does not support DDM.""",
}, # column
"swDdmPortMgmtTable" : {
"nodetype" : "table",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.2",
"status" : "current",
"description" :
"""This table contains the configuration of the DDM state and shutdown mode
when any parameter exceeds its threshold.""",
}, # table
"swDdmPortMgmtEntry" : {
"nodetype" : "row",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.2.1",
"status" : "current",
"linkage" : [
"swDdmPort",
],
"description" :
"""This is an entry of the swDdmPortMgmtTable.""",
}, # row
"swDdmPortState" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the DDM state information by port.""",
}, # column
"swDdmPortShutdown" : {
"nodetype" : "column",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.3.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"alarm" : {
"nodetype" : "namednumber",
"number" : "1"
},
"warning" : {
"nodetype" : "namednumber",
"number" : "2"
},
"none" : {
"nodetype" : "namednumber",
"number" : "3"
},
"other" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates whether or not to shutdown the port
on which the operating parameter exceeds the specified threshold.""",
}, # column
"swDdmNotify" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.1.171.12.72.4",
}, # node
"swDdmNotifyPrefix" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.4.0",
}, # node
"swDdmNotificationBinding" : {
"nodetype" : "node",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.4.1",
}, # node
"swDdmThresholdExceedType" : {
"nodetype" : "scalar",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.1.171.12.72.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"high" : {
"nodetype" : "namednumber",
"number" : "1"
},
"low" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "notifyonly",
"description" :
"""This object is used by swDdmAlarmTrap and swDdmWarningTrap to indicate if
the threshold that was exceeded was a high threshold or a low threshold.""",
}, # scalar
"swDdmThresholdExceedOrRecover" : {
"nodetype" : "scalar",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"exceed" : {
"nodetype" : "namednumber",
"number" : "1"
},
"recover" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "notifyonly",
"description" :
"""This object is used by swDdmAlarmTrap and swDdmWarningTrap,to indicate the GBIC
is exceeding its ddm threshold or recover to normal status.""",
}, # scalar
}, # nodes
"notifications" : {
"swDdmAlarmTrap" : {
"nodetype" : "notification",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.4.0.1",
"status" : "current",
"objects" : {
"swDdmPort" : {
"nodetype" : "object",
"module" : "DDM-MGMT-MIB"
},
"swDdmThresholdType" : {
"nodetype" : "object",
"module" : "DDM-MGMT-MIB"
},
"swDdmThresholdExceedType" : {
"nodetype" : "object",
"module" : "DDM-MGMT-MIB"
},
"swDdmThresholdExceedOrRecover" : {
"nodetype" : "object",
"module" : "DDM-MGMT-MIB"
},
},
"description" :
"""The trap is sent when any parameter value exceeds the alarm threshold value
or recover to normal status depending on the configuration of the trap action.""",
}, # notification
"swDdmWarningTrap" : {
"nodetype" : "notification",
"moduleName" : "DDM-MGMT-MIB",
"oid" : "1.3.6.1.4.192.168.127.12.4.0.2",
"status" : "current",
"objects" : {
"swDdmPort" : {
"nodetype" : "object",
"module" : "DDM-MGMT-MIB"
},
"swDdmThresholdType" : {
"nodetype" : "object",
"module" : "DDM-MGMT-MIB"
},
"swDdmThresholdExceedType" : {
"nodetype" : "object",
"module" : "DDM-MGMT-MIB"
},
"swDdmThresholdExceedOrRecover" : {
"nodetype" : "object",
"module" : "DDM-MGMT-MIB"
},
},
"description" :
"""The trap is sent when any parameter value exceeds the warning threshold value
or recover to normal status depending on the configuration of the trap action.""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_10_p_cx.py
|
<filename>snmp/nav/mibs/dlink_dgs_1210_10_p_cx.py
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_DGS_1210_10_P_CX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_10P_CX_4_10_002_mib')
GET_PORTS_POE_SENSORS = 'get_ports_poe_sensors'
GET_SYSTEM_POE_SENSORS = 'get_system_poe_sensors'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_20_me_bx.py
|
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_DGS_1210_20_ME_BX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_20ME_BX_7_03_001_mib.py')
GET_DDM_SENSORS = 'get_ddm_sensors'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_ddm.py
|
from nav.mibs.dlink import DLink
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_Ddm_Mib(MibRetriever, DLink):
mib = get_mib('D_Link_DDM_mib')
GUARD_OID = 'swDdmTrapState'
GET_DDM_SENSORS = 'get_ddm_sensors_old'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/extreme_networks_software_monitor.py
|
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.smidumps import get_mib
from twisted.internet import defer
import inspect
class Extreme_Networks_Software_Monitor_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('Extreme_Networks_EXTREME_SOFTWARE_MONITOR_MIB_mib')
GUARD_OID = 'extremeSwMonitor'
@defer.inlineCallbacks
def get_cpu_loadavg(self):
self._logger.debug(here(self))
result = {}
columns = yield self.retrieve_columns([
'extremeCpuMonitorSystemSlotId',
'extremeCpuMonitorSystemUtilization1min',
'extremeCpuMonitorSystemUtilization5mins'
])
if columns:
for _, item in columns.items():
slot_id = item.get('extremeCpuMonitorSystemSlotId')
slot_name = 'slot_%d' % slot_id
utilization_1_min = item.get('extremeCpuMonitorSystemUtilization1min')
utilization_5_min = item.get('extremeCpuMonitorSystemUtilization5mins')
result[slot_name] = [
(1, utilization_1_min),
(5, utilization_5_min)
]
defer.returnValue(result)
def get_cpu_utilization(self):
self._logger.debug(here(self))
return defer.succeed(None)
@defer.inlineCallbacks
def get_memory_usage(self):
self._logger.debug(here(self))
result = {}
columns = yield self.retrieve_columns([
'extremeMemoryMonitorSystemSlotId',
'extremeMemoryMonitorSystemTotal',
'extremeMemoryMonitorSystemFree'
])
if columns:
for _, item in columns.items():
slot_id = item.get('extremeMemoryMonitorSystemSlotId')
slot_name = 'slot_%d' % slot_id
total = int(item.get('extremeMemoryMonitorSystemTotal')) * 1024
free = int(item.get('extremeMemoryMonitorSystemFree')) * 1024
used = total - free
result[slot_name] = (used, free)
defer.returnValue(result)
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_10_p_me_ax.py
|
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.smidumps import get_mib
class DLink_DGS_1210_10_P_ME_AX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_10PME_AX_6_13_017_mib')
GET_DDM_SENSORS = 'get_ddm_sensors'
GET_PORTS_POE_SENSORS = 'get_ports_poe_sensors'
GET_SYSTEM_POE_SENSORS = 'get_system_poe_sensors'
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/D_Link_DES_1210_08P_BX_v3_12_004_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python DES-1210-08P_BX
FILENAME = "mibs/D-Link/DES-1210-08P_BX_v3.12.004.mib"
MIB = {
"moduleName" : "DES-1210-08P_BX",
"DES-1210-08P_BX" : {
"nodetype" : "module",
"language" : "SMIv2",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "enterprises"},
{"module" : "SNMPv2-SMI", "name" : "IpAddress"},
{"module" : "SNMPv2-SMI", "name" : "Integer32"},
{"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
{"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
{"module" : "SNMPv2-SMI", "name" : "Counter32"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
{"module" : "IF-MIB", "name" : "InterfaceIndex"},
{"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
{"module" : "IF-MIB", "name" : "ifIndex"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpEngineID"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpSecurityLevel"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBridge"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBasePortEntry"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBasePort"},
{"module" : "SNMPv2-TC", "name" : "RowStatus"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "DisplayString"},
{"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
{"module" : "SNMPv2-TC", "name" : "MacAddress"},
{"module" : "IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
),
"typedefs" : {
"VlanIndex" : {
"basetype" : "Unsigned32",
"status" : "current",
"description" :
"""A value used to index per-VLAN tables: values of 0 and
4095 are not permitted; if the value is between 1 and
4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with
global scope within a given bridged domain (see VlanId
textual convention). If the value is greater than 4095
then it represents a VLAN with scope local to the
particular agent, i.e. one without a global VLAN-ID
assigned to it. Such VLANs are outside the scope of
IEEE 802.1Q but it is convenient to be able to manage them
in the same way using this MIB.""",
},
"PortList" : {
"basetype" : "OctetString",
"status" : "current",
"description" :
"""Each octet within this value specifies a set of eight
ports, with the first octet specifying ports 1 through
8, the second octet specifying ports 9 through 16, etc.
Within each octet, the most significant bit represents
the lowest numbered port, and the least significant bit
represents the highest numbered port. Thus, each port
of the bridge is represented by a single bit within the
value of this object. If that bit has a value of '1'
then that port is included in the set of ports; the port
is not included if its bit has a value of '0'.""",
},
"BridgeId" : {
"basetype" : "OctetString",
"status" : "current",
"ranges" : [
{
"min" : "8",
"max" : "8"
},
],
"range" : {
"min" : "8",
"max" : "8"
},
"description" :
"""The Bridge-Identifier as used in the
Spanning Tree
Protocol to uniquely identify a bridge. Its first two
octets (in network byte order) contain a priority
value and its last 6 octets contain the MAC address
used to refer to a bridge in a unique fashion
(typically, the numerically smallest MAC address
of all ports on the bridge).
Several objects in this MIB module represent values of
timers used by the Spanning Tree Protocol. In this
MIB, these timers have values in units of hundreths of
a second (i.e. 1/100 secs).
These timers, when stored in a Spanning Tree Protocol's
BPDU, are in units of 1/256 seconds. Note, however,
that 802.1D-1990 specifies a settable granularity of
no more than 1 second for these timers. To avoid
ambiguity, a data type is defined here as a textual
convention and all representation of these timers
in this MIB module are defined using this data type. An
algorithm is also defined for converting between the
different units, to ensure a timer's value is not distorted by multiple conversions.""",
},
"Timeout" : {
"basetype" : "Integer32",
"status" : "current",
"format" : "d4",
"description" :
"""A STP timer in units of 1/100 seconds
To convert a Timeout value into a value in units of
1/256 seconds, the following algorithm should be used:
b = floor( (n * 256) / 100)
where:
floor = quotient [ignore remainder]
n is the value in 1/100 second units
b is the value in 1/256 second units
To convert the value from 1/256 second units back to
1/100 seconds, the following algorithm should be used:
n = ceiling( (b * 100) / 256)
where:
ceiling = quotient [if remainder is 0], or
quotient + 1 [if remainder is non-zero]
n is the value in 1/100 second units
b is the value in 1/256 second units
Note: it is important that the arithmetic operations are
done in the order specified (i.e., multiply first, divide
second).""",
},
"RmonStatus" : {
"basetype" : "Enumeration",
"status" : "current",
"valid" : {
"nodetype" : "namednumber",
"number" : "1"
},
"createRequest" : {
"nodetype" : "namednumber",
"number" : "2"
},
"underCreation" : {
"nodetype" : "namednumber",
"number" : "3"
},
"invalid" : {
"nodetype" : "namednumber",
"number" : "4"
},
"description" :
"""The status of a table entry.
Setting this object to the value invalid(4) has the
effect of invalidating the corresponding entry.
That is, it effectively disassociates the mapping
identified with said entry.
It is an implementation-specific matter as to whether
the agent removes an invalidated entry from the table.
Accordingly, management stations must be prepared to
receive tabular information from agents that corresponds
to entries currently not in use. Proper
interpretation of such entries requires examination
of the relevant RmonStatus object.
An existing instance of this object cannot be set to
createRequest(2). This object may only be set to
createRequest(2) when this instance is created. When
this object is created, the agent may wish to create
supplemental object instances with default values
to complete a conceptual row in this table. Because the
creation of these default objects is entirely at the option
of the agent, the manager must not assume that any will be
created, but may make use of any that are created.
Immediately after completing the create operation, the agent
must set this object to underCreation(3).
When in the underCreation(3) state, an entry is allowed to
exist in a possibly incomplete, possibly inconsistent state,
usually to allow it to be modified in multiple PDUs. When in
this state, an entry is not fully active.
Entries shall exist in the underCreation(3) state until
the management station is finished configuring the entry
and sets this object to valid(1) or aborts, setting this
object to invalid(4). If the agent determines that an
entry has been in the underCreation(3) state for an
abnormally long time, it may decide that the management
station has crashed. If the agent makes this decision,
it may set this object to invalid(4) to reclaim the
entry. A prudent agent will understand that the
management station may need to wait for human input
and will allow for that possibility in its
determination of this abnormally long period.
An entry in the valid(1) state is fully configured and
consistent and fully represents the configuration or
operation such a row is intended to represent. For
example, it could be a statistical function that is
configured and active, or a filter that is available
in the list of filters processed by the packet capture
process.
A manager is restricted to changing the state of an entry in
the following ways:
To: valid createRequest underCreation invalid
From:
valid OK NO OK OK
createRequest N/A N/A N/A N/A
underCreation OK NO OK OK
invalid NO NO NO OK
nonExistent NO OK NO OK
In the table above, it is not applicable to move the state
from the createRequest state to any other state because the
manager will never find the variable in that state. The
nonExistent state is not a value of the enumeration, rather
it means that the entryStatus variable does not exist at all.
An agent may allow an entryStatus variable to change state in
additional ways, so long as the semantics of the states are
followed. This allowance is made to ease the implementation of
the agent and is made despite the fact that managers should
never exercise these additional state transitions.""",
},
"LldpManAddress" : {
"basetype" : "OctetString",
"status" : "current",
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
"description" :
"""The value of a management address associated with the LLDP
agent that may be used to reach higher layer entities to
assist discovery by network management.
It should be noted that appropriate security credentials,
such as SNMP engineId, may be required to access the LLDP
agent using a management address. These necessary credentials
should be known by the network management and the objects
associated with the credentials are not included in the
LLDP agent.""",
},
"Ipv6Address" : {
"basetype" : "OctetString",
"status" : "current",
"ranges" : [
{
"min" : "16",
"max" : "16"
},
],
"range" : {
"min" : "16",
"max" : "16"
},
"format" : "2x:",
"description" :
"""This data type is used to model IPv6 addresses.
This is a binary string of 16 octets in network
byte-order.""",
},
"PortLaMode" : {
"basetype" : "Enumeration",
"status" : "current",
"lacp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"static" : {
"nodetype" : "namednumber",
"number" : "2"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "3"
},
"description" :
"""Defines how a Port Channel does channeling.
lacp(1) - place the port into passive
negotiation state, in which the
port waits for its peer to
initiate negotiation.
static(2) - force the port to enable
channeling.
disable(3) - channeling is disabled.""",
},
"LacpKey" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
"description" :
"""The Actor or Partner Key value (0..65535).""",
},
}, # typedefs
"nodes" : {
"d-link" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171",
}, # node
"dlink-products" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10",
}, # node
"dlink-DES1210SeriesProd" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12",
}, # node
"des-1210-08p-bx" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13",
}, # node
"companySystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1",
}, # node
"sysSwitchName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""System name used for identification of the device.
The following characters are allowed to input.
0 ~ 9 / a ~ z / A ~ Z
Special character: ( ) ?? + _ = .""",
}, # scalar
"sysHardwareVersion" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readonly",
"default" : "",
"description" :
"""Version number of the Hardware.""",
}, # scalar
"sysFirmwareVersion" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readonly",
"default" : "",
"description" :
"""Version number of the Firmware.""",
}, # scalar
"sysLoginTimeoutInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "3",
"max" : "30"
},
],
"range" : {
"min" : "3",
"max" : "30"
},
},
},
"access" : "readwrite",
"default" : "5",
"description" :
"""This time interval is used to count the time and
logout web interface automatically.""",
}, # scalar
"sysLocationName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The location name of this node (e.g., `telephone closet,
3rd floor'). If the location is unknown, the value is
the zero-length string.""",
}, # scalar
"sysGroupInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "120",
"max" : "1225"
},
],
"range" : {
"min" : "0",
"max" : "1225"
},
},
},
"access" : "readwrite",
"description" :
"""Group Interval is used to send D-link Discover packet to D-link
SmartConsole Utility frequency.
The timer in units of seconds.
Set value 0 to disable group Interval.""",
}, # scalar
"sysSystemPassword" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used to set System Password,
The following characters are allowed to input:
semicolon, question mark, space, and double quotation mark.""",
}, # scalar
"sysSafeGuardEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enable",
"description" :
"""This object is used to set Safeguard Enable\Disable.""",
}, # scalar
"sysRestart" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"default" : "false",
"description" :
"""This object allows the user to restart the Switch
(i.e)the entire switch will operationally go down and
start again. Setting a value of 'true' causes the switch
to be restarted.
When the switch operationally goes down, configuration
save operation is initiated based on the configuration save
option chosen.
When the switch operationally come up, the saved configurations
are restored based on the restore option chosen.
Once the switch is restarted, the value of this object reverts
to 'false'.""",
}, # scalar
"sysSave" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"default" : "false",
"description" :
"""This object is used to save Configuration.""",
}, # scalar
"sysPortCtrlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.13",
"status" : "current",
"description" :
"""A table to control the port specific parameters of the device like speed,
duplex mode, etc.""",
}, # table
"sysPortCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.13.1",
"status" : "current",
"linkage" : [
"sysPortCtrlIndex",
],
"description" :
"""An entry appears in this table for each interface in the system.
Index to the table is the interface index of the port.""",
}, # row
"sysPortCtrlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.13.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Interface index of the port for the configuration
in this entry applies.""",
}, # column
"sysPortCtrlSpeed" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.13.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rate1000M-Full" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rate100M-Full" : {
"nodetype" : "namednumber",
"number" : "2"
},
"rate100M-Half" : {
"nodetype" : "namednumber",
"number" : "3"
},
"rate10M-Full" : {
"nodetype" : "namednumber",
"number" : "4"
},
"rate10M-Half" : {
"nodetype" : "namednumber",
"number" : "5"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "6"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""Configures interface speed.""",
}, # column
"sysPortCtrlOperStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.13.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"down" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rate1000M-Full" : {
"nodetype" : "namednumber",
"number" : "2"
},
"rate100M-Full" : {
"nodetype" : "namednumber",
"number" : "3"
},
"rate100M-Half" : {
"nodetype" : "namednumber",
"number" : "4"
},
"rate10M-Full" : {
"nodetype" : "namednumber",
"number" : "5"
},
"rate10M-Half" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""The port's operating speed state.""",
}, # column
"sysPortCtrlMDI" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.13.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"mdi" : {
"nodetype" : "namednumber",
"number" : "2"
},
"mdix" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Configures interface auto/mdi/mdix mode.
The default setting is Auto.""",
}, # column
"sysPortCtrlFlowControl" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.13.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enables / disables flow control for the interface.""",
}, # column
"sysPortCtrlFlowControlOper" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.13.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The link parner negotiate port's operating flow control state.""",
}, # column
"sysPortCtrlType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.13.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"fastethernet" : {
"nodetype" : "namednumber",
"number" : "1"
},
"gigabitethernet" : {
"nodetype" : "namednumber",
"number" : "2"
},
"fiberwith100BaseSFPModule" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fiberwith1000BaseSFPModule" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The port's media type.""",
}, # column
"sysDhcpAutoConfiguration" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object indicates auto config is enabled or disabled.""",
}, # scalar
"sysDdp" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.30",
}, # node
"sysDdpGlobalOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.30.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates D-Link discover protocol is enabled or disabled.""",
}, # scalar
"sysDdpGeneralReportOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.30.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates D-Link discover protocol report is enabled or disabled.
This object only can be modified when D-Link discover protocol state is enabled.""",
}, # scalar
"sysDdpGeneralReportTimer" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.1.30.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"time-30seconds" : {
"nodetype" : "namednumber",
"number" : "30"
},
"time-60seconds" : {
"nodetype" : "namednumber",
"number" : "60"
},
"time-90seconds" : {
"nodetype" : "namednumber",
"number" : "90"
},
"time-120seconds" : {
"nodetype" : "namednumber",
"number" : "120"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates D-Link discover protocol report time period.
This object only can be modified when both D-Link discover protocol state and
D-Link discover protocol report state are enabled.""",
}, # scalar
"sysDdpProtStatusTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.30.4",
"status" : "current",
"description" :
"""A table to control the port status of D-Link discover protocol.""",
}, # table
"sysDdpProtStatusEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.30.4.1",
"status" : "current",
"linkage" : [
"sysDdpProtStatusIndex",
],
"description" :
"""An entry appears in this table for each port D-Link discover protocol status.""",
}, # row
"sysDdpProtStatusIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.30.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Interface index of the port for the configuration
in this entry applies.""",
}, # column
"sysDdpProtStatusControl" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.1.30.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Configures the port status of D-Link discover protocol.""",
}, # column
"companyIpifGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.2",
}, # node
"ipv4sysIpAddrCfgMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.1",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"manual" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "manual",
"description" :
"""Specifies the means by which the default interface in the device
gets the IP address.
If 'manual' mode is selected, the default interface takes the
'sysDefaultIpAddr' configured in the system.
If 'dynamic' mode is selected, the default interface gets the IP address
through dynamic IP address configuration protocols such as RARP client,
BootP client, DHCP Client, etc.
If the system fails to get the IP address dynamically through all the
above protocols, the default interface uses the 'sysDefaultIpAddr'
configured in the system.""",
}, # scalar
"ipv4sysIpAddr" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.2.2",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Default IP Address of the system.
This IP address, if modified, will take effect only when the
configuration is stored & restored.""",
}, # scalar
"ipv4sysIpSubnetMask" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.3",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""IP subnet mask for the default IP address.
This subnet mask, if modified, will take effect only when the
configuration is stored & restored.""",
}, # scalar
"ipv4sysGateway" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.4",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Gateway""",
}, # scalar
"ipifSupportV4V6Info" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5",
}, # node
"sysIpAddrCfgMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"manual" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "manual",
"description" :
"""Specifies the means by which the default interface in the device
gets the IP address.
If 'manual' mode is selected, the default interface takes the
'sysDefaultIpAddr' configured in the system.
If 'dynamic' mode is selected, the default interface gets the IP address
through dynamic IP address configuration protocols such as RARP client,
BootP client, DHCP Client, etc.
If the system fails to get the IP address dynamically through all the
above protocols, the default interface uses the 'sysDefaultIpAddr'
configured in the system.""",
}, # scalar
"sysIpAddr" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.2.5.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Default IP Address of the system.
This IP address, if modified, will take effect only when the
configuration is stored & restored.""",
}, # scalar
"sysIpSubnetMask" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.2.5.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""IP subnet mask for the default IP address.
This subnet mask, if modified, will take effect only when the
configuration is stored & restored.""",
}, # scalar
"sysGateway" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.2.5.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Gateway""",
}, # scalar
"ipifName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readonly",
"description" :
"""The Description for the interface.""",
}, # scalar
"ipifv6GlobalStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The ID of VLAN that you want this interface to be in.
It must be a exist vlan id.""",
}, # scalar
"ipifv6DHCPStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The state of DHCPv6 that you want this interface to be in.
It must be a exist vlan id.""",
}, # scalar
"ipifv6AutolinkloStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The global state of link local that you want this interface to be in.
It must be a exist vlan id.""",
}, # scalar
"ipifv6NSRetransmitTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "3600"
},
],
"range" : {
"min" : "1",
"max" : "3600"
},
},
},
"access" : "readwrite",
"description" :
"""The NS's retransmit time that you want this interface to be in.
It must be a exist vlan id.""",
}, # scalar
"ipifv6DefaultGateway" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.2.5.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The ipv6 default gateway that you want this interface to be in.
To delete gateway, please insert address
'0000:0000:0000:0000:0000:0000:0000:0000'.""",
}, # scalar
"ipifV6AddressTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.12",
"status" : "current",
"description" :
"""A list of interface entries.""",
}, # table
"ipifV6AddressEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.12.1",
"create" : "true",
"status" : "current",
"linkage" : [
"ipifV6AddressMainIndex",
"ipifV6AddressIpAddr",
"ipifV6AddressIpPrefix",
],
"description" :
"""An entry containing management information applicable
to a particular interface.""",
}, # row
"ipifV6AddressMainIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.12.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The index of this IPv6 entry.""",
}, # column
"ipifV6AddressIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.12.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"default" : "0x00000000",
"description" :
"""The ip address of this IPv6 entry.""",
}, # column
"ipifV6AddressIpPrefix" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.12.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The ip prefix of this IPv6 entry.""",
}, # column
"ipifV6AddressIpType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.2.5.12.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unicast" : {
"nodetype" : "namednumber",
"number" : "1"
},
"anycast" : {
"nodetype" : "namednumber",
"number" : "2"
},
"linklocal" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""The ip type of this IPv6 entry.""",
}, # column
"ipifV6AddressRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.2.5.12.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Multi Interface Table. Only a subset
of the rowstatus variables (active, createAndWait, destroy) are available.""",
}, # column
"companyTftpGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3",
}, # node
"tftpFwServerIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.1",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The TFTP server's IP address is used to upload or
download firmware.""",
}, # scalar
"tftpFwImageFileName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.2",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "64"
},
],
"range" : {
"min" : "1",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""Configure firmware filename to download.""",
}, # scalar
"tftpFwTftpOperation" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.3",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"download" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The tftp operates to perform downloading the firmware image
to the unit. This object is used in conjunction with
configBootTftpServerIp and configBootImageFileName.""",
}, # scalar
"tftpFwTftpOperationStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.3.4",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
"transmit" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The tftp operation status represent firmware backup or upgrade status.""",
}, # scalar
"tftpCfgServerIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.5",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The TFTP server's IP address is used to upload or
download configuration file.""",
}, # scalar
"tftpConfigFileName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.6",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "64"
},
],
"range" : {
"min" : "1",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The configuration filename is used to store or retrieve config
from the tftp server.""",
}, # scalar
"tftpConfigTftpOperation" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.7",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"download" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""The tftp operates to perform either downloading the
configuration file to the unit or uploading the current
configuration file to the tftp server. This object is
used in conjunction with configTftpServerIpAddress
and configTftpServerFileName.""",
}, # scalar
"tftpConfigTftpOperationStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.3.8",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""The tftp operation status represent configuration file backup or restore status.""",
}, # scalar
"tftpFwTargetGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.9",
}, # node
"tftpFwTargetServerIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.9.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The TFTP server's IP address is used to upload or
download firmware.""",
}, # scalar
"tftpFwTargetServerIpType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.9.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Type of IP interface.""",
}, # scalar
"tftpFwTargetInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.3.9.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the tftpFwTargetServerIpAddress
is linklocal address.""",
}, # scalar
"tftpFwTargetImageFileName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.3.9.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "64"
},
],
"range" : {
"min" : "1",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""Configure firmware filename to download.""",
}, # scalar
"tftpFwTargetTftpOperation" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.3.9.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"download" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The tftp operates to perform downloading the firmware image
to the unit. This object is used in conjunction with
configBootTftpServerIp and configBootImageFileName.""",
}, # scalar
"tftpFwTargetTftpOperationStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.9.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
"transmit" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The tftp operation status represent firmware backup or upgrade status.""",
}, # scalar
"tftpCfgTargetGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.10",
}, # node
"tftpCfgTargetServerIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The TFTP server's IP address is used to upload or
download configuration file.""",
}, # scalar
"tftpCfgTargetServerIpType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.10.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Type of IP interface.""",
}, # scalar
"tftpCfgTargetInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.10.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the tftpCfgTargetServerIpAddress
is linklocal address.""",
}, # scalar
"tftpCfgTargetImageFileName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.3.10.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "64"
},
],
"range" : {
"min" : "1",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The configuration filename is used to store or retrieve config
from the tftp server.""",
}, # scalar
"tftpCfgTargetTftpOperation" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.3.10.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"download" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""The tftp operates to perform either downloading the
configuration file to the unit or uploading the current
configuration file to the tftp server. This object is
used in conjunction with configTftpServerIpAddress
and configTftpServerFileName.""",
}, # scalar
"tftpCfgTargetTftpOperationStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.3.10.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""The tftp operation status represent configuration file backup or restore status.""",
}, # scalar
"companyMiscGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.4",
}, # node
"miscReset" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.4.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"reset" : {
"nodetype" : "namednumber",
"number" : "1"
},
"noop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Physically resets the unit - use with care. A (1) resets
the unit, a (2) does nothing.""",
}, # scalar
"miscStatisticsReset" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.4.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"reset" : {
"nodetype" : "namednumber",
"number" : "1"
},
"noop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Resets the units statistics. A (1) resets
the statistics count, a (2) does nothing.""",
}, # scalar
"companyRSTP" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6",
}, # node
"stpGlobal" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.1",
}, # node
"rstpStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The administrative module status requested by management for the RSTP
Module. This enables or disables RSTP in the system. A value of 'enabled'
(1) indicates that RSTP must be enabled in the device on all the ports.
A value of 'disabled'(2) indicates that RSTP must be disabled in the
device on all the ports.""",
}, # scalar
"stpVersion" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"stpCompatible" : {
"nodetype" : "namednumber",
"number" : "0"
},
"rstp" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "rstp",
"description" :
"""The version of Spanning Tree Protocol the bridge is
currently running. The value 'stpCompatible(0)'
indicates the Spanning Tree Protocol specified in
IEEE 802.1D and 'rstp(2)' indicates the Rapid Spanning
Tree Protocol specified in IEEE 802.1w. New value may
be defined as future versions of the protocol become
available.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpPriority" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "61440"
},
],
"range" : {
"min" : "0",
"max" : "61440"
},
},
},
"access" : "readwrite",
"description" :
"""The bridge priority vector, as defined in 17.6. The first
(RootBridgeID) and third (DesignatedBridgeID)components are
both equal to the value of the Bridge Identifier (17.18.2).
The other components are zero.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpTxHoldCount" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"default" : "6",
"description" :
"""The value used by the Port Transmit state machine to limit
the maximum transmission rate.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpProtocolSpecification" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"decLb100" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ieee8021d" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""An indication of what version of the Spanning
Tree Protocol is being run. The value
'decLb100(2)' indicates the DEC LANbridge 100
Spanning Tree protocol. IEEE 802.1d
implementations will return 'ieee8021d(3)'. If
future versions of the IEEE Spanning Tree Protocol
are released that are incompatible with the
current version a new value will be defined.""",
}, # scalar
"stpTimeSinceTopologyChange" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""The time (in hundredths of a second) since the
last time a topology change was detected by the
bridge entity.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpTopChanges" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of topology changes detected by
this bridge since the management entity was last
reset or initialized.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpDesignatedRoot" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The bridge identifier of the root of the spanning
tree as determined by the Spanning Tree Protocol
as executed by this node. This value is used as
the Root Identifier parameter in all Configuration
Bridge PDUs originated by this node.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpRootCost" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The cost of the path to the root as seen from
this bridge.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpRootPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the port which offers the
lowest cost path from this bridge to the root
bridge.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpMaxAge" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""The maximum age of Spanning Tree Protocol
information learned from the network on any port
before it is discarded, in units of hundredths of
a second. The rootTimes variable comprises the
Bridge��s operational timer parameter values
(Message Age, Max Age, Forward Delay, and
Hello Time), derived from the values stored in
portTimes (17.19.22) for the Root Port or from
BridgeTimes (17.18.4).""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpHelloTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""The amount of time between the transmission of
Configuration bridge PDUs by this node on any port
when it is the root of the spanning tree or trying
to become so, in units of hundredths of a second.
The interval between periodic transmissions of
Configuration Messages by Designated Ports
(Table 17-1).""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpHoldTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This time value determines the interval length
during which no more than two Configuration bridge
PDUs shall be transmitted by this node, in units
of hundredths of a second.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpForwardDelay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""This time value, measured in units of hundredths
of a second, controls how fast a port changes its
spanning state when moving towards the Forwarding
state. The value determines how long the port
stays in each of the Listening and Learning
states, which precede the Forwarding state. This
value is also used, when a topology change has
been detected and is underway, to age all dynamic
entries in the Forwarding Database.
The delay used by STP Bridges (17.4) to transition
Root and Designated Ports to Forwarding
(Table 17-1).""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpBridgeMaxAge" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "DES-1210-08P_BX",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "600",
"max" : "4000"
},
],
"range" : {
"min" : "600",
"max" : "4000"
},
},
},
"access" : "readwrite",
"description" :
"""The Max Age component of designatedTimes (17.19.5).
This time value, measured in units of hundredths
of a second. BridgeTimes comprises four components�Xthe
current values of Bridge Forward Delay, Bridge Hello Time,
and Bridge Max Age (17.13, Table 17-1), and a Message Age
of zero.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpBridgeHelloTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "DES-1210-08P_BX",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "100",
"max" : "1000"
},
],
"range" : {
"min" : "100",
"max" : "1000"
},
},
},
"access" : "readwrite",
"description" :
"""The Hello Time component of designatedTimes (17.19.5).
This time value, measured in units of hundredths
of a second. BridgeTimes comprises four components�Xthe
current values of Bridge Forward Delay, Bridge Hello Time,
and Bridge Max Age (17.13, Table 17-1), and a Message Age
of zero.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpBridgeForwardDelay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.1.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "DES-1210-08P_BX",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "400",
"max" : "3000"
},
],
"range" : {
"min" : "400",
"max" : "3000"
},
},
},
"access" : "readwrite",
"description" :
"""The Forward Delay component of designatedTimes (17.19.5).
This time value, measured in units of hundredths
of a second. BridgeTimes comprises four components�Xthe
current values of Bridge Forward Delay, Bridge Hello Time,
and Bridge Max Age (17.13, Table 17-1), and a Message Age
of zero.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2",
"status" : "current",
"description" :
"""A table that contains port-specific information
for the Spanning Tree Protocol.""",
}, # table
"stpPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1",
"status" : "current",
"linkage" : [
"stpPort",
],
"description" :
"""A list of information maintained by every port
about the Spanning Tree Protocol state for that
port.""",
}, # row
"stpPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The port number of the port for which this entry
contains Spanning Tree Protocol management
information.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortPriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "240"
},
],
"range" : {
"min" : "0",
"max" : "240"
},
},
},
"access" : "readwrite",
"description" :
"""The value of the priority field which is
contained in the first (in network byte order)
octet of the (2 octet long) Port ID. The other
octet of the Port ID is given by the value of
stpPort.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"blocking" : {
"nodetype" : "namednumber",
"number" : "2"
},
"listening" : {
"nodetype" : "namednumber",
"number" : "3"
},
"learning" : {
"nodetype" : "namednumber",
"number" : "4"
},
"forwarding" : {
"nodetype" : "namednumber",
"number" : "5"
},
"broken" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""The port's current state as defined by
application of the Spanning Tree Protocol. This
state controls what action a port takes on
reception of a frame. If the bridge has detected
a port that is malfunctioning it will place that
port into the broken(6) state. For ports which
are disabled (see stpPortEnable), this object
will have a value of disabled(1).""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortEnable" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The enabled/disabled status of the port.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpAdminPortPathCost" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "200000000"
},
],
"range" : {
"min" : "0",
"max" : "200000000"
},
},
},
"access" : "readwrite",
"description" :
"""The contribution of this port to the path cost of
paths towards the spanning tree root which include
this port. Writing a value of '0' assigns the
automatically calculated default Path Cost value to
the ohter object stpPortPathCost. If the default
Path Cost is being used,this object returns '0' when
read.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortPathCost" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "200000000"
},
],
"range" : {
"min" : "1",
"max" : "200000000"
},
},
},
"access" : "readonly",
"description" :
"""The contribution of this port to the path cost of
paths towards the spanning tree root which include
this port.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The unique Bridge Identifier of the Bridge
recorded as the Root in the Configuration BPDUs
transmitted by the Designated Bridge for the
segment to which the port is attached.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortDesignatedCost" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The path cost of the Designated Port of the
segment connected to this port. This value is
compared to the Root Path Cost field in received
bridge PDUs.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortDesignatedBridge" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The Bridge Identifier of the bridge which this
port considers to be the Designated Bridge for
this port's segment.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortDesignatedPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "2",
"max" : "2"
},
],
"range" : {
"min" : "2",
"max" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The Port Identifier of the port on the Designated
Bridge for this port's segment.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortForwardTransitions" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The number of times this port has transitioned
from the Learning state to the Forwarding state.""",
}, # column
"stpPortProtocolMigration" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""When operating in RSTP (version 2) mode, writing TRUE(1)
to this object forces this port to transmit RSTP BPDUs.
Any other operation on this object has no effect and
it always returns FALSE(2) when read.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortOperEdgePort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.2.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""The operational value of the Edge Port parameter. The
object is initialized to the value of
stpPortAdminEdgePort and is set FALSE on reception of
a BPDU.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortAdminPointToPoint" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"forceTrue" : {
"nodetype" : "namednumber",
"number" : "0"
},
"forceFalse" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The administrative point-to-point status of the LAN segment
attached to this port. A value of forceTrue(0) indicates that
this port should always be treated as if it is connected to
a point-to-point link. A value of forceFalse(1) indicates
that this port should be treated as having a shared media
connection. A value of auto(2) indicates that this port is
considered to have a point-to-point link if it is an Aggregator
and all of its members are aggregatable, or if the MAC entity
is configured for full duplex operation, either through
auto-negotiation or by management means.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortOperPointToPoint" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.2.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""The operational point-to-point status of the LAN segment
attached to this port. It indicates whether a port is
considered to have a point-to-point connection or not.
The value is determined by management or by auto-detection,
as described in the stpPortAdminPointToPoint object.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortEdge" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"false" : {
"nodetype" : "namednumber",
"number" : "0"
},
"true" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
""" This parameter when TRUE(1) indicates that detection of a port
as Edge Port happens automatically and FALSE(2)
indicates that this feature is disabled.""",
}, # column
"stpPortRestrictedRole" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.6.2.1.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""A Boolean value set by management. If TRUE causes the Port not
to be selected as Root Port for the CIST or any MSTI, even it has
the best spanning tree priority vector. Such a Port will be selected
as an Alternate Port after the Root Port has been selected. This
parameter should be FALSE by default. If set it can cause lack of
spanning tree connectivity. It is set by a network administrator to
prevent bridges external to a core region of the network influencing
the spanning tree active topology, possibly because those bridges are
not under the full control of the administrator.
This administrator configuration is also known as 'Root Guard'.""",
}, # column
"stpPortRestrictedTCN" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.6.2.1.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""A Boolean value set by management. If TRUE causes the Port not
to propagate received topology change notifications and topology
changes to other Ports. This parameter should be FALSE by default.
If set it can cause temporary loss of connectivity after changes in
a spanning trees active topology as a result of persistent
incorrectly learnt station location information. It is set by a
network administrator to prevent bridges external to a core region of
the network causing address flushing in that region, possibly because
those bridges are not under the full control of the administrator or
MAC_Operational for the attached LANs transitions frequently.""",
}, # column
"companyDot1qVlanGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7",
}, # node
"dot1qVlanManagementOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.7.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable management VLAN mechanism.""",
}, # scalar
"dot1qVlanManagementid" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"default" : "1",
"description" :
"""The management VLAN ID, which will allow to forward packets of that VLAN to CPU.""",
}, # scalar
"dot1qVlanAsyOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable IEEE 802.1Q Asymmetric VLAN""",
}, # scalar
"dot1qVlanTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7.6",
"status" : "current",
"description" :
"""A table containing static configuration information for
each VLAN configured into the device by (local or
network) management. All entries are permanent and will
be restored after the device is reset.""",
}, # table
"dot1qVlanEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7.6.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dot1qVlanName",
],
"description" :
"""Information for a VLAN configured into the
device by (local or network) management.""",
}, # row
"dot1qVlanName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.7.6.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "20"
},
],
"range" : {
"min" : "0",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""An administratively assigned string, which may be used
to identify the VLAN.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 192.168.127.12""",
}, # column
"dot1qVlanEgressPorts" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""The set of ports which are permanently assigned to the
egress list for this VLAN by management. Changes to a
bit in this object affect the per-port per-VLAN
Registrar control for Registration Fixed on each port. A port may
not be added in this set if it is already a member of
the set of ports in dot1qVlanForbiddenEgressPorts. The
default value of this object is a string of zeros of
appropriate length, indicating not fixed.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 192.168.3.11, 11.2.3.2.3""",
}, # column
"dot1qVlanUntaggedPorts" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.7.6.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""The set of ports which should transmit egress packets
for this VLAN as untagged. The default value of this
object for the default VLAN (dot1qVlanIndex = 1) is a string
of appropriate length including all ports. There is no
specified default for other VLANs. If a device agent cannot
support the set of ports being set then it will reject the
set operation with an error. An example might be if a
manager attempts to set more than one VLAN to be untagged
on egress where the device does not support this IEEE 802.1Q
option.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 192.168.127.12""",
}, # column
"dot1qVlanRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.7.6.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of a row in dot1qVlanTable. By setting this object, new
entries can be created in dot1qVlanTable and existing entries can be
removed from dot1qVlanTable. It can be used as specified in the SNMP
v2 standard.""",
}, # column
"dot1qVlanPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7.7",
"status" : "current",
"description" :
"""A table containing per port control and status
information for VLAN configuration in the device.""",
}, # table
"dot1qVlanPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7.7.1",
"status" : "current",
"linkage" : [
{ "BRIDGE-MIB" : {
"indexkind" : "augments",
"relatedNode" : "dot1dBasePortEntry",
}},
],
"description" :
"""Information controlling VLAN configuration for a port
on the device.""",
}, # row
"dot1qVlanPvid" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.7.7.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "VlanIndex"},
},
"access" : "readwrite",
"default" : "1",
"description" :
"""The PVID, the VLAN ID assigned to untagged frames or
Priority-Tagged frames received on this port.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 172.16.17.32""",
}, # column
"companyLA" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.8",
}, # node
"laSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.1",
}, # node
"laStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Sets the Link Aggregation Module administrative status as
enabled or disabled.""",
}, # scalar
"laPortChannelTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.1.3",
"status" : "current",
"description" :
"""A Port-channel is created through ifMain table.
After the creation of the port-channel, corresponding logical
interface will be created in the ifMain table.
This Port-channel table is indexed through Key values and allows to
configure link selection policy and the Mac address for
the port-channel. All other objects in this table displays
the details of the port-channel.""",
}, # table
"laPortChannelEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.1.3.1",
"status" : "current",
"linkage" : [
"laPortChannelIfIndex",
],
"description" :
"""There is one entry in this table for each created
port-channel port.""",
}, # row
"laPortChannelIfIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The index of the port-channel(Aggregator's
interface index). """,
}, # column
"laPortChannelMemberList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Member Port list of the port channel. Add the ports as a
aggregation member associated of a port-channel.""",
}, # column
"laPortChannelMode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortLaMode"},
},
"access" : "readwrite",
"description" :
"""Current Operating Channel Mode of the port channel
Lacp(1) - forcing the port to negotiate with the
partner.
manual(2) - force the port to enable channeling (Manual).
disable(3) - channeling is disabled.""",
}, # column
"laPortControl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.8.2",
}, # node
"laPortControlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.2.1",
"status" : "current",
"description" :
"""A table that contains Link Aggregation Control
configuration information about every
Aggregation Port associated with this device.
A row appears in this table for each physical port.""",
}, # table
"laPortControlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.2.1.1",
"status" : "current",
"linkage" : [
"laPortControlIndex",
],
"description" :
"""A list of Link Aggregation Control configuration
parameters for each Aggregation Port on this device.""",
}, # row
"laPortControlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.8.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The index of the port.""",
}, # column
"laPortActorActivity" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.8.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"active" : {
"nodetype" : "namednumber",
"number" : "1"
},
"passive" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates LACP_Activity to this Aggregation Port.
LACP can be configured in one of two modes: active or passive.
In active mode it will always send frames along the configured links.
If the actor and partner are both in passive mode, they do not
exchange LACP packets.""",
}, # column
"laPortActorTimeout" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.8.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"short" : {
"nodetype" : "namednumber",
"number" : "1"
},
"long" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates LACP_Timeout to this Aggregation Port.
short(1) - LACP Timeout 3 seconds.
long (2) - LACP Timeout 90 seconds.""",
}, # column
"companyStaticMAC" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.9",
}, # node
"staticDisableAutoLearn" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.9.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
"off" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Set on to disable Auto Learning Excluding Uplink Port and
set off to enable Auto Learning.""",
}, # scalar
"staticAutoLearningList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.9.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""The set of the device's member ports that belong
to the Static MAC auto learning enable/disable.
For example, when Disable Auto Learning is enable,
the octet value set up as '# 0x0F 0xFF 0xFF 0xFF' means
from port 1 to port 4 are not in auto learning state,
the other ports are in auto learning state. It can be
set up when Disable Auto Learning is enable.""",
}, # scalar
"staticTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.9.3",
"status" : "current",
"description" :
"""A list of the Static MACs""",
}, # table
"staticEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.9.3.1",
"status" : "current",
"linkage" : [
"staticVlanID",
"staticMac",
"staticPort",
],
"description" :
"""A Static MAC entry containing the mac and forwarding port.""",
}, # row
"staticVlanID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.9.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The VLAN ID of the static MAC entry.""",
}, # column
"staticMac" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.9.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the static MAC entry.""",
}, # column
"staticPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.9.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The forwarding port of the static MAC entry.""",
}, # column
"staticStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.9.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Static MAC Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy)
are available. The trunk member port can not set up static MAC.""",
}, # column
"companyIgsGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10",
}, # node
"igsSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.1",
}, # node
"igsStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enables or disables IGMP snooping in the system.
When set to 'enabled', the IGS module starts
protocol operations.
When set to 'disabled', the IGS module stops performing
protocol operations.""",
}, # scalar
"igsRouterPortPurgeInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readwrite",
"default" : "260",
"description" :
"""This is the interval (in seconds) after which a learnt
router port entry will be purged. For each router port learnt,
this timer runs for 'RouterPortPurgeInterval' seconds.When the
timer expires, the learnt router port entry is purged. However
if control messages are received from the router before the
timer expiry, then the timer is restarted.""",
}, # scalar
"igsHostPortPurgeInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "130",
"max" : "153025"
},
],
"range" : {
"min" : "130",
"max" : "153025"
},
},
},
"access" : "readwrite",
"default" : "260",
"description" :
"""This is the interval (in seconds) after which a learnt
port entry will be purged. For each port on which report
has been received this timer runs for 'PortPurgeInterval'
seconds. This timer will be restarted whenever a report
message is received from a host on the specific port. If
the timer expires, then , the learnt port entry will
be purged from the multicast group.""",
}, # scalar
"igsRobustnessValue" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "2",
"max" : "255"
},
],
"range" : {
"min" : "2",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "2",
"description" :
"""When the switch receives leave message on a port, it
sends group specific query to check if there are any other
interested receivers for the group. This attribute defines
the maximum number of queries sent by the switch before deleting
the port from the group membership information in the forwarding
database. If the maximum retry count exceeds 'igsRobustnessValue',
then the port will be deleted from the multicast group membership
information in the forwarding database and received leave message
will be forwarded onto the router ports if there are no
interested receivers for the group.""",
}, # scalar
"igsGrpQueryInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "25"
},
],
"range" : {
"min" : "1",
"max" : "25"
},
},
},
"access" : "readwrite",
"default" : "1",
"description" :
"""The value of this attribute defines the time period with which
the switch will send group specific queries on a port to check
if there is any intersted receivers. The switch will send
'igsRobustnessValue' queries before removing the port from the
group membership information in the forwarding database.""",
}, # scalar
"igsQueryInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readwrite",
"default" : "125",
"description" :
"""This is the interval (in seconds) for which the switch
sends general queries when it is configured as a querier for
VLANs.""",
}, # scalar
"igsQueryMaxResponseTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "10",
"max" : "25"
},
],
"range" : {
"min" : "10",
"max" : "25"
},
},
},
"access" : "readwrite",
"default" : "10",
"description" :
"""The maximum query response time advertised in IGMPv2 general
queries on this interface.""",
}, # scalar
"igsReportToAllPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enables or disables IGMP snooping in the system.
When set to 'enabled', the IGS module forwards packets
to report to all port.
When set to 'disabled', the IGS module forwards packets
to router port only.""",
}, # scalar
"igsVlan" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3",
}, # node
"igsVlanRouterTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.3.3",
"status" : "current",
"description" :
"""This table contains the list of ports through which
a router, in a particular VLAN is reachable.""",
}, # table
"igsVlanRouterEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.3.3.1",
"status" : "current",
"linkage" : [
"igsVlanRouterVlanId",
],
"description" :
"""An igs vlan router entry contain the igs vlan router port list.""",
}, # row
"igsVlanRouterVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.3.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""It is the VLAN ID of the igs vlan router entry.""",
}, # column
"igsVlanRouterPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""List of ports on which routers are present.
These router ports are learnt through control messages
received from routers, and can also be configured
statically.""",
}, # column
"igsVlanFilterTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.4",
"status" : "current",
"description" :
"""This table contains configuration of snooping
on specific Vlans. This Table is valid only when VLAN is
enabled in the system.""",
}, # table
"igsVlanFilterEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.4.1",
"status" : "current",
"linkage" : [
"igsVlanFilterVlanId",
],
"description" :
"""Contains snooping status , version and fast leave
configuration for a specific VLAN.""",
}, # row
"igsVlanFilterVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""Index of IgsVlanFilterEntry. This object indicates the VLAN ID for which
the snooping configurations in IgsVlanFilterEntry is to be done.""",
}, # column
"igsVlanSnoopStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""This object allows you to enable/disable IGS function on a specific VLAN.""",
}, # column
"igsVlanQuerier" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"default" : "disabled",
"description" :
"""Indicates whether the switch is configured as a querier in the VLAN""",
}, # column
"igsVlanCfgQuerier" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.3.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""The snooping switch can be configured as a querier via this object
to send out IGMP general queries when IGMP routers are not present in the VLAN.
When set to 'enabled', the switch will generate general queries.""",
}, # column
"igsVlanQueryInterval" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.3.4.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readonly",
"default" : "125",
"description" :
"""This is the interval (in seconds) for which the switch
sends general queries when it is configured as a querier for
the VLAN. A switch should be configured as a querier for a VLAN
only when there is no queriers in the network.""",
}, # column
"igsVlanRtrPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.4.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""List of ports which are configured statically as router ports""",
}, # column
"igsVlanFastLeave" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.3.4.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enables or disables fast leave for the VLAN. When it is
'disabled',on reception of a leave message, the switch checks
if they are any interested receivers for the group by sending
a group specific query before removing the port from the
forwarding table. If set to 'enabled', the switch does not
send a group specific query and immediately removes the port
from the forwarding table.""",
}, # column
"igsVlanMulticastGroupTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.5",
"status" : "current",
"description" :
"""This table contains MAC based multicast forwarding
information.""",
}, # table
"igsVlanMulticastGroupEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.5.1",
"status" : "current",
"linkage" : [
"igsVlanMulticastGroupVlanId",
"igsVlanMulticastGroupIpAddress",
],
"description" :
"""This table contains VLAN ID, multicast group MAC address and the
list of ports onto which the multicast data packets for group
should be forwarded.""",
}, # row
"igsVlanMulticastGroupVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.5.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""VLAN ID pertaining to the Multicast forwarding entry""",
}, # column
"igsVlanMulticastGroupIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "readonly",
"description" :
"""Multicast group IP address. This object indicates that a
multicast group address was learned in the switch and be represented
as IP address format.""",
}, # column
"igsVlanMulticastGroupMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.10.3.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""Multicast group MAC address. This object indicates that a
multicast group address was learned in the switch and be represented
as MAC address format.""",
}, # column
"igsVlanMulticastGroupPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.10.3.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""List of ports onto which the multicast data
packets destined for this group will be forwarded.""",
}, # column
"companyDot1xGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11",
}, # node
"radius" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.1",
}, # node
"ipv4radiusServerAddress" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.1.1",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IP address of the RADIUS server
referred to in this table entry.""",
}, # scalar
"ipv4radiusServerSharedSecret" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.1.2",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The secret string which is shared between Server and Client""",
}, # scalar
"radiusServerTable" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.1.3",
}, # node
"swRadiusServerIPType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.1.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "iPv4",
"description" :
"""The IP address of the RADIUS server IP type
referred to in this table entry.""",
}, # scalar
"swRadiusServerAddress" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.1.3.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The IP address of the RADIUS server
referred to in this table entry.""",
}, # scalar
"swRadiusServerInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.1.3.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the swAuthRadiusServerAddress is linklocal address.""",
}, # scalar
"swRadiusServerSharedSecret" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.1.3.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The secret string which is shared between Server and Client, the maximum length are 32 chars""",
}, # scalar
"dot1xAuth" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2",
}, # node
"dot1xAuthStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable Static 802.1x.""",
}, # scalar
"dot1xAuthQuietPeriod" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "60",
"description" :
"""The value, in seconds, of the quietPeriod constant
currently in use by the Authenticator PAE state
machine.""",
"reference>" :
"""9.4.1, quietPeriod.""",
}, # scalar
"dot1xAuthTxPeriod" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "24",
"description" :
"""The value, in seconds, of the txPeriod constant
currently in use by the Authenticator PAE state
machine.""",
"reference>" :
"""9.4.1, txPeriod.""",
}, # scalar
"dot1xAuthSuppTimeout" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "12",
"description" :
"""The value, in seconds, of the suppTimeout constant
currently in use by the Backend Authentication state
machine.""",
"reference>" :
"""9.4.1, suppTimeout.""",
}, # scalar
"dot1xAuthServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "16",
"description" :
"""The value, in seconds, of the serverTimeout constant
currently in use by the Backend Authentication state
machine.""",
"reference>" :
"""9.4.1, serverTimeout.""",
}, # scalar
"dot1xAuthMaxReq" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"default" : "2",
"description" :
"""The value of the maxReq constant currently in use by
the Backend Authentication state machine.""",
"reference>" :
"""9.4.1, maxReq.""",
}, # scalar
"dot1xAuthReAuthPeriod" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Unsigned32",
"ranges" : [
{
"min" : "1",
"max" : "4294967295"
},
],
"range" : {
"min" : "1",
"max" : "4294967295"
},
},
},
"access" : "readwrite",
"default" : "3600",
"description" :
"""The value, in seconds, of the reAuthPeriod constant
currently in use by the Reauthentication Timer state
machine.""",
"reference>" :
"""9.4.1, reAuthPerio.""",
}, # scalar
"dot1xAuthReAuthEnabled" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The enable/disable control used by the Reauthentication
Timer state machine (8.5.5.1).""",
"reference>" :
"""9.4.1, reAuthEnable.""",
}, # scalar
"dot1xAuthConfigPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.9",
"status" : "current",
"description" :
"""A table that contains the configuration objects for the
Authenticator PAE associated with each port.
An entry appears in this table for each port that may
authenticate access to itself.""",
}, # table
"dot1xAuthConfigPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.11.2.9.1",
"status" : "current",
"linkage" : [
"dot1xAuthConfigPortNumber",
],
"description" :
"""The configuration information for an Authenticator Port.""",
}, # row
"dot1xAuthConfigPortNumber" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.11.2.9.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""A unique value for each port that correlates to port index.
Its value ranges between 1 and the value of port number.""",
}, # column
"dot1xAuthConfigPortControl" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.11.2.9.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"forceUnauthorized" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
"forceAuthorized" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""The current value of the controlled Port
control parameter for the Port.""",
"reference>" :
"""9.4.1, AuthControlledPortControl.""",
}, # column
"dot1xAuthConfigPortStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.9.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"authorized" : {
"nodetype" : "namednumber",
"number" : "1"
},
"unauthorized" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The current value of the controlled Port
status parameter for the Port.""",
"reference>" :
"""9.4.1, AuthControlledPortStatu.""",
}, # column
"dot1xAuthConfigPortSessionTime" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.9.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""The duration of the session in seconds.""",
"reference>" :
"""9.4.4, Session Tim.""",
}, # column
"dot1xAuthConfigPortSessionUserName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.11.2.9.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
},
"access" : "readonly",
"description" :
"""The User-Name representing the identity of the
Supplicant PAE.""",
"reference>" :
"""9.4.4, Session User Name.""",
}, # column
"swAuthCtrlPktFwdMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.11.2.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable 802.1x packet forward while 802.1x module is disabled.""",
}, # scalar
"companyQoSGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12",
}, # node
"qosMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dot1p" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dscp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tos" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Settings of Qos mode:
IEEE 802.1p QoS or DSCP QoS or TOS Qos.
IEEE 802.1p : It specifies a priority(0~7) value to four queues in WS3 : Low(1,2), Medium(0,3), High(4,5) and Highest(6,7), inclusive that can be used by Quality of Service (QoS) disciplines to differentiate traffic.
DSCP : Differentiated services enhancements to the Internet protocol are intended to enable scalable service discrimination in the Internet without the need for per-flow state and signaling at every hop. """,
}, # scalar
"queuingMechanism" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"strictPriority" : {
"nodetype" : "namednumber",
"number" : "1"
},
"wrr" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Queuing mechanism.
strictPriority(1) : Strict Priority
wrr(2) : Weighted Round Robin
Strict-priority scheduling is implemented with a special strict-priority scheduler node that is stacked directly above the port. Queues stacked on top of the strict-priority scheduler node always get bandwidth before other queues.
Weighted round-robin scheduling is designed to better handle queues with different processing capacities. Each queue has a weight : Low is 1, Medium is 2, High is 4 and Highest is 8 for WS4 spec. Queues with higher weights get bandwidth before than other queues with less weights.""",
}, # scalar
"qosQ1p" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.3",
}, # node
"dot1pPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.3.1",
"status" : "current",
"description" :
"""A list of 802.1p port default priority Entries.""",
}, # table
"dot1pPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.3.1.1",
"status" : "current",
"linkage" : [
"dot1pPortIndex",
],
"description" :
"""A list of 802.1p port default priority priorities.""",
}, # row
"dot1pPortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""A port identifier that is in the range of 1 to ifNumber.""",
}, # column
"dot1pPortPriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "1"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "2"
},
"high" : {
"nodetype" : "namednumber",
"number" : "3"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""For ingress untagged packets, the per port 'Default Priority'
setting will be applied to packets of each port to provide
port-based traffic prioritization.
For ingress tagged packets, D-Link Smart Switches will refer
to their 802.1p information and prioritize them with 4
different priority queues. """,
}, # column
"qosDiffServ" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4",
}, # node
"qosDiffServEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Display the DSCP(Differentiated services) function Enabled or Disabled.
Notice : DiffServ Type is 2~7 bits in the TOS field. ex: If the DiffServ Type = 000011(3),
the value in TOS field is 00001100(12) """,
}, # scalar
"qosDiffServTypeGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2",
}, # node
"qosDiffServType00" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 0 : IP ToS value = 0""",
}, # scalar
"qosDiffServType01" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 01 : IP ToS value = 4""",
}, # scalar
"qosDiffServType02" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 02 : IP ToS value = 8""",
}, # scalar
"qosDiffServType03" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 03 : IP ToS value = 12""",
}, # scalar
"qosDiffServType04" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 04 : IP ToS value = 16""",
}, # scalar
"qosDiffServType05" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 05 : IP ToS value = 20""",
}, # scalar
"qosDiffServType06" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 06 : IP ToS value = 24""",
}, # scalar
"qosDiffServType07" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 07 : IP ToS value = 28""",
}, # scalar
"qosDiffServType08" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 08 : IP ToS value = 32""",
}, # scalar
"qosDiffServType09" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 09 : IP ToS value = 36""",
}, # scalar
"qosDiffServType10" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 10 : IP ToS value = 40""",
}, # scalar
"qosDiffServType11" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 11 : IP ToS value = 44""",
}, # scalar
"qosDiffServType12" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 12 : IP ToS value = 48""",
}, # scalar
"qosDiffServType13" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 13 : IP ToS value = 52""",
}, # scalar
"qosDiffServType14" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 14 : IP ToS value = 56""",
}, # scalar
"qosDiffServType15" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 15 : IP ToS value = 60""",
}, # scalar
"qosDiffServType16" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 16 : IP ToS value = 64""",
}, # scalar
"qosDiffServType17" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.18",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 17 : IP ToS value = 68""",
}, # scalar
"qosDiffServType18" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.19",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 18 : IP ToS value = 72""",
}, # scalar
"qosDiffServType19" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 19 : IP ToS value = 76""",
}, # scalar
"qosDiffServType20" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.21",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 20 : IP ToS value = 80""",
}, # scalar
"qosDiffServType21" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.22",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 21 : IP ToS value = 84""",
}, # scalar
"qosDiffServType22" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.23",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 22 : IP ToS value = 88""",
}, # scalar
"qosDiffServType23" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.24",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 23 : IP ToS value = 92""",
}, # scalar
"qosDiffServType24" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.25",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 24 : IP ToS value = 96""",
}, # scalar
"qosDiffServType25" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.26",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 25 : IP ToS value = 100""",
}, # scalar
"qosDiffServType26" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.27",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 26 : IP ToS value = 104""",
}, # scalar
"qosDiffServType27" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.28",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 27 : IP ToS value = 108""",
}, # scalar
"qosDiffServType28" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.29",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 28 : IP ToS value = 112""",
}, # scalar
"qosDiffServType29" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.30",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 29 : IP ToS value = 116""",
}, # scalar
"qosDiffServType30" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.31",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 30 : IP ToS value = 120""",
}, # scalar
"qosDiffServType31" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.32",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 31 : IP ToS value = 124""",
}, # scalar
"qosDiffServType32" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.33",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 32 : IP ToS value = 128""",
}, # scalar
"qosDiffServType33" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.34",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 33 : IP ToS value = 132""",
}, # scalar
"qosDiffServType34" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.35",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 34 : IP ToS value = 136""",
}, # scalar
"qosDiffServType35" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.36",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 35 : IP ToS value = 140""",
}, # scalar
"qosDiffServType36" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.37",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 36 : IP ToS value = 144""",
}, # scalar
"qosDiffServType37" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.38",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 37 : IP ToS value = 148""",
}, # scalar
"qosDiffServType38" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.39",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 38 : IP ToS value = 152""",
}, # scalar
"qosDiffServType39" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.40",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 39 : IP ToS value = 156""",
}, # scalar
"qosDiffServType40" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.41",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 40 : IP ToS value = 160""",
}, # scalar
"qosDiffServType41" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.42",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 41 : IP ToS value = 164""",
}, # scalar
"qosDiffServType42" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.43",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 42 : IP ToS value = 168""",
}, # scalar
"qosDiffServType43" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.44",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 43 : IP ToS value = 172""",
}, # scalar
"qosDiffServType44" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.45",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 44 : IP ToS value = 176""",
}, # scalar
"qosDiffServType45" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.46",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 45 : IP ToS value = 180""",
}, # scalar
"qosDiffServType46" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.47",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 46 : IP ToS value = 184""",
}, # scalar
"qosDiffServType47" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.48",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 47 : IP ToS value = 188""",
}, # scalar
"qosDiffServType48" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.49",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 48 : IP ToS value = 192""",
}, # scalar
"qosDiffServType49" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.50",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 49 : IP ToS value = 196""",
}, # scalar
"qosDiffServType50" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.51",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 50 : IP ToS value = 200""",
}, # scalar
"qosDiffServType51" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.52",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 51 : IP ToS value = 204""",
}, # scalar
"qosDiffServType52" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.53",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 52 : IP ToS value = 208""",
}, # scalar
"qosDiffServType53" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.54",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 53 : IP ToS value = 212""",
}, # scalar
"qosDiffServType54" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.55",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 54 : IP ToS value = 216""",
}, # scalar
"qosDiffServType55" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.56",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 55 : IP ToS value = 220""",
}, # scalar
"qosDiffServType56" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.57",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 56 : IP ToS value = 224""",
}, # scalar
"qosDiffServType57" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.58",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 57 : IP ToS value = 228""",
}, # scalar
"qosDiffServType58" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.59",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 58 : IP ToS value = 232""",
}, # scalar
"qosDiffServType59" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.60",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 59 : IP ToS value = 236""",
}, # scalar
"qosDiffServType60" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.61",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 60 : IP ToS value = 240""",
}, # scalar
"qosDiffServType61" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.4.2.62",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 61 : IP ToS value = 244""",
}, # scalar
"qosDiffServType62" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.63",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 62 : IP ToS value = 248""",
}, # scalar
"qosDiffServType63" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.4.2.64",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 63 : IP ToS value = 252""",
}, # scalar
"qosTOS" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5",
}, # node
"qosTOSEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.12.5.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Display the TOS(Type of services) function Enabled or Disabled.""",
}, # scalar
"qosTOSGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2",
}, # node
"qosTOSType00" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 0""",
}, # scalar
"qosTOSType01" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 01""",
}, # scalar
"qosTOSType02" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 02""",
}, # scalar
"qosTOSType03" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 03""",
}, # scalar
"qosTOSType04" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 04""",
}, # scalar
"qosTOSType05" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 05""",
}, # scalar
"qosTOSType06" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 06""",
}, # scalar
"qosTOSType07" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.12.5.2.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "0"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "1"
},
"high" : {
"nodetype" : "namednumber",
"number" : "2"
},
"highest" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 07""",
}, # scalar
"companyTrafficMgmt" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13",
}, # node
"bandwidthCtrlSettings" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.13.1",
}, # node
"bandwidthCtrlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.1.2",
"status" : "current",
"description" :
"""A table to control the rate limiting parameters
either for the entire switch or for each interface in the switch.""",
}, # table
"bandwidthCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.1.2.1",
"status" : "current",
"linkage" : [
"bandwidthCtrlIndex",
],
"description" :
"""An entry appears in this table for each physical
interface in the switch.""",
}, # row
"bandwidthCtrlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index for which the configuration in this
entry applies.""",
}, # column
"bandwidthCtrlTxThreshold" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "63",
"max" : "1000000"
},
],
"range" : {
"min" : "0",
"max" : "1000000"
},
},
},
"access" : "readwrite",
"description" :
"""Configures interface Rate Limit (Packet that can be transferred
on a port at a particular second).
This object's value will take effect on the interface speed. Based
on the operating speed of the port, the rate limit will be applied.
This value can also be affected by the metering. A value of zero(0)
disable rate limiting i.e. sets the port to full speed. The value can
be set between 63~100000(Kbits per second) in FE port, 63~1000000
(Kbits per second) in GE port.""",
}, # column
"bandwidthCtrlRxThreshold" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "63",
"max" : "1000000"
},
],
"range" : {
"min" : "0",
"max" : "1000000"
},
},
},
"access" : "readwrite",
"description" :
"""Allows to configure the limiting value for the maximum number
of receive packets that can be transmitted per second over this
interface. Setting this object to the value zero disables rate
limiting for receive packets on this interface. The value that
can be set for this object is limited by the underlying hardware.
The value can be set between 63~100000(Kbits per second) in FE
port, 63~1000000(Kbits per second) in GE port.""",
}, # column
"broadcastStormCtrlSettings" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.3",
}, # node
"broadcastStormCtrlGlobalOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates storm control function is enabled or disabled
for device.
When you enable broadcast storm control function, D-Link Smart
Switches will allowed you to limit the number of broadcast packets
per second going through device.""",
}, # scalar
"broadcastStormCtrlLimitType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.3.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"broadcastonly" : {
"nodetype" : "namednumber",
"number" : "1"
},
"multicastAndbroadcast" : {
"nodetype" : "namednumber",
"number" : "2"
},
"dlfMulticastAndbroadcast" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates storm control function is control broadcast
packet or multicast packet or dlf packet.""",
}, # scalar
"broadcastStormCtrlThreshold" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.13.3.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "63",
"max" : "1000000"
},
],
"range" : {
"min" : "0",
"max" : "1000000"
},
},
},
"access" : "readwrite",
"default" : "0",
"description" :
"""Allows to configure the limiting value for the maximum number
of Kbits/sec that can be transmitted per second over this interface.
Setting this object to the value zero disables rate limiting on
this interface. The value that can be set for this object is
limited by the underlying hardware. The limit value must be between
63~100000(Kbits per second) in FE port, 63~1000000(Kbits per second)
in GE port, and limit value is multiple of 63.
(Notice : if the limit value is 0, it means unlimited.)""",
}, # scalar
"companySecurity" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14",
}, # node
"securityTrustedHost" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1",
}, # node
"trustedHostStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""This object indicates trusted host function is enabled or disabled.
When trusted host function is enabled, D-Link Smart Switches will
only allow hosts which you trust to access and control the switch.
Your local host IP Addresses must be one of the IP Addresses to
avoid disconnection.""",
}, # scalar
"ipv4trustedHostTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.2",
"status" : "obsolete",
"description" :
"""A table to configure trusted host in the system.""",
}, # table
"ipv4trustedHostEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.2.1",
"create" : "true",
"status" : "obsolete",
"linkage" : [
"ipv4trustedHostIpAddr",
"ipv4trustedHostIpMask",
],
"description" :
"""Each entry in this table represents rules for particular
trusted host.""",
}, # row
"ipv4trustedHostIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.2.1.1",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""The IP address of host you allow to access to D-Link Smart
Switch.
Your local host IP Addresses must be one of the IP Addresses
to avoid disconnection.""",
}, # column
"ipv4trustedHostIpMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.2.1.2",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""Used to mask with IP address, it allow you set a subnet as a
trusted host entry.""",
}, # column
"ipv4trustedHostRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.2.1.3",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Trusted Host Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy)
are available.""",
}, # column
"trustedHostTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.1.3",
"status" : "current",
"description" :
"""A table to configure trusted host for in the system.""",
}, # table
"trustedHostEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"trustedHostIPType",
"trustedHostIpAddr",
"trustedHostIpMask",
],
"description" :
"""Each entry in this table represents rules for particular
trusted host.""",
}, # row
"trustedHostIPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Type of IP interface.""",
}, # column
"trustedHostIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""The IP address of host you allow to access to D-Link Smart
Switch.
Your local host IPv4/6 Addresses must be one of the IP Addresses
to avoid disconnection.""",
}, # column
"trustedHostIpMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""Used to mask with IPv4/6 address, it allow you set a subnet as a
trusted host entry.""",
}, # column
"trustedHostRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Trusted Host Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy)
are available.
IPv4 Trust Host created example:
1.4.��IPv4 address��.4.��mask��
IPv6 Trust Host created example:
2.16.��IPv6 address��.1.��prefix��""",
}, # column
"securityPortSecurity" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.2",
}, # node
"portSecTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.2.1",
"status" : "current",
"description" :
"""A table to control port security features of the device.""",
}, # table
"portSecEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.2.1.1",
"status" : "current",
"linkage" : [
"portSecIndex",
],
"description" :
"""An entry appears in port security table for each interface
in the system.""",
}, # row
"portSecIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index for which the configuration in this
entry applies.""",
}, # column
"portSecState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable / disable port security admin state for the interface.
A given ports' dynamic MAC address learning will be stopped such
that the current source MAC addresses entered into the MAC address
forwarding table can not be changed once the port security admin
state is enabled.""",
}, # column
"portSecMLA" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""Configures interface port security maximum learning address
numbers.
When given ports' admin state is enabled, allows forwarding
table learning address number. The number can be set 0 to 64.
Note: Set value 0 means cannot learn MAC address.""",
}, # column
"securityARPSpoofPrevent" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.3",
}, # node
"aRPSpoofPreventTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.3.1",
"status" : "current",
"description" :
"""A table to control ARP Spoofing prevention for the entire
switch or for each interface in the switch.""",
}, # table
"aRPSpoofPreventEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.3.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"aRPSpoofPreventIpAddr",
],
"description" :
"""An entry appears in this table for each interface
in the system.""",
}, # row
"aRPSpoofPreventIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""Specifies either the Network or Host address from which the switch
can be managed.
An address 0.0.0.0 indicates 'Any Manager'.""",
}, # column
"aRPSpoofPreventMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"default" : "0x000102030405",
"description" :
"""Ethernet Mac Address.""",
}, # column
"aRPSpoofPreventPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Specifies the port numbers through which the authorized manager can
access the switch.
By default the authorized manager is allowed to access the switch
through all the ports.
If a set of ports are configured in the 'PortList', the manager can
access the switch only through the configured ports.""",
}, # column
"aRPSpoofPreventRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.""",
}, # column
"securitySSL" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.5",
}, # node
"sslSecurityHttpStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.5.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object is for enabling or disabling secure HTTP in the system.""",
}, # scalar
"sslCiphers" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.5.2",
}, # node
"sslCipherSuiteList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.5.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"rsa-null-md5" : {
"nodetype" : "namednumber",
"number" : "0"
},
"rsa-null-sha" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rsa-des-sha" : {
"nodetype" : "namednumber",
"number" : "2"
},
"rsa-3des-sha" : {
"nodetype" : "namednumber",
"number" : "3"
},
"dh-rsa-des-sha" : {
"nodetype" : "namednumber",
"number" : "4"
},
"dh-rsa-3des-sha" : {
"nodetype" : "namednumber",
"number" : "5"
},
"rsa-exp1024-des-sha" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""This object is to configure the cipher-suites list.""",
}, # scalar
"securityDhcpServerScreen" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.7",
}, # node
"dhcpServerScreenEnablePortlist" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.7.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""To enable or disable DHCP Server Screening port list.""",
}, # scalar
"ipv4dhcpServerScreenServerTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.7.2",
"status" : "obsolete",
"description" :
"""A table that contains the configuration objects for the
DHCP server screen server list.
An entry appears in this table for each port that may
authenticate access to itself.""",
}, # table
"ipv4dhcpServerScreenServerEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "172.16.58.3.4.1.171.10.75.13.14.7.2.1",
"create" : "true",
"status" : "obsolete",
"linkage" : [
"ipv4dhcpServerScreenServerIndex",
],
"description" :
"""The configuration information for an DHCP server screen server.""",
}, # row
"ipv4dhcpServerScreenServerIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "172.16.58.3.4.1.171.10.75.13.14.7.2.1.1",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "5"
},
],
"range" : {
"min" : "1",
"max" : "5"
},
},
},
"access" : "readonly",
"description" :
"""A unique value for DHCP server screen server index.
Its value ranges between 1 and 5.""",
}, # column
"ipv4dhcpServerScreenServerAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "172.16.58.3.4.1.171.10.75.13.14.7.2.1.2",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The IP address of the DHCP server screen server
referred to in this table entry.""",
}, # column
"ipv4dhcpServerScreenServerStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.7.2.1.3",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row in the
swAuthRadiusServerTable.
An entry in this table is not qualified for activation
until instances of all corresponding columns have been
initialized, either through default values, or through
Set operations. The dhcpServerScreenServerIndex objects
must be explicitly set.""",
}, # column
"dhcpServerScreenTrustedServerTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "172.16.58.3.4.1.171.10.75.13.14.7.3",
"status" : "current",
"description" :
"""A table that contains the configuration objects for the
DHCP server screen server list.
An entry appears in this table for each port that may
authenticate access to itself.""",
}, # table
"dhcpServerScreenTrustedServerEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "172.16.58.3.4.1.171.10.75.13.14.7.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpServerScreenTrustedServerIndex",
],
"description" :
"""The configuration information for an DHCP server screen server.""",
}, # row
"dhcpServerScreenTrustedServerIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.7.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "5"
},
],
"range" : {
"min" : "1",
"max" : "5"
},
},
},
"access" : "readonly",
"description" :
"""A unique value for DHCP server screen server index.
Its value ranges between 1 and 5.""",
}, # column
"dhcpServerScreenTrustedServerAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.7.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The IP address of the DHCP server screen server
referred to in this table entry.""",
}, # column
"dhcpServerScreenIPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "172.16.58.3.4.1.171.10.75.13.14.7.3.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Type of IP interface.""",
}, # column
"dhcpServerScreenTrustedServerStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.7.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row in the
swAuthRadiusServerTable.
An entry in this table is not qualified for activation
until instances of all corresponding columns have been
initialized, either through default values, or through
Set operations. The dhcpServerScreenServerIndex objects
must be explicitly set.""",
}, # column
"securityTrafficSeg" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.9",
}, # node
"trafficSegStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.9.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable Status of Traffic Segmention.""",
}, # scalar
"trafficSegTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.9.2",
"status" : "current",
"description" :
"""A Port-channel is created through ifMain table.
After the creation of the port-channel, corresponding logical
interface will be created in the ifMain table.
This Port-channel table is indexed through Key values and allows to
configure link selection policy and the Mac address for
the port-channel. All other objects in this table displays
the details of the port-channel""",
}, # table
"trafficSegEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.9.2.1",
"status" : "current",
"linkage" : [
"trafficSegIfIndex",
],
"description" :
"""There is one entry in this table for each created
port-channel port""",
}, # row
"trafficSegIfIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.9.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The ifIndex of the port-channel(Aggregator's
interface index). """,
}, # column
"trafficSegMemberList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.9.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Port list of port channel.""",
}, # column
"securityIpMacPortBinding" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10",
}, # node
"impbSettingTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.1",
"status" : "current",
"description" :
"""A table to control IP-MAC-Port Binding Setting features of the device.""",
}, # table
"impbSettingEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10.1.1",
"status" : "current",
"linkage" : [
"impbPortIndex",
],
"description" :
"""An entry appears in IP-MAC-Port Binding Setting table for each interface
in the system.""",
}, # row
"impbPortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Specifies the port numbers through which the authorized manager can
access the switch.
By default the authorized manager is allowed to access the switch
through all the ports.
If a set of ports are configured in the 'PortList', the manager can
access the switch only through the configured ports.""",
}, # column
"impbPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Disable / enable IP-MAC-Port Binding admin state for the interface.""",
}, # column
"impbInsIpPacPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Enable / disable IP-MAC-Port Binding also inspect IP packets state for the interface.""",
}, # column
"impbDHCPPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Disable / enable IP-MAC-Port Binding DHCP snooping state for the interface.""",
}, # column
"impbSmartTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.2",
"status" : "current",
"description" :
"""A table to control Smart IP-MAC-Port Binding features of the device.""",
}, # table
"impbSmartEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.2.1",
"status" : "current",
"linkage" : [
"impbSmartMacAddress",
"impbSmartPort",
"impbSmartIpAddress",
],
"description" :
"""An entry appears in Smart IP-MAC-Port Binding table for each interface
in the system.""",
}, # row
"impbSmartMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the smart IP-MAC-PORT Binding entry.""",
}, # column
"impbSmartPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the smart IP-MAC-PORT Binding entry.""",
}, # column
"impbSmartIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""The IP address associated of the smart IP-MAC-PORT Binding entry.""",
}, # column
"impbSmartVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The VLAN ID of the smart IP-MAC-PORT Binding entry.""",
}, # column
"impbSmartBinding" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Disable / enable IP-MAC-Port Binding for the interface.""",
}, # column
"impbWhiteListTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.3",
"status" : "current",
"description" :
"""A table to control Manual IP-MAC-Port Binding white list features of the device.""",
}, # table
"impbWhiteListEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"impbWhiteListIpAddress",
"impbWhiteListMacAddress",
],
"description" :
"""An entry appears in Manual IP-MAC-Port Binding white list table for each interface
in the system.""",
}, # row
"impbWhiteListIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""The IP address associated of the Manual IP-MAC-PORT Binding white list entry.""",
}, # column
"impbWhiteListMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the Manual IP-MAC-PORT Binding white list entry.""",
}, # column
"impbWhiteListPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The port number of the Manual IP-MAC-PORT Binding white list entry.""",
}, # column
"impbWhiteListRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of a row in impbWhiteListTable. By setting this object, new
entries can be created in impbWhiteListTable and existing entries can be
removed from impbWhiteListTable. It can be used as specified in the SNMP
v2 standard.""",
}, # column
"impbBlackListTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.4",
"status" : "current",
"description" :
"""A table to control IP-MAC-Port Binding black list of the device.""",
}, # table
"impbBlackListEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.4.1",
"status" : "current",
"linkage" : [
"impbBlackListMacAddress",
"impbBlackListVlanId",
"impbBlackListPort",
],
"description" :
"""An entry appears in Manual IP-MAC-Port Binding black list table for each interface
in the system.""",
}, # row
"impbBlackListMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the IP-MAC-PORT Binding black list entry.""",
}, # column
"impbBlackListVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The VLAN ID of the IP-MAC-PORT Binding black list entry.""",
}, # column
"impbBlackListPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the IP-MAC-PORT Binding black list entry.""",
}, # column
"impbBlackListIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10.4.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""The IP address associated of the IP-MAC-PORT Binding black list entry.""",
}, # column
"impbBlackListStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.4.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"deleted" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""nothing/delete IP-MAC-Port Binding for the interface.""",
}, # column
"impbAutoScanIpAddressFrom" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The begin for IP address associated of the IP-MAC-PORT Binding auto scan entry.""",
}, # scalar
"impbAutoScanIpAddressTo" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.14.10.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The end for IP address associated of the IP-MAC-PORT Binding auto scan entry.""",
}, # scalar
"impbAutoScanStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.14.10.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"scan" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Nothing / scan IP-MAC-Port Binding auto scan for the interface.""",
}, # scalar
"companyACLGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15",
}, # node
"aclProfile" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1",
}, # node
"ipv4aclProfileTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.1",
"status" : "obsolete",
"description" :
""" A table to ACL profile .""",
}, # table
"ipv4aclProfileEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1",
"create" : "true",
"status" : "obsolete",
"linkage" : [
"ipv4aclProfileNo",
],
"description" :
""" Each entry in this table is a ACL profile.
Index to the table is ACL profile ID. """,
}, # row
"ipv4aclProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.1",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"description" :
"""The ACL Profile ID. The ID 1 to 50 is user-defined ACL,
and the ID more than 50 is reserved for system-defined ACL.
The user only allow to create user-defined ACL ID.
And system-defined ACL is read only.""",
}, # column
"ipv4aclProfileType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.2",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"l2" : {
"nodetype" : "namednumber",
"number" : "1"
},
"l3" : {
"nodetype" : "namednumber",
"number" : "2"
},
"impb" : {
"nodetype" : "namednumber",
"number" : "3"
},
"arpSP_permit" : {
"nodetype" : "namednumber",
"number" : "4"
},
"arpSP_deny" : {
"nodetype" : "namednumber",
"number" : "5"
},
"voiceVlan" : {
"nodetype" : "namednumber",
"number" : "6"
},
"surveillanceVlan" : {
"nodetype" : "namednumber",
"number" : "7"
},
"aclQoS" : {
"nodetype" : "namednumber",
"number" : "8"
},
"dhcpServerScreen" : {
"nodetype" : "namednumber",
"number" : "10"
},
"zone_defense" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""The ACL Profile type, possible value are
l2 (1) - for MAC-based rule.
l3v4 (2) - for IPv4-based rule.
impb (3) - for IMPB entry.
arpSP_permit(4) - for ARP Spoofing prevention entry.
arpSP_deny(5) - for ARP Spoofing prevention entry.
voiceVlan(6) - for Voice VLAN OUI entry.
surveillanceVlan(7) - for Surveillance VLAN OUI entry.
aclQoS(8) - for ACL QoS entry.
dhcpServerScreen(10) - for DHCP server screening entry.
Note that only l2, l3v4 and l3v6 could be set by user,
other is reserved for system to show information.""",
}, # column
"ipv4aclProfileRuleCount" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.3",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The number of rules in this profile.""",
}, # column
"ipv4aclProfileMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.4",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Indicate which field want to care in the packet.
Turn on the following bits to select the following items
Type Item BIT
------------------------------------------
L2 DST_MAC 0 (LSB)
L2 SRC_MAC 1
L2 VID 2
L2 8021P_PRIORITY 3
L2 ETHER_TYPE 4
L3 DSCP 5
L3 ICMP_TYPE 6
L3 ICMP_CODE 7
L3 IGMP_TYPE 8
L3 DST_IP 9
L3 SRC_IP 10
L3 DST_PORT 11
L3 SRC_PORT 12
L3 TCPFLAG 13
ARP-SP ARP_SENDER_MAC 14
ARP-SP ARP_SENDER_IP 15 (MSB)
-------------------------------------------
The value is in Hex format.""",
}, # column
"ipv4aclProfileDstMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.1.1.5",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""The ACL Profile destination MAC address mask.
If DST_MAC is turn on in aclProfileMask,
it will work with its member rule field,aclL2RuleDstMacAddr,
to caculate a range of MAC address which is really care.""",
}, # column
"ipv4aclProfileSrcMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.1.1.6",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""The ACL Profile source MAC address mask.
If SRC_MAC is turn on in aclProfileMask,
it will work with its member rule field,aclL2RuleSrcMacAddr,
to caculate a range of MAC address which is really care.""",
}, # column
"ipv4aclProfileIPProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.7",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"igmp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tcp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"udp" : {
"nodetype" : "namednumber",
"number" : "17"
},
},
},
"access" : "readwrite",
"description" :
"""Indicate which IP Protocol will be care in this profile.
Only profile type is l3 can set the IP protocol.
For others, this field will be none.""",
}, # column
"ipv4aclProfileDstIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.8",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0xffffffff",
"description" :
"""The ACL Profile destination IP address mask.
If DST_IP is turn on in aclProfileMask,
it will work with its member rule field,aclL3RuleDstIpAddr,
to caculate a range of IP address which is really care.
The value is in HEX format, for example:
'255.255.255.0' is presented to 'FFFFFF00'""",
}, # column
"ipv4aclProfileSrcIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.9",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0xffffffff",
"description" :
"""The ACL Profile source IP address mask.
If SRC_IP is turn on in aclProfileMask,
it will work with its member rule field,aclL3RuleSrcIpAddr,
to caculate a range of IP address which is really care.
The value is in HEX format, for example:
'255.255.255.0' is presented to 'FFFFFF00'""",
}, # column
"ipv4aclProfileDstPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.1.1.10",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"default" : "0xffff",
"description" :
"""The ACL Profile UDP/TCP destination port mask.
If DST_PORT is turn on in aclProfileMask,
it will work with its member rule field,aclL3RuleTcpUdpDstPort,
to caculate a range of destination port which is really care.
The value is in HEX format.""",
}, # column
"ipv4aclProfileSrcPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.11",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"default" : "0xffff",
"description" :
"""The ACL Profile UDP/TCP source port mask.
If SRC_PORT is turn on in aclProfileMask,
it will work with its member rule field,aclL3RuleTcpUdpSrcPort,
to caculate a range of source port which is really care.
The value is in HEX format.""",
}, # column
"ipv4aclProfileArpSenderMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.12",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"default" : "0xffffffffff",
"description" :
"""The ACL Profile Sender MAC mask.
This is only for ARP Spoofing Prevention which is System-defined ACL,
and it's not allow to modify.
The value is in HEX format.""",
}, # column
"ipv4aclProfileArpSenderIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.1.1.13",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"default" : "0xffffffff",
"description" :
"""The ACL Profile Sender IP mask.
This is only for ARP Spoofing Prevention which is System-defined ACL,
and it's not allow to modify.
The value is in HEX format.""",
}, # column
"ipv4aclProfileStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.1.1.14",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
""" This object indicates the status of this entry, can only be set to
'createAndWait','active' and 'destroy'.
When the value of the entry status is 'createAndWait', it could be
set to 'active' only if the three values of aclProfileType,
aclProfileMask and ProtocolType are not conflicted.""",
}, # column
"aclProfileTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2",
"status" : "current",
"description" :
""" A table to ACL profile .""",
}, # table
"aclProfileEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"aclProfileNo",
],
"description" :
""" Each entry in this table is a ACL profile.
Index to the table is ACL profile ID. """,
}, # row
"aclProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"description" :
"""The ACL Profile ID. The ID 1 to 50 is user-defined ACL,
and the ID more than 50 is reserved for system-defined ACL.
The user only allow to create user-defined ACL ID.
And system-defined ACL is read only.""",
}, # column
"aclProfileType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"l2" : {
"nodetype" : "namednumber",
"number" : "1"
},
"l3v4" : {
"nodetype" : "namednumber",
"number" : "2"
},
"impb" : {
"nodetype" : "namednumber",
"number" : "3"
},
"arpSP_permit" : {
"nodetype" : "namednumber",
"number" : "4"
},
"arpSP_deny" : {
"nodetype" : "namednumber",
"number" : "5"
},
"voiceVlan" : {
"nodetype" : "namednumber",
"number" : "6"
},
"surveillanceVlan" : {
"nodetype" : "namednumber",
"number" : "7"
},
"aclQoS" : {
"nodetype" : "namednumber",
"number" : "8"
},
"dhcpServerScreen" : {
"nodetype" : "namednumber",
"number" : "10"
},
"l3v6" : {
"nodetype" : "namednumber",
"number" : "11"
},
"zone_defense" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""The ACL Profile type, possible value are
l2 (1) - for MAC-based rule.
l3v4 (2) - for IPv4-based rule.
impb (3) - for IMPB entry.
l3v6 (11) - for IPv6-based rule.
zone defense (12) - for zone defense entry.
arpSP_permit(4) - for ARP Spoofing prevention entry.
arpSP_deny(5) - for ARP Spoofing prevention entry.
voiceVlan(6) - for Voice VLAN OUI entry.
surveillanceVlan(7) - for Surveillance VLAN OUI entry.
aclQoS(8) - for ACL QoS entry.
dhcpServerScreen(10) - for DHCP server screening entry.
Note that only l2, l3v4 and l3v6 could be set by user,
other is reserved for system to show information.""",
}, # column
"aclProfileRuleCount" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The number of rules in this profile.""",
}, # column
"aclProfileMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Indicate which field want to care in the packet.
Turn on the following bits to select the following items
Type Item BIT
------------------------------------------
L2 DST_MAC 0 (LSB)
L2 SRC_MAC 1
L2 VID 2
L2 8021P_PRIORITY 3
L2 ETHER_TYPE 4
L3 DSCP 5
L3 ICMP_TYPE 6
L3 ICMP_CODE 7
L3 IGMP_TYPE 8
L3 DST_IP 9
L3 SRC_IP 10
L3 DST_PORT 11
L3 SRC_PORT 12
L3 TCPFLAG 13
ARP-SP ARP_SENDER_MAC 14
ARP-SP ARP_SENDER_IP 15 (MSB)
L3 TRAFFIC_CLASS 21
-------------------------------------------
The value is in Hex format.""",
}, # column
"aclProfileDstMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""The ACL Profile destination MAC address mask.
If DST_MAC is turn on in aclProfileMask,
it will work with its member rule field,aclL2RuleDstMacAddr,
to caculate a range of MAC address which is really care.""",
}, # column
"aclProfileSrcMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""The ACL Profile source MAC address mask.
If SRC_MAC is turn on in aclProfileMask,
it will work with its member rule field,aclL2RuleSrcMacAddr,
to caculate a range of MAC address which is really care.""",
}, # column
"aclProfileIPProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"igmp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tcp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"udp" : {
"nodetype" : "namednumber",
"number" : "17"
},
"icmpv6" : {
"nodetype" : "namednumber",
"number" : "58"
},
},
},
"access" : "readwrite",
"description" :
"""Indicate which IP Protocol will be care in this profile.
Only profile type is l3 can set the IP protocol.
For others, this field will be none.""",
}, # column
"aclProfileDstIpAddrMaskType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.2.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""IPv6 Address type.""",
}, # column
"aclProfileDstIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"default" : "0xffffffff",
"description" :
"""The ACL Profile destination IP address mask.
If DST_IP is turn on in aclProfileMask,
it will work with its member rule field,aclL3RuleDstIpAddr,
to caculate a range of IP address which is really care.
The value is in HEX format, for example:
'255.255.255.0' is presented to 'FFFFFF00'""",
}, # column
"aclProfileSrcIpAddrMaskType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.2.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""IPv6 Address type.""",
}, # column
"aclProfileSrcIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"default" : "0xffffffff",
"description" :
"""The ACL Profile source IP address mask.
If SRC_IP is turn on in aclProfileMask,
it will work with its member rule field,aclL3RuleSrcIpAddr,
to caculate a range of IP address which is really care.
The value is in HEX format, for example:
'255.255.255.0' is presented to 'FFFFFF00'""",
}, # column
"aclProfileDstPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"default" : "0xffff",
"description" :
"""The ACL Profile UDP/TCP destination port mask.
If DST_PORT is turn on in aclProfileMask,
it will work with its member rule field,aclL3RuleTcpUdpDstPort,
to caculate a range of destination port which is really care.
The value is in HEX format.""",
}, # column
"aclProfileSrcPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"default" : "0xffff",
"description" :
"""The ACL Profile UDP/TCP source port mask.
If SRC_PORT is turn on in aclProfileMask,
it will work with its member rule field,aclL3RuleTcpUdpSrcPort,
to caculate a range of source port which is really care.
The value is in HEX format.""",
}, # column
"aclProfileArpSenderMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.1.2.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"default" : "0xffffffffff",
"description" :
"""The ACL Profile Sender MAC mask.
This is only for ARP Spoofing Prevention which is System-defined ACL,
and it's not allow to modify.
The value is in HEX format.""",
}, # column
"aclProfileArpSenderIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"default" : "0xffffffff",
"description" :
"""The ACL Profile Sender IP mask.
This is only for ARP Spoofing Prevention which is System-defined ACL,
and it's not allow to modify.
The value is in HEX format.""",
}, # column
"aclProfileStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.1.2.1.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
""" This object indicates the status of this entry, can only be set to
'createAndWait','active' and 'destroy'.
When the value of the entry status is 'createAndWait', it could be
set to 'active' only if the three values of aclProfileType,
aclProfileMask and ProtocolType are not conflicted.""",
}, # column
"aclL2Rule" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2",
}, # node
"aclL2RuleTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.2.1",
"status" : "current",
"description" :
"""A table to configure L2 filter rules in the system.""",
}, # table
"aclL2RuleEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"aclL2AccessID",
"aclL2ProfileID",
],
"description" :
"""Each entry in this table is a L2 filter rule.
Index to the table is the L2 filter number and Profile ID.""",
}, # row
"aclL2AccessID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""L2 Filter rule ID.""",
}, # column
"aclL2ProfileID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"default" : "1",
"description" :
"""ACL Profile ID which this rule join.""",
}, # column
"aclL2RuleEtherType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "-1"
},
{
"min" : "1501",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The value in the Type/Len field of a frame that will
be matched to trigger this filter. The default value of
this object is '-1', which means the rule don't care this
condition.""",
}, # column
"aclL2RuleDstMacAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""Destination MAC address to be matched with the packet. By Default, the
Destination Mac Address will be zero,which means the rule don't care this
condition.""",
}, # column
"aclL2RuleSrcMacAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""Source MAC address to be matched with the packet. By Default, the Source
Mac Address will be zero, which means the rule don't care this condition..
address""",
}, # column
"aclL2RuleVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "4094"
},
],
"range" : {
"min" : "-1",
"max" : "4094"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Vlan Id to be filtered. In case of Provider bridges, This Vlan Id will
be treated as customer Vlan Id. By Default, the value will be '-1',
which means the rule don't care this condition.""",
}, # column
"aclL2Rule1pPriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""802.1p priority to be matched with the packet. By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclL2RuleDstMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address Mask work for Destination MAC address.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclL2RuleSrcMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address Mask work for Source MAC address.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclL2RuleInPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Specifies the complete set of ports over which this filter is applied
for packets ingress at ports in this list.""",
}, # column
"aclL2RuleAction" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"allow" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "allow",
"description" :
"""Specifies the action to be taken on the packet if the filter
rule matches.
If the action is 'allow', the packet will be forwarded according
to the forwarding rules.
If the action is 'drop', the packet will be discarded.""",
}, # column
"aclL2RulePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Enter a priority value if you want to re-write the 802.1p user
priority of a packet to the value entered in the Priority field,
which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue.By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclL2RuleReplacePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable this option and manually enter the replacement value used
to re-write the 802.1p user priority value entered in the Priority
field, which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue. Otherwise, a packet
will have its incoming 802.1p user priority re-written to its original
value before being forwarded by the Switch.""",
}, # column
"aclL2RuleStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.2.1.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry. An entry is
created in this table when this object is SET to 'createAndWait'.
The entry in this table is used when the status of this object
is SET 'active'. The entry in this table is not used when this
object is SET 'notInService'. An entry created in this table is
be deleted when this object is SET 'destroy'.""",
}, # column
"aclL3Rule" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3",
}, # node
"aclL3RuleTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1",
"status" : "current",
"description" :
""" A table to configure L3 filter rules in the system.""",
}, # table
"aclL3RuleEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"aclL3RuleAccessID",
"aclL3RuleProfileNo",
],
"description" :
""" Each entry in this table is a L3 filter rule.
Index to the table is L3 filter number. """,
}, # row
"aclL3RuleAccessID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""L3 Filter rule ID.""",
}, # column
"aclL3RuleProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"description" :
"""The Profile ID which this rule join.""",
}, # column
"aclL3RuleProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"icmp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"igmp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tcp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"udp" : {
"nodetype" : "namednumber",
"number" : "17"
},
},
},
"access" : "readonly",
"description" :
""" The type of protocol to be checked against the packet.""",
}, # column
"aclL3RuleICMPMessageType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The message type to be checked against the packet. If the
message type matches with the packet, then the packet will be
dropped / allowed based on the action set in aclL3RuleAction.
The default value is '-1',which means the rule don't care this
condition.
Some ICMP message types are:
echoReply(0),
destinationUnreachable(3),
sourceQuench(4),
redirect(5),
echoRequest(8),
timeExceeded(11),
parameterProblem(12),
timestampRequest(13),
timestampReply(14),
informationRequest(15),
informationReply(16),
addressMaskRequest(17),
addressMaskReply (18),""",
}, # column
"aclL3RuleICMPMessageCode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.172.16.31.105.13.15.3.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The message code to be checked against the packet. If the
packet matches with the message code, then the packet will
be dropped / allowed based on the action set in aclL3RuleAction.
The default value is '-1', which means the rule don't care this
condition.
Some ICMP message codes are :
networkUnreachable(0),
hostUnreachable(1),
protocolUnreachable(2),
portUnreachable(3),
fragmentNeed(4),
sourceRouteFail(5),
destNetworkUnknown(6),
destHostUnknown(7),
srcHostIsolated(8),
destNetworkAdminProhibited(9),
destHostAdminProhibited(10),
networkUnreachableTOS(11),
hostUnreachableTOS(12),""",
}, # column
"aclL3RuleDstIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""Destination IP address to be matched with the packet.
The default value will be zero, which means the rule
don't care this condition.""",
}, # column
"aclL3RuleSrcIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""Source IP address to be matched with the packet.
The default value will be zero, which means the
rule don't care this condition.""",
}, # column
"aclL3RuleDstIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"default" : "0xffffffff",
"description" :
"""The IP subnet mask for Destination IP address.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclL3RuleSrcIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"default" : "0xffffffff",
"description" :
"""The IP subnet mask for Source IP address.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclL3RuleTcpUdpDstPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The TCP / UDP destination port. The default value is -1,
which means the rule don't care this condition.""",
}, # column
"aclL3RuleTcpUdpSrcPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The TCP / UDP source port. The default value is -1,
which means the rule don't care this condition.""",
}, # column
"aclL3RuleTcpUdpDstPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readonly",
"description" :
"""The TCP / UDP Destination port Mask.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclL3RuleTcpUdpSrcPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readonly",
"description" :
"""The TCP / UDP Source port Mask.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclL3RuleTcpAckBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP ACK bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this
condition.""",
}, # column
"aclL3RuleTcpRstBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP RST bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this
condition.""",
}, # column
"aclL3RuleTcpUrgBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.1.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP Urg bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this
condition.""",
}, # column
"aclL3RuleTcpPshBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP Psh bit to be checked against the packet. The default
value is 'dont_care'(-1). which means the rule don't care this
condition.""",
}, # column
"aclL3RuleTcpSynBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.18",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP Syn bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this condition.""",
}, # column
"aclL3RuleTcpFinBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.1.1.19",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP Fin bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this
condition.""",
}, # column
"aclL3RuleDscp" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "63"
},
],
"range" : {
"min" : "-1",
"max" : "63"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The IP Dscp value to be checked against the packet.
A default value is '-1', which means the rule don't
care this condition.""",
}, # column
"aclL3RuleIgmpType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.21",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The IGMP Type to be checked against the packet.A default value is '-1',
which means the rule don't care this condition.""",
}, # column
"aclL3RulePortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.22",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Specifies the complete set of ports over which if the packet arrives
this filter rule will be applicable.""",
}, # column
"aclL3RuleAction" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.1.1.23",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"allow" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "allow",
"description" :
"""Specifies the action to be taken on the packet if the filter
rule matches.""",
}, # column
"aclL3RulePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.25",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Enter a priority value if you want to re-write the 802.1p user
priority of a packet to the value entered in the Priority field,
which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue.By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclL3RuleReplacePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.26",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable this option and manually enter the replacement value used
to re-write the 802.1p user priority value entered in the Priority
field, which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue. Otherwise, a packet
will have its incoming 802.1p user priority re-written to its original
value before being forwarded by the Switch.""",
}, # column
"aclL3RuleStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.1.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry. An entry is
created in this table when this object is SET to 'createAndWait'.
The entry in this table is used when the status of this object
is SET 'active'. The entry in this table is not used when this
object is SET 'notInService'. An entry created in this table is
be deleted when this object is SET 'destroy'.""",
}, # column
"aclv6L3RuleTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2",
"status" : "current",
"description" :
""" A table to configure L3 filter rules in the system.""",
}, # table
"aclv6L3RuleEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"aclv6L3RuleAccessID",
"aclv6L3RuleProfileNo",
],
"description" :
""" Each entry in this table is a L3 filter rule.
Index to the table is L3 filter number. """,
}, # row
"aclv6L3RuleAccessID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""L3 Filter rule ID.""",
}, # column
"aclv6L3RuleProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"description" :
"""The Profile ID which this rule join.""",
}, # column
"aclv6L3RuleProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"icmp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"igmp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tcp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"udp" : {
"nodetype" : "namednumber",
"number" : "17"
},
"icmpv6" : {
"nodetype" : "namednumber",
"number" : "58"
},
},
},
"access" : "readonly",
"description" :
""" The type of protocol to be checked against the packet.""",
}, # column
"aclv6L3RuleICMPMessageType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The message type to be checked against the packet. If the
message type matches with the packet, then the packet will be
dropped / allowed based on the action set in aclL3RuleAction.
The default value is '-1',which means the rule don't care this
condition.
Some ICMP message types are:
echoReply(0),
destinationUnreachable(3),
sourceQuench(4),
redirect(5),
echoRequest(8),
timeExceeded(11),
parameterProblem(12),
timestampRequest(13),
timestampReply(14),
informationRequest(15),
informationReply(16),
addressMaskRequest(17),
addressMaskReply (18),""",
}, # column
"aclv6L3RuleICMPMessageCode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.15.3.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The message code to be checked against the packet. If the
packet matches with the message code, then the packet will
be dropped / allowed based on the action set in aclL3RuleAction.
The default value is '-1', which means the rule don't care this
condition.
Some ICMP message codes are :
networkUnreachable(0),
hostUnreachable(1),
protocolUnreachable(2),
portUnreachable(3),
fragmentNeed(4),
sourceRouteFail(5),
destNetworkUnknown(6),
destHostUnknown(7),
srcHostIsolated(8),
destNetworkAdminProhibited(9),
destHostAdminProhibited(10),
networkUnreachableTOS(11),
hostUnreachableTOS(12),""",
}, # column
"aclv6L3RuleDstIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""Destination IP address to be matched with the packet.
The default value will be zero, which means the rule
don't care this condition.""",
}, # column
"aclv6L3RuleSrcIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""Source IP address to be matched with the packet.
The default value will be zero, which means the
rule don't care this condition.""",
}, # column
"aclv6L3RuleDstIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"default" : "0xffffffff",
"description" :
"""The IP subnet mask for Destination IP address.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclv6L3RuleSrcIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"default" : "0xffffffff",
"description" :
"""The IP subnet mask for Source IP address.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclv6L3RuleTcpUdpDstPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The TCP / UDP destination port. The default value is -1,
which means the rule don't care this condition.""",
}, # column
"aclv6L3RuleTcpUdpSrcPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The TCP / UDP source port. The default value is -1,
which means the rule don't care this condition.""",
}, # column
"aclv6L3RuleTcpUdpDstPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readonly",
"description" :
"""The TCP / UDP Destination port Mask.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclv6L3RuleTcpUdpSrcPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readonly",
"description" :
"""The TCP / UDP Source port Mask.
This field is read-only and copy from it's Profile setting.""",
}, # column
"aclv6L3RuleTcpAckBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP ACK bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this
condition.""",
}, # column
"aclv6L3RuleTcpRstBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP RST bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this
condition.""",
}, # column
"aclv6L3RuleTcpUrgBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP Urg bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this
condition.""",
}, # column
"aclv6L3RuleTcpPshBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP Psh bit to be checked against the packet. The default
value is 'dont_care'(-1). which means the rule don't care this
condition.""",
}, # column
"aclv6L3RuleTcpSynBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.18",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP Syn bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this condition.""",
}, # column
"aclv6L3RuleTcpFinBit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.19",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dont_care" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"establish" : {
"nodetype" : "namednumber",
"number" : "1"
},
"notEstablish" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "dont_care",
"description" :
""" The TCP Fin bit to be checked against the packet. The default
value is 'dont_care'(-1), which means the rule don't care this
condition.""",
}, # column
"aclv6L3RuleTrafficClass" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "63"
},
],
"range" : {
"min" : "-1",
"max" : "63"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The IP Dscp value to be checked against the packet.
A default value is '-1', which means the rule don't
care this condition.""",
}, # column
"aclv6L3RulePortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.21",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Specifies the complete set of ports over which if the packet arrives
this filter rule will be applicable.""",
}, # column
"aclv6L3RuleAction" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.22",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"allow" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "allow",
"description" :
"""Specifies the action to be taken on the packet if the filter
rule matches.""",
}, # column
"aclv6L3RulePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.24",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Enter a priority value if you want to re-write the 802.1p user
priority of a packet to the value entered in the Priority field,
which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue.By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclv6L3RuleReplacePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.25",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable this option and manually enter the replacement value used
to re-write the 802.1p user priority value entered in the Priority
field, which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue. Otherwise, a packet
will have its incoming 802.1p user priority re-written to its original
value before being forwarded by the Switch.""",
}, # column
"aclv6L3RuleStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.15.3.2.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry. An entry is
created in this table when this object is SET to 'createAndWait'.
The entry in this table is used when the status of this object
is SET 'active'. The entry in this table is not used when this
object is SET 'notInService'. An entry created in this table is
be deleted when this object is SET 'destroy'.""",
}, # column
"companySyslog" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16",
}, # node
"ipv4syslogGeneralGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.1",
}, # node
"ipv4syslogLogSrvAddr" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.1.1",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Specifies the syslog server IP to be used for remote logging. When
configured, a new socket will be opened for this address.
When the address is changed, the socket opened for the previous address
will be closed and a new socket will be opened for this address.""",
}, # scalar
"ipv4syslogUDPPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.1.2",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The value is for setting UDP Port.""",
}, # scalar
"ipv4syslogTimeStamp" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.1.3",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enable",
"description" :
"""This object is for enabling or disabling timestamp option.
When enabled, the messages (log and email alert messages) will
hold the time stamp information.
When disabled, the time stamp information will not be carried with
the messages sent to the log and mail servers.""",
}, # scalar
"ipv4syslogSeverity" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.1.4",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"warning" : {
"nodetype" : "namednumber",
"number" : "4"
},
"info" : {
"nodetype" : "namednumber",
"number" : "6"
},
"all" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the log level option to be set for a specific module.""",
}, # scalar
"ipv4syslogFacility" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.1.5",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"local0" : {
"nodetype" : "namednumber",
"number" : "128"
},
"local1" : {
"nodetype" : "namednumber",
"number" : "136"
},
"local2" : {
"nodetype" : "namednumber",
"number" : "144"
},
"local3" : {
"nodetype" : "namednumber",
"number" : "152"
},
"local4" : {
"nodetype" : "namednumber",
"number" : "160"
},
"local5" : {
"nodetype" : "namednumber",
"number" : "168"
},
"local6" : {
"nodetype" : "namednumber",
"number" : "176"
},
"local7" : {
"nodetype" : "namednumber",
"number" : "184"
},
},
},
"access" : "readwrite",
"default" : "local0",
"description" :
"""The Syslog standard facilities.
The facility to be used when sending Syslog messages to this server.""",
}, # scalar
"ipv4syslogLogging" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.1.6",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object is for enabling or disabling syslog alert features in
the system.
System Logs record and manage events, as well as report errors and
informational messages.""",
}, # scalar
"syslogGeneralGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.16.2",
}, # node
"syslogState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.16.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object is for enabling or disabling syslog alert features in
the system.
System Logs record and manage events, as well as report errors and
informational messages.""",
}, # scalar
"syslogTimeStampOption" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enable",
"description" :
"""This object is for enabling or disabling timestamp option.
When enabled, the messages (log and email alert messages) will
hold the time stamp information.
When disabled, the time stamp information will not be carried with
the messages sent to the log and mail servers.""",
}, # scalar
"syslogSrvSeverity" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"warning" : {
"nodetype" : "namednumber",
"number" : "4"
},
"info" : {
"nodetype" : "namednumber",
"number" : "6"
},
"all" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the log level option to be set for a specific module.""",
}, # scalar
"syslogSrvFacility" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"local0" : {
"nodetype" : "namednumber",
"number" : "128"
},
"local1" : {
"nodetype" : "namednumber",
"number" : "136"
},
"local2" : {
"nodetype" : "namednumber",
"number" : "144"
},
"local3" : {
"nodetype" : "namednumber",
"number" : "152"
},
"local4" : {
"nodetype" : "namednumber",
"number" : "160"
},
"local5" : {
"nodetype" : "namednumber",
"number" : "168"
},
"local6" : {
"nodetype" : "namednumber",
"number" : "176"
},
"local7" : {
"nodetype" : "namednumber",
"number" : "184"
},
},
},
"access" : "readwrite",
"description" :
"""The Syslog standard facilities.
The facility to be used when sending Syslog messages to this server.""",
}, # scalar
"syslogSrvTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.5",
"status" : "current",
"description" :
"""A table containing entries of priority,server address type, server address,
port through which it can send and tranport type.""",
}, # table
"syslogSrvEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.5.1",
"create" : "true",
"status" : "current",
"linkage" : [
"syslogSrvIPType",
"syslogSrvIP",
],
"description" :
"""A table containing index as priority , server address type and server address.""",
}, # row
"syslogSrvIPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.5.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ipv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ipv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Specifies the Address type of server.Address type shall be ipv4 or ipv6.""",
}, # column
"syslogSrvIP" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""Specifies the ServerIP to which the syslog shall be forwarded.""",
}, # column
"syslogSrvPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.5.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "514",
"description" :
"""Specifies the Port through which it can send the syslog message.
By default the the port is 514""",
}, # column
"syslogInterfaceName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the syslogSrvIP is linklocal address.""",
}, # column
"syslogSrvRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.16.2.5.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The Status of the Server Entry.""",
}, # column
"companyLBD" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17",
}, # node
"sysLBDStateEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Loopback detection function.
The Loopback Detection function is used to detect the loop created
by a specific port while Spanning Tree Protocol (STP) is not
enabled in the network, especially when the down links are hubs
or unmanaged switchs.The Switch will automatically shutdown the
port and sends a log to the administrator.""",
}, # scalar
"sysLBDMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"port" : {
"nodetype" : "namednumber",
"number" : "1"
},
"vlan" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "port",
"description" :
"""Loopback detection function mode.""",
}, # scalar
"sysLBDInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.17.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "32767"
},
],
"range" : {
"min" : "1",
"max" : "32767"
},
},
},
"access" : "readwrite",
"default" : "2",
"description" :
"""Set a Loop detection Interval between 1 and 32767 seconds.
The default is 2 seconds.
This time interval to be used at counting time seconds to
resend the CTP packet automatically.""",
}, # scalar
"sysLBDRecoverTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "60",
"max" : "1000000"
},
],
"range" : {
"min" : "0",
"max" : "1000000"
},
},
},
"access" : "readwrite",
"default" : "60",
"description" :
"""This time interval to be used at counting time seconds to
recover the disabled port automatically.
The Loop Detection Recover Time can be set at 0 seconds,
or 60 to 1000000 seconds.
Entering 0 will disable the Loop Detection Recover Time.
The default is 60 seconds.""",
}, # scalar
"sysLBDCtrlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.5",
"status" : "current",
"description" :
"""A table to control Loopback detection features either for
the entire switch or for each interface in the switch.""",
}, # table
"sysLBDCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.5.1",
"status" : "current",
"linkage" : [
"sysLBDCtrlIndex",
],
"description" :
"""An entry appears in this table for each interface
in the system.""",
}, # row
"sysLBDCtrlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index of the port for which the configuration
in this entry applies.""",
}, # column
"sysLBDPortStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.5.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Provides control to per port enable or disable the loopback detection
function. Default is disabled.""",
}, # column
"sysLBDPortLoopStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.5.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"normal" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The loop status for this port.""",
}, # column
"sysLBDVlanLoopTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.6",
"status" : "current",
"description" :
"""A table to display Loopback detection features by vlan
mode .""",
}, # table
"sysLBDVlanLoopEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.6.1",
"status" : "current",
"linkage" : [
"sysLBDVlanLoopIndex",
],
"description" :
"""An entry appears in this table for each interface
in the system.""",
}, # row
"sysLBDVlanLoopIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.17.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Display port lists loop status by vlan.""",
}, # column
"sysLBDVlanLoopPorts" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.17.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""Display port lists loop status by vlan.""",
}, # column
"companyMirror" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.18",
}, # node
"sysMirrorStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.18.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Port Mirroring function.
Default is disabled.
Port Mirroring is a method of monitoring network traffic that
forwards a copy of each incoming and/or outgoing packet from one
port of the Switch to another port where the packet can be studied.""",
}, # scalar
"sysMirrorTargetPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.18.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specifies the port to which the mirrored traffic in the system
is to be copied.""",
}, # scalar
"sysMirrorCtrlIngressMirroring" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.18.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Provides control to enable or disable mirroring of ingress
traffic over this interface to the mirrored-to port.""",
}, # scalar
"sysMirrorCtrlEgressMirroring" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.18.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Provides control to enable or disable mirroring of egress
traffic over this interface to the mirrored-to port.""",
}, # scalar
"companyTrapSetting" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.19",
}, # node
"sysTrapIP" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.19.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""The smart console utility's IP address is used to recive trap events.""",
}, # scalar
"sysTrapSystemEvent" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.19.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"deviceBootUp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"illegalLogin" : {
"nodetype" : "namednumber",
"number" : "2"
},
"both" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"default" : "none",
"description" :
"""Enable/Disable system trap events in the switch system.""",
}, # scalar
"sysTrapPortEvent" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.19.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disable port trap event in the system.""",
}, # scalar
"sysTrapStateChangeEvent" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.19.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disable RSTP state change trap event in the system.""",
}, # scalar
"sysTrapFirmUpgradeEvent" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.19.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disable firmware upgrading trap event in the system.""",
}, # scalar
"sysTrapPoePowerOnOffEvent" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.19.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disable PoE power on /off trap event in the system.""",
}, # scalar
"sysTrapPoePowerErrorEvent" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.19.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disable PoE power error trap events in the system.
PoE power error trap events include short circuit, over load, power denied, and thermal shutdown.""",
}, # scalar
"sysTrapOverMaxPowerBudgetEvent" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.19.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disable PoE over max power budget trap event in the system.""",
}, # scalar
"sysTrapStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.19.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disable trap event in the system.""",
}, # scalar
"companySNTPSetting" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20",
}, # node
"ipv4sysSNTPTimeSeconds" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.1",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""This object is for setting the system time in seconds
from Epoch (00:00:00 UTC, January 1, 2009). Notice :
input value must larger than 1230768000 (00:00:00 UTC,
January 1, 2009) and smaller than 2145916799 (23:59:59
UTC, December 31, 2037).""",
}, # scalar
"ipv4sysSNTPFirstServer" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.2",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""SNTP First Server's IP Address""",
}, # scalar
"ipv4sysSNTPSecondServer" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.3",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""SNTP Second Server's IP Address""",
}, # scalar
"ipv4sysSNTPPollInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.4",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""SNTP Poll Interval In Seconds (30-99999) """,
}, # scalar
"ipv4sysSNTPState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.5",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sntp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"local" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable SNTP function in the system.""",
}, # scalar
"ipv4sysSNTPDSTOffset" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.20.6",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"offset30min" : {
"nodetype" : "namednumber",
"number" : "30"
},
"offset60min" : {
"nodetype" : "namednumber",
"number" : "60"
},
"offset90min" : {
"nodetype" : "namednumber",
"number" : "90"
},
"offset120min" : {
"nodetype" : "namednumber",
"number" : "120"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for Daylight Saving Time Offset In (30/60/90/120) Minutes.""",
}, # scalar
"ipv4sysSNTPGMTMinutes" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.7",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specifies the Time Zone Offset from GMT in +/- Minutes. (+780 ~ -720)""",
}, # scalar
"ipv4sysSNTPDSTStartMon" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.8",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start month of Daylight Saving Time.""",
}, # scalar
"ipv4sysSNTPDSTStartDay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.9",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start day of Daylight Saving Time.""",
}, # scalar
"ipv4sysSNTPDSTStartHour" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.10",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start hour of Daylight Saving Time.""",
}, # scalar
"ipv4sysSNTPDSTStartMin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.11",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start minute of Daylight Saving Time.""",
}, # scalar
"ipv4sysSNTPDSTEndMon" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.12",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end month of Daylight Saving Time.""",
}, # scalar
"ipv4sysSNTPDSTEndDay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.13",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end day of Daylight Saving Time.""",
}, # scalar
"ipv4sysSNTPDSTEndHour" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.14",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end hour of Daylight Saving Time.""",
}, # scalar
"ipv4sysSNTPDSTEndMin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.20.15",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end minute of Daylight Saving Time.""",
}, # scalar
"ipv4sysSNTPDSTState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.20.16",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"annual" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for Annual(1) or Disabled(2) DST state in the system.""",
}, # scalar
"sysSNTPServerTable" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17",
}, # node
"sysSNTPTimeSeconds" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""This object is for setting the system time in seconds
from Epoch (00:00:00 UTC, January 1, 2009). Notice :
input value must larger than 1230768000 (00:00:00 UTC,
January 1, 2009) and smaller than 2145916799 (23:59:59
UTC, December 31, 2037).""",
}, # scalar
"sysSNTPFirstServer" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""SNTP First Server's IPv6 Address""",
}, # scalar
"sysSNTPFirstType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""SNTP First Server's IPv6 Address type.""",
}, # scalar
"sysSNTPFirstInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the sysSNTPFirstServer is linklocal address.""",
}, # scalar
"sysSNTPSecondServer" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""SNTP Second Server's IPv6 Address""",
}, # scalar
"sysSNTPSecondType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""SNTP First Server's IPv6 Address type.""",
}, # scalar
"sysSNTPSecondInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the sysSNTPSecondServer is linklocal address.""",
}, # scalar
"sysSNTPPollInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""SNTP Poll Interval In Seconds (30-99999) """,
}, # scalar
"sysSNTPState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sntp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"local" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable SNTP function in the system.""",
}, # scalar
"sysSNTPDSTOffset" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"offset30min" : {
"nodetype" : "namednumber",
"number" : "30"
},
"offset60min" : {
"nodetype" : "namednumber",
"number" : "60"
},
"offset90min" : {
"nodetype" : "namednumber",
"number" : "90"
},
"offset120min" : {
"nodetype" : "namednumber",
"number" : "120"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for Daylight Saving Time Offset
In (30/60/90/120) Minutes.""",
}, # scalar
"sysSNTPGMTMinutes" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specifies the Time Zone Offset from GMT in +/- Minutes. (+780 ~ -720)""",
}, # scalar
"sysSNTPDSTStartMon" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start month of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTStartDay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start day of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTStartHour" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start hour of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTStartMin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start minute of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTEndMon" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end month of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTEndDay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end day of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTEndHour" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end hour of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTEndMin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.19",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end minute of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.20.17.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"annual" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for Annual(1) or Disabled(2) DST state in the system.""",
}, # scalar
"companyVoiceVlan" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21",
}, # node
"voicevlanSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1",
}, # node
"voiceVlanMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.21.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Voice VLAN is a feature that allows you to automatically place
the voice traffic from IP phone to an assigned VLAN to enhance
the VoIP service.
This object is for enabling or disabling Voice Vlan function
in the system.
If the Vlan mode is in Asymmetric VLAN mode, Voice VLAN can not
be enabled.""",
}, # scalar
"voiceVlanId" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The ID of VLAN that you want the voice traffic to be in.
It must be a exist vlan id.""",
}, # scalar
"voiceVlanTimeout" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""A period of time in hour to remove a port from voice VLAN
if the port is an automatic VLAN member.
The Timeout range is 1~120 hours.
Default aging time is 1 hour.""",
}, # scalar
"voiceVlanPriority" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"highest" : {
"nodetype" : "namednumber",
"number" : "0"
},
"high" : {
"nodetype" : "namednumber",
"number" : "1"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "2"
},
"low" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""The 802.1p priority levels of the traffic in the Voice VLAN.""",
}, # scalar
"voicevlanPortControlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.6",
"status" : "current",
"description" :
"""A table that contains Voice Vlan Port Control
configuration information.""",
}, # table
"voicevlanPortControlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.6.1",
"status" : "current",
"linkage" : [
"voicevlanPortControlIndex",
],
"description" :
"""A list of Voice Vlan Control configuration
parameters for each Port on this device.""",
}, # row
"voicevlanPortControlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The voice vlan port index.""",
}, # column
"voicevlanPortAutoDetection" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.6.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling Voice Vlan Auto
Detection in the port.
If the auto detection is enable, switch will add this port
to the voice VLAN automatically if it detects the device OUI
matches the Telephony OUI.
If the port is a static member of voice vlan or a LA member,
it can not enable voice vlan auto detection.""",
}, # column
"voicevlanPortManuTagMode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.6.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"tag" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untag" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""User assign per port tag/untag mode.""",
}, # column
"voicevlanPortCurrentTagMode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.1.6.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"tag" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untag" : {
"nodetype" : "namednumber",
"number" : "2"
},
"none" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Per port current tag/untag mode.""",
}, # column
"voicevlanPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.21.1.6.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"manual" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
"none" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates Voice vlan state to this Port.
manual - this port is a static member of voice vlan.
dynamic - this port is a dynamic member of voice vlan.
none - this port is not a member of voice vlan.""",
}, # column
"voicevlanOUI" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.21.2",
}, # node
"voicevlanOUITable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.21.2.1",
"status" : "current",
"description" :
"""A voice vlan OUI entry containing the description and mac.""",
}, # table
"voicevlanOUIEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.2.1.1",
"status" : "current",
"linkage" : [
"voicevlanOUITelephonyOUI",
],
"description" :
"""A voice vlan OUI entry containing the description and mac.""",
}, # row
"voicevlanOUITelephonyOUI" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""An Organizationally Unique Identifier (OUI) is a 24-bit number
that is purchased from the IEEE Registration Authority. This identifier
uniquely identifies a vendor, manufacturer, or other organization.
This object indicates the voice traffic's OUI that user created.""",
}, # column
"voicevlanOUIDescription" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""The Description for the OUI.""",
}, # column
"voicevlanOUIMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""Voice vlan OUI Mask. Always be FF:FF:FF:00:00:00.""",
}, # column
"voicevlanOUIStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.21.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
To create a new entry, you must set the voicevlanOUIStatus
to be CreateAndGo, then this entry will turn to be Active.""",
}, # column
"voicevlanDevice" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.21.3",
}, # node
"voicevlanDeviceTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.3.1",
"status" : "current",
"description" :
"""A voice vlan Device entry containing the description and mac.""",
}, # table
"voicevlanDeviceEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.21.3.1.1",
"status" : "current",
"linkage" : [
"voicevlanDeviceIndexMac",
],
"description" :
"""A voice vlan Device entry containing the description and mac.""",
}, # row
"voicevlanDeviceIndexMac" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""An Mac Address is a 24-bit number that is purchased from the
IEEE Registration Authority. This identifier uniquely identifies
a vendor, manufacturer, or other organization. This object
indicates the voice traffic's Mac that voice device created.""",
}, # column
"voicevlanDevicePort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port is learning by voice device.""",
}, # column
"voicevlanDevicePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The priority value for voice device.""",
}, # column
"voicevlanDeviceTagType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"tag" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untag" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The tag type for voice device.""",
}, # column
"voicevlanDeviceStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.21.3.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"active" : {
"nodetype" : "namednumber",
"number" : "1"
},
"destroy" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
You can delete this object.""",
}, # column
"companyPoEGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22",
}, # node
"sysPoEPortSettingTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1",
"status" : "current",
"description" :
"""A table of objects that display and control the power
characteristics of power Ethernet ports on a Power Source
Entity (PSE) device.""",
}, # table
"sysPoEPortSettingEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1",
"status" : "current",
"linkage" : [
"poeportgroup",
"poeportid",
],
"description" :
"""A set of objects that display and control the power
characteristics of a power Ethernet PSE port.""",
}, # row
"poeportgroup" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This object is the PoE port group index.""",
}, # column
"poeportid" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This object is the PoE Port ID Index.""",
}, # column
"poePortSettingState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable PoE function on this port.""",
}, # column
"poePortTimeBaseSchduleID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "8"
},
],
"range" : {
"min" : "0",
"max" : "8"
},
},
},
"access" : "readwrite",
"description" :
"""Enable timebase schedule function and join with this schedule ID on this port.
Setting 0 means disable timebase schedule function on this port.""",
}, # column
"poePortSettingPriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "1"
},
"normal" : {
"nodetype" : "namednumber",
"number" : "2"
},
"high" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Configures PoE port priority.""",
}, # column
"poePortSettingPowerLimit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"class1" : {
"nodetype" : "namednumber",
"number" : "2"
},
"class2" : {
"nodetype" : "namednumber",
"number" : "3"
},
"class3" : {
"nodetype" : "namednumber",
"number" : "4"
},
"class4" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Configures PoE port power limit.""",
}, # column
"poePortSettingUserDefineState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable manual configuring max power on this port.""",
}, # column
"poePortSettingUserDefine" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object manually configures max power value(e.g., `1, 2.2, 21.8') on this port.
The per-port power limit must be a multiple of 0.2.
If the user define state is not enabled,
the value is the zero-length string.""",
}, # column
"poePortPower" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port power(W)(e.g., `0.0, 2.3, 21.8').
If the PoE port tatus is POWER OFF, the value is 0.0.""",
}, # column
"poePortVoltage" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port voltage(V)(e.g., `0.0, 2.3, 21.8').
If the PoE port tatus is POWER OFF, the value is 0.0.""",
}, # column
"poePortCurrent" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "5"
},
],
"range" : {
"min" : "1",
"max" : "5"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port current(mA)(e.g., `0.0, 22.3, 120.8').
If the PoE port tatus is POWER OFF, the value is 0.0.""",
}, # column
"poePortClassification" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.22.1.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port power classification(e.g., `NA, Class 2, 20.2(User Defined)').
If the PoE port tatus is POWER OFF, the value is NA.""",
}, # column
"poePortDelayPowerDetect" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable Delay Power Detect function on this port.""",
}, # column
"poePortStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.1.1.99",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port powering status(e.g., `POWER OFF, POWER ON').""",
}, # column
"poeSystemSettingPowerThreshold" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object configures available system power budget (e.g., `50.2').""",
}, # scalar
"poeSystemSettingDisconnectMethod" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"denyNextPort" : {
"nodetype" : "namednumber",
"number" : "1"
},
"denyLowPriorityPort" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object configures PoE power denied rule while system
entering in guard band mode.""",
}, # scalar
"pethPsePortPowerBudget" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE system power budget (e.g., `50.2').""",
}, # scalar
"pethPsePortPowerConsumption" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.22.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE total power consumption (e.g., `3.3, 15.4').""",
}, # scalar
"pethPsePortPowerRemainder" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.22.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE power remainder (e.g., `60.2').""",
}, # scalar
"pethPsePortPowerRatioOfSystemPower" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.22.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays power ratio of system power in unit of percentage(e.g., `4.2').""",
}, # scalar
"companyLLDPSetting" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24",
}, # node
"dlinklldpState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object is used for enabling or disabling LLDP in the system.""",
}, # scalar
"dlinklldpMsgHoldMultiplier" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "2",
"max" : "10"
},
],
"range" : {
"min" : "2",
"max" : "10"
},
},
},
"access" : "readwrite",
"description" :
"""The time-to-live value expressed as a multiple of the
lldpMessageTxInterval object.The actual time-to-live value
used in LLDP frames, transmitted on behalf of this LLDP agent,
can be expressed by the following formula: TTL = min(65535,
(lldpMessageTxInterval * lldpMessageTxHoldMultiplier))""",
}, # scalar
"dlinklldpMsgTxInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.24.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "5",
"max" : "32768"
},
],
"range" : {
"min" : "5",
"max" : "32768"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used for LLDP packet update frequency.
The timer in units of seconds.""",
}, # scalar
"dlinklldpReinitDelay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.24.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used for LLDP Reinitialization Delay.
The timer in units of seconds.""",
}, # scalar
"dlinklldpTxDelay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.24.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "8192"
},
],
"range" : {
"min" : "1",
"max" : "8192"
},
},
},
"access" : "readwrite",
"description" :
"""The lldpTxDelay indicates the delay (in units
of seconds) between successive LLDP frame transmissions
initiated by value/status changes in the LLDP local systems
MIB. The recommended value for the lldpTxDelay is set by the
following formula:
1 <= lldpTxDelay <= (0.25 * lldpMessageTxInterval).""",
}, # scalar
"dlinklldpConfigManAddrTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.7",
"status" : "current",
"description" :
"""The table that controls selection of LLDP management address
TLV instances to be transmitted on individual ports.""",
}, # table
"dlinklldpConfigManAddrEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.7.1",
"status" : "current",
"linkage" : [
"dlinklldpLocManAddrSubtype",
"dlinklldpLocManAddr",
],
"description" :
"""LLDP configuration information that specifies the set
of ports (represented as a PortList) on which the local
system management address instance will be transmitted.
This configuration object augments the lldpLocManAddrEntry,
therefore it is only present along with the management
address instance contained in the associated
lldpLocManAddrEntry entry.
Each active lldpConfigManAddrEntry must be restored from
non-volatile and re-created (along with the corresponding
lldpLocManAddrEntry) after a re-initialization of the
management system.""",
}, # row
"dlinklldpLocManAddrSubtype" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.7.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
},
"access" : "readonly",
"description" :
"""The type of management address identifier encoding used in
the associated 'lldpLocManagmentAddr' object.""",
"reference>" :
"""IEEE 802.1AB-2005 9.5.9.3""",
}, # column
"dlinklldpLocManAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.24.7.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "LldpManAddress"},
},
"access" : "readonly",
"description" :
"""The string value used to identify the management address
component associated with the local system. The purpose of
this address is to contact the management entity.""",
"reference>" :
"""IEEE 802.1AB-2005 9.5.9.4""",
}, # column
"dlinklldpConfigManAddrPortsTxEnable" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.24.7.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"default" : "",
"description" :
"""A set of ports that are identified by a PortList, in which
each port is represented as a bit. The corresponding local
system management address instance will be transmitted on the
member ports of the lldpManAddrPortsTxEnable.
The default value for lldpConfigManAddrPortsTxEnable object
is empty binary string, which means no ports are specified
for advertising indicated management address instance.""",
"reference>" :
"""IEEE 802.1AB-2005 10.2.1.1""",
}, # column
"dlinklldpAntiRoguePortControl" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""When LLDP anti-rogue port control is enabled , this identifies the
port control status of each port.
The default setting is disable.""",
}, # scalar
"dlinklldpRemOrgDefInfoTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.10",
"status" : "current",
"description" :
"""This table contains one or more rows per physical network
connection which advertises the organizationally defined
information.
Note that this table contains one or more rows of
organizationally defined information that is not recognized
by the local agent.
If the local system is capable of recognizing any
organizationally defined information, appropriate extension
MIBs from the organization should be used for information
retrieval.""",
}, # table
"dlinklldpRemOrgDefInfoEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.10.1",
"status" : "current",
"linkage" : [
"dlinklldpAntiRoguePortIndex",
],
"description" :
"""Information about the unrecognized organizationally
defined information advertised by the remote system.
The lldpAntiRoguePortIndex is index to this table.""",
}, # row
"dlinklldpAntiRoguePortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.10.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The Control Index of the LLDP Anti-Rogue port.""",
}, # column
"dlinklldpAntiRoguePortStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.10.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"authenticationDisabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"authenticationEnabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"authenticationSuccessful" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The value represents each port's authentication status.
0: Authentication disabled.
1: Authentication enabled but not passed.
2: Authentication successful.""",
}, # column
"dlinklldpRemOrgDefInfoOUI" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.10.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "3",
"max" : "3"
},
],
"range" : {
"min" : "3",
"max" : "3"
},
},
},
"access" : "readonly",
"description" :
"""The Organizationally Unique Identifier (OUI), as defined
in IEEE std 802-2001, is a 24 bit (three octets) globally
unique assigned number referenced by various standards,
of the information received from the remote system.""",
"reference>" :
"""IEEE 802.1AB-2005 9.5.1.3""",
}, # column
"dlinklldpAntiRoguePassword" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.24.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used for Anti-Rogue Password setting.
The default LLDP Anti-Rogue password is '<PASSWORD>'.""",
}, # scalar
"companySNMPV3" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25",
}, # node
"snmpGlobalState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling SNMP Community function.""",
}, # scalar
"snmpV3User" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.2",
}, # node
"snmpV3UserTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.2.1",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3UserEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3UserName",
"snmpV3UserVersion",
],
"description" :
"""""",
}, # row
"snmpV3UserName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""A human readable string representing the name of
the user.
This is the (User-based Security) Model dependent
security ID.""",
}, # column
"snmpV3UserVersion" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""A human readable string representing the name of
the user.
This is the (User-based Security) Model dependent
security ID.""",
}, # column
"snmpV3UserGroupName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the group to which this entry (e.g., the
combination of securityModel and securityName)
belongs.
This groupName is used as index into the
vacmAccessTable to select an access control policy.
However, a value in this table does not imply that an
instance with the value exists in table vacmAccesTable.""",
}, # column
"snmpV3UserAuthProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"md5" : {
"nodetype" : "namednumber",
"number" : "2"
},
"sha" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""An indication of whether messages sent on behalf of
this user to/from the SNMP engine identified by
usmUserEngineID, can be authenticated, and if so,
the type of authentication protocol which is used.
An instance of this object is created concurrently
with the creation of any other object instance for
the same user (i.e., as part of the processing of
the set operation which creates the first object
instance in the same conceptual row).
If an initial set operation (i.e. at row creation time)
tries to set a value for an unknown or unsupported
protocol, then a 'wrongValue' error must be returned.
The value will be overwritten/set when a set operation
is performed on the corresponding instance of
UserCloneFrom.
Once instantiated, the value of such an instance of
this object can only be changed via a set operation to
the value of the NoAuthProtocol.
If a set operation tries to change the value of an
existing instance of this object to any value other
than NoAuthProtocol, then an 'inconsistentValue'
error must be returned.
If a set operation tries to set the value to the
NoAuthProtocol while the UserPrivProtocol value
in the same row is not equal to NoPrivProtocol,
then an 'inconsistentValue' error must be returned.
That means that an SNMP command generator application
must first ensure that the UserPrivProtocol is set
to the NoPrivProtocol value before it can set
the UserAuthProtocol value to NoAuthProtocol.""",
}, # column
"snmpV3UserAuthProtocolPassword" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpV3UserPrivProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"des" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""An indication of whether messages sent on behalf of
this user to/from the SNMP engine identified by
usmUserEngineID, can be protected from disclosure,
and if so, the type of privacy protocol which is used.
An instance of this object is created concurrently
with the creation of any other object instance for
the same user (i.e., as part of the processing of
the set operation which creates the first object
instance in the same conceptual row).
If an initial set operation (i.e. at row creation time)
tries to set a value for an unknown or unsupported
protocol, then a 'wrongValue' error must be returned.
The value will be overwritten/set when a set operation
is performed on the corresponding instance of
usmUserCloneFrom.
Once instantiated, the value of such an instance of
this object can only be changed via a set operation to
the value of the NoPrivProtocol.
If a set operation tries to change the value of an
existing instance of this object to any value other
than NoPrivProtocol, then an 'inconsistentValue'
error must be returned.
Note that if any privacy protocol is used, then you
must also use an authentication protocol. In other
words, if usmUserPrivProtocol is set to anything else
than NoPrivProtocol, then the corresponding instance
of usmUserAuthProtocol cannot have a value of
usmNoAuthProtocol. If it does, then an
'inconsistentValue' error must be returned.""",
}, # column
"snmpV3UserPrivProtocolPassword" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpV3UserStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row.
Until instances of all corresponding columns are
appropriately configured, the value of the
corresponding instance of the usmUserStatus column
is 'notReady'.
In particular, a newly created row for a user who
employs authentication, cannot be made active until the
corresponding usmUserCloneFrom and usmUserAuthKeyChange
have been set.
Further, a newly created row for a user who also
employs privacy, cannot be made active until the
usmUserPrivKeyChange has been set.
The RowStatus TC [RFC2579] requires that this
DESCRIPTION clause states under which circumstances
other objects in this row can be modified:
The value of this object has no effect on whether
other objects in this conceptual row can be modified,
except for usmUserOwnAuthKeyChange and
usmUserOwnPrivKeyChange. For these 2 objects, the
value of usmUserStatus MUST be active.""",
}, # column
"snmpV3Group" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.3",
}, # node
"snmpV3GroupTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.3.1",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3GroupEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.3.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3GroupName",
"snmpV3GroupSecurityModel",
"snmpV3GroupSecurityLevel",
],
"description" :
"""""",
}, # row
"snmpV3GroupName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The name of the group to which this entry (e.g., the
combination of securityModel and securityName)
belongs.
This groupName is used as index into the
vacmAccessTable to select an access control policy.
However, a value in this table does not imply that an
instance with the value exists in table vacmAccesTable.""",
}, # column
"snmpV3GroupSecurityModel" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""In order to gain the access rights allowed by this
conceptual row, this securityModel must be in use.""",
}, # column
"snmpV3GroupSecurityLevel" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpSecurityLevel"},
},
"access" : "readonly",
"description" :
"""The minimum level of security required in order to
gain the access rights allowed by this conceptual
row. A securityLevel of noAuthNoPriv is less than
authNoPriv which in turn is less than authPriv.
If multiple entries are equally indexed except for
this vacmAccessSecurityLevel index, then the entry
which has the highest value for
vacmAccessSecurityLevel is selected.""",
}, # column
"snmpV3GroupReadViewName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The value of an instance of this object identifies
the MIB view of the SNMP context to which this
conceptual row authorizes read access.
The identified MIB view is that one for which the
vacmViewTreeFamilyViewName has the same value as the
instance of this object; if the value is the empty
string or if there is no active MIB view having this
value of vacmViewTreeFamilyViewName, then no access
is granted.""",
}, # column
"snmpV3GroupWriteViewName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.3.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The value of an instance of this object identifies
the MIB view of the SNMP context to which this
conceptual row authorizes write access.
The identified MIB view is that one for which the
vacmViewTreeFamilyViewName has the same value as the
instance of this object; if the value is the empty
string or if there is no active MIB view having this
value of vacmViewTreeFamilyViewName, then no access
is granted.""",
}, # column
"snmpV3GroupNotifyViewName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.3.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The value of an instance of this object identifies
the MIB view of the SNMP context to which this
conceptual row authorizes access for notifications.
The identified MIB view is that one for which the
vacmViewTreeFamilyViewName has the same value as the
instance of this object; if the value is the empty
string or if there is no active MIB view having this
value of vacmViewTreeFamilyViewName, then no access
is granted.""",
}, # column
"snmpV3GroupStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.3.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row.
The RowStatus TC [RFC2579] requires that this
DESCRIPTION clause states under which circumstances
other objects in this row can be modified:
The value of this object has no effect on whether
other objects in this conceptual row can be modified.""",
}, # column
"snmpV3ViewTree" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.4",
}, # node
"snmpV3ViewTreeTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.4.1",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3ViewTreeEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.4.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3viewTreeName",
"snmpV3viewTreeSubtree",
],
"description" :
"""""",
}, # row
"snmpV3viewTreeName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.4.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The human readable name for a family of view subtrees.""",
}, # column
"snmpV3viewTreeSubtree" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.4.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readonly",
"description" :
"""The MIB subtree which when combined with the
corresponding instance of vacmViewTreeFamilyMask
defines a family of view subtrees.""",
}, # column
"snmpV3viewTreeMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.4.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "16"
},
],
"range" : {
"min" : "0",
"max" : "16"
},
},
},
"access" : "readwrite",
"description" :
"""The bit mask which, in combination with the
corresponding instance of vacmViewTreeFamilySubtree,
defines a family of view subtrees.
Each bit of this bit mask corresponds to a
sub-identifier of vacmViewTreeFamilySubtree, with the
most significant bit of the i-th octet of this octet
string value (extended if necessary, see below)
corresponding to the (8*i - 7)-th sub-identifier, and
the least significant bit of the i-th octet of this
octet string corresponding to the (8*i)-th
sub-identifier, where i is in the range 1 through 16.
Each bit of this bit mask specifies whether or not
the corresponding sub-identifiers must match when
determining if an OBJECT IDENTIFIER is in this
family of view subtrees; a '1' indicates that an
exact match must occur; a '0' indicates 'wild card',
i.e., any sub-identifier value matches.
Thus, the OBJECT IDENTIFIER X of an object instance
is contained in a family of view subtrees if, for
each sub-identifier of the value of
vacmViewTreeFamilySubtree, either:
the i-th bit of vacmViewTreeFamilyMask is 0, or
the i-th sub-identifier of X is equal to the i-th
sub-identifier of the value of
vacmViewTreeFamilySubtree.
If the value of this bit mask is M bits long and
there are more than M sub-identifiers in the
corresponding instance of vacmViewTreeFamilySubtree,
then the bit mask is extended with 1's to be the
required length.
Note that when the value of this object is the
zero-length string, this extension rule results in
a mask of all-1's being used (i.e., no 'wild card'),
and the family of view subtrees is the one view
subtree uniquely identified by the corresponding
instance of vacmViewTreeFamilySubtree.
Note that masks of length greater than zero length
do not need to be supported. In this case this
object is made read-only.""",
}, # column
"snmpV3viewTreeType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.4.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"included" : {
"nodetype" : "namednumber",
"number" : "1"
},
"excluded" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates whether the corresponding instances of
vacmViewTreeFamilySubtree and vacmViewTreeFamilyMask
define a family of view subtrees which is included in
or excluded from the MIB view.""",
}, # column
"snmpV3viewTreeStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.4.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row.
The RowStatus TC [RFC2579] requires that this
DESCRIPTION clause states under which circumstances
other objects in this row can be modified:
The value of this object has no effect on whether
other objects in this conceptual row can be modified.""",
}, # column
"snmpV3Community" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.5",
}, # node
"snmpV3CommunityTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.5.1",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3CommunityEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.5.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3CommunityName",
],
"description" :
"""""",
}, # row
"snmpV3CommunityName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readonly",
"description" :
"""The unique index value of a row in this table.""",
}, # column
"snmpV3CommunityPolicy" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.5.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""A human readable string representing the corresponding
value of snmpCommunityName in a Security Model
independent format.""",
}, # column
"snmpV3CommunityStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.5.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row in the
snmpCommunityTable.
An entry in this table is not qualified for activation
until instances of all corresponding columns have been
initialized, either through default values, or through
Set operations. The snmpCommunityName and
snmpCommunitySecurityName objects must be explicitly set.
There is no restriction on setting columns in this table
when the value of snmpCommunityStatus is active(1).""",
}, # column
"snmpV3Host" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6",
}, # node
"ipv4snmpV3HostTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.1",
"status" : "obsolete",
"description" :
"""""",
}, # table
"ipv4snmpV3HostEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.1.1",
"create" : "true",
"status" : "obsolete",
"linkage" : [
"ipv4snmpV3HostAddress",
],
"description" :
"""""",
}, # row
"ipv4snmpV3HostAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.1.1.1",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""This object contains a transport address. The format of
this address depends on the value of the
snmpTargetAddrTDomain object. And this object is unique
identifier associated with this snmpNotifyEntry.""",
}, # column
"ipv4snmpV3HostCommunityName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.1.1.2",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The locally arbitrary.""",
}, # column
"ipv4snmpV3HostVersion" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.6.1.1.3",
"status" : "obsolete",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v3NoAuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "3"
},
"v3AuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "4"
},
"v3AuthPriv" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""The Level of Security to be used when generating
SNMP messages using this entry.""",
}, # column
"ipv4snmpV3HostStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.1.1.4",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpV3HostTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.2",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3HostEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3HostAddress",
"snmpV3IPType",
],
"description" :
"""""",
}, # row
"snmpV3HostAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""This object contains a transport address. The format of
this address depends on the value of the
snmpTargetAddrTDomain object. And this object is unique
identifier associated with this snmpNotifyEntry.""",
}, # column
"snmpV3IPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.6.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Type of IP interface.""",
}, # column
"snmpV3HostCommunityName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The locally arbitrary.""",
}, # column
"snmpV3HostVersion" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v3NoAuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "3"
},
"v3AuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "4"
},
"v3AuthPriv" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""The Level of Security to be used when generating
SNMP messages using this entry.""",
}, # column
"snmpV3HostInterfaceName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the syslogSrvIP is linklocal address.""",
}, # column
"snmpV3HostStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.6.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpV3EngineID" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpEngineID"},
},
"access" : "readwrite",
"description" :
"""An SNMP engine's administratively-unique identifier.
In a simple agent, this value is always that agent's
own snmpEngineID value.
The value can also take the value of the snmpEngineID
of a remote SNMP engine with which this user can
communicate.""",
}, # scalar
"snmpV3Trap" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.8",
}, # node
"snmpV3TrapSNMPAuthentication" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.25.8.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling SNMP login fail
event trap in the system.""",
}, # scalar
"snmpV3TrapBootup" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.8.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling devie Bootup event
trap in the system.""",
}, # scalar
"snmpV3TrapPortLinkUpDown" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.8.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling Port link up / link down
event trap in the system.""",
}, # scalar
"snmpV3TrapRSTPStateChange" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.8.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling RSTP topology change
event trap in the system.""",
}, # scalar
"snmpV3TrapFirmUpgrade" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.8.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling Firmware upgrade
suess or fail event trap in the system.""",
}, # scalar
"snmpV3TrapPoePowerOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.8.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling PoE power
on /off event in the system.""",
}, # scalar
"snmpV3TrapPoePowerError" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.8.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling PoE power
error event in the system.
There are four(short circuit, over load, power denied,
and thermal shutdown) error types in this event.""",
}, # scalar
"snmpV3TrapOverMaxPowerBudget" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.25.8.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling PoE over
max power budget event in the system.""",
}, # scalar
"companyAutoSurveillanceVlan" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26",
}, # node
"autoSurveillanceVlanSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.1",
}, # node
"autoSurveillanceVlanMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling Auto Surveillance Vlan function
in the system.
If the Vlan mode is in Asymmetric VLAN mode, Auto Surveillance VLAN can not
be enabled.""",
}, # scalar
"autoSurveillanceVlanId" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The ID of VLAN that you want the surveillance traffic to be in.
It must be a exist vlan id.""",
}, # scalar
"autoSurveillanceVlanPriority" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"highest" : {
"nodetype" : "namednumber",
"number" : "0"
},
"high" : {
"nodetype" : "namednumber",
"number" : "1"
},
"medium" : {
"nodetype" : "namednumber",
"number" : "2"
},
"low" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""The 802.1p priority levels of the traffic in the Auto Surveillance VLAN.""",
}, # scalar
"autoSurveillanceVlanTaggedUplinkDownlinkPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Auto Surveillance vlan uplink ports can't auto learning OUI.""",
}, # scalar
"autoSurveillanceVlanOUI" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.2",
}, # node
"autoSurveillanceVlanOUITable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.2.1",
"status" : "current",
"description" :
"""A Auto Surveillance vlan OUI entry containing the description and mac.""",
}, # table
"autoSurveillanceVlanOUIEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.2.1.1",
"status" : "current",
"linkage" : [
"autoSurveillanceVlanOUISurveillanceOUI",
],
"description" :
"""A Auto Surveillance vlan OUI entry containing the description and mac.""",
}, # row
"autoSurveillanceVlanOUISurveillanceOUI" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""An Organizationally Unique Identifier (OUI) is a 24-bit number
that is purchased from the IEEE Registration Authority. This identifier
uniquely identifies a vendor, manufacturer, or other organization.
This object indicates the surveillance traffic's OUI that user created.""",
}, # column
"autoSurveillanceVlanOUIDescription" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""The Description for the OUI.""",
}, # column
"autoSurveillanceVlanOUIMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""Auto Surveillance vlan OUI Mask.
The default OUI Mask is FF:FF:FF:F0:00:00. And default OUI Mask is read-only.
In user define OUI's Mask is FF:FF:FF:00:00:00, in user define MAC's Mask is FF:FF:FF:FF:FF:FF.""",
}, # column
"autoSurveillanceVlanOUIComponentType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.26.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"video_Management_Server" : {
"nodetype" : "namednumber",
"number" : "0"
},
"vMS_Client" : {
"nodetype" : "namednumber",
"number" : "1"
},
"video_Encoder" : {
"nodetype" : "namednumber",
"number" : "2"
},
"network_Storage" : {
"nodetype" : "namednumber",
"number" : "3"
},
"other_IP_Surveillance_Devices" : {
"nodetype" : "namednumber",
"number" : "4"
},
"d-Link_Surveillance_Device" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the Component Type of this entry.
To create a new entry, you must set the autoSurveillanceVlanOUIComponentType
to be CreateAndGo, then this entry will turn to be Active.""",
}, # column
"autoSurveillanceVlanOUIStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.26.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
To create a new entry, you must set the autoSurveillanceVlanOUIStatus
to be CreateAndGo, then this entry will turn to be Active.""",
}, # column
"companyTraps" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.27",
}, # node
"traps" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.27.0",
}, # node
"companyMulticastFilter" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.28",
}, # node
"mcastFilterPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.28.1",
"status" : "current",
"description" :
"""A table to control multicast filtering modes.""",
}, # table
"mcastFilterPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.28.1.1",
"status" : "current",
"linkage" : [
"mcastFilterPortIndex",
],
"description" :
"""An entry appears in this table for each interface in the mcastFiltertem.
Index to the table is the interface index of the port.""",
}, # row
"mcastFilterPortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.28.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Interface index of the port for which the configuration
in this entry applies.""",
}, # column
"mcastFilterPortType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.28.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"forward-unregistered-groups" : {
"nodetype" : "namednumber",
"number" : "1"
},
"filter-unregistered-groups" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Configures the multicast filtering modes as below :
forward - This will instruct the Switch to forward a multicast
packet whose destination is an unregistered multicast
group residing within the range of ports specified above.
filter - This will instruct the Switch to filter any multicast
packets whose destination is an unregistered multicast
group residing within the range of ports specified above.""",
}, # column
"companyGreenSetting" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.31",
}, # node
"dlinkGreenLEDShutoff" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.1",
}, # node
"dlinkGreenLEDShutoffPortList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Provides control to disable LED port.""",
}, # scalar
"dlinkGreenLEDShutoffState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.31.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Green disable LED function.
Default is disabled.""",
}, # scalar
"dlinkGreenLEDShutoffTimeProfile1" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenLEDShutoffTimeProfile2" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.31.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenPortShutoff" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.2",
}, # node
"dlinkGreenPortShutoffPortList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Provides control to disable LED port.""",
}, # scalar
"dlinkGreenPortShutoffState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Green disable LED function.
Default is disabled.""",
}, # scalar
"dlinkGreenPortShutoffTimeProfile1" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.31.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenPortShutoffTimeProfile2" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenSystemHibernation" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.4",
}, # node
"dlinkGreenSystemHibernationState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.4.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Green disable LED function.
Default is disabled.""",
}, # scalar
"dlinkGreenSystemHibernationTimeProfile1" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.4.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenSystemHibernationTimeProfile2" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.31.4.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"companyTimeRangeMgmt" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32",
}, # node
"swTimeRangeSettingTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1",
"status" : "current",
"description" :
"""A table to configure time Range in the system.""",
}, # table
"swTimeRangeSettingEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.32.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"swTimeRangeIndex",
],
"description" :
"""A schedule entry to configure time Range in the system.""",
}, # row
"swTimeRangeIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "52"
},
],
"range" : {
"min" : "1",
"max" : "52"
},
},
},
"access" : "readonly",
"description" :
"""The Time Range identifier. The maximum number of Schedule entry is
the number of ports supported PoE function.
The value must be between 1 and 52.""",
}, # column
"swTimeRangeName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.32.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The Schedule name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # column
"swTimeRangeDate" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.32.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable date range checking while executing time base PoE.""",
}, # column
"swTimeRangeStartYear" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.32.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"y2009" : {
"nodetype" : "namednumber",
"number" : "2009"
},
"y2010" : {
"nodetype" : "namednumber",
"number" : "2010"
},
"y2011" : {
"nodetype" : "namednumber",
"number" : "2011"
},
"y2012" : {
"nodetype" : "namednumber",
"number" : "2012"
},
"y2013" : {
"nodetype" : "namednumber",
"number" : "2013"
},
"y2014" : {
"nodetype" : "namednumber",
"number" : "2014"
},
"y2015" : {
"nodetype" : "namednumber",
"number" : "2015"
},
"y2016" : {
"nodetype" : "namednumber",
"number" : "2016"
},
"y2017" : {
"nodetype" : "namednumber",
"number" : "2017"
},
"y2018" : {
"nodetype" : "namednumber",
"number" : "2018"
},
"y2019" : {
"nodetype" : "namednumber",
"number" : "2019"
},
"y2020" : {
"nodetype" : "namednumber",
"number" : "2020"
},
"y2021" : {
"nodetype" : "namednumber",
"number" : "2021"
},
"y2022" : {
"nodetype" : "namednumber",
"number" : "2022"
},
"y2023" : {
"nodetype" : "namednumber",
"number" : "2023"
},
"y2024" : {
"nodetype" : "namednumber",
"number" : "2024"
},
"y2025" : {
"nodetype" : "namednumber",
"number" : "2025"
},
"y2026" : {
"nodetype" : "namednumber",
"number" : "2026"
},
"y2027" : {
"nodetype" : "namednumber",
"number" : "2027"
},
"y2028" : {
"nodetype" : "namednumber",
"number" : "2028"
},
"y2029" : {
"nodetype" : "namednumber",
"number" : "2029"
},
"y2030" : {
"nodetype" : "namednumber",
"number" : "2030"
},
"y2031" : {
"nodetype" : "namednumber",
"number" : "2031"
},
"y2032" : {
"nodetype" : "namednumber",
"number" : "2032"
},
"y2033" : {
"nodetype" : "namednumber",
"number" : "2033"
},
"y2034" : {
"nodetype" : "namednumber",
"number" : "2034"
},
"y2035" : {
"nodetype" : "namednumber",
"number" : "2035"
},
"y2036" : {
"nodetype" : "namednumber",
"number" : "2036"
},
"y2037" : {
"nodetype" : "namednumber",
"number" : "2037"
},
},
},
"access" : "readwrite",
"description" :
"""Start year of the Schedule entry.""",
}, # column
"swTimeRangeStartMonth" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.32.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Start month of the Schedule entry.""",
}, # column
"swTimeRangeStartDay" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
},
},
"access" : "readwrite",
"description" :
"""Start day of the Schedule entry.
The value must be from 1 to 31.""",
}, # column
"swTimeRangeStartHour" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "23"
},
],
"range" : {
"min" : "0",
"max" : "23"
},
},
},
"access" : "readwrite",
"description" :
"""Start hour of the Schedule entry.
The value must be from 0 to 23.""",
}, # column
"swTimeRangeStartMinute" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "59"
},
],
"range" : {
"min" : "0",
"max" : "59"
},
},
},
"access" : "readwrite",
"description" :
"""Start minute of the Schedule entry.
The value must be from 0 to 59.""",
}, # column
"swTimeRangeEndYear" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"y2009" : {
"nodetype" : "namednumber",
"number" : "2009"
},
"y2010" : {
"nodetype" : "namednumber",
"number" : "2010"
},
"y2011" : {
"nodetype" : "namednumber",
"number" : "2011"
},
"y2012" : {
"nodetype" : "namednumber",
"number" : "2012"
},
"y2013" : {
"nodetype" : "namednumber",
"number" : "2013"
},
"y2014" : {
"nodetype" : "namednumber",
"number" : "2014"
},
"y2015" : {
"nodetype" : "namednumber",
"number" : "2015"
},
"y2016" : {
"nodetype" : "namednumber",
"number" : "2016"
},
"y2017" : {
"nodetype" : "namednumber",
"number" : "2017"
},
"y2018" : {
"nodetype" : "namednumber",
"number" : "2018"
},
"y2019" : {
"nodetype" : "namednumber",
"number" : "2019"
},
"y2020" : {
"nodetype" : "namednumber",
"number" : "2020"
},
"y2021" : {
"nodetype" : "namednumber",
"number" : "2021"
},
"y2022" : {
"nodetype" : "namednumber",
"number" : "2022"
},
"y2023" : {
"nodetype" : "namednumber",
"number" : "2023"
},
"y2024" : {
"nodetype" : "namednumber",
"number" : "2024"
},
"y2025" : {
"nodetype" : "namednumber",
"number" : "2025"
},
"y2026" : {
"nodetype" : "namednumber",
"number" : "2026"
},
"y2027" : {
"nodetype" : "namednumber",
"number" : "2027"
},
"y2028" : {
"nodetype" : "namednumber",
"number" : "2028"
},
"y2029" : {
"nodetype" : "namednumber",
"number" : "2029"
},
"y2030" : {
"nodetype" : "namednumber",
"number" : "2030"
},
"y2031" : {
"nodetype" : "namednumber",
"number" : "2031"
},
"y2032" : {
"nodetype" : "namednumber",
"number" : "2032"
},
"y2033" : {
"nodetype" : "namednumber",
"number" : "2033"
},
"y2034" : {
"nodetype" : "namednumber",
"number" : "2034"
},
"y2035" : {
"nodetype" : "namednumber",
"number" : "2035"
},
"y2036" : {
"nodetype" : "namednumber",
"number" : "2036"
},
"y2037" : {
"nodetype" : "namednumber",
"number" : "2037"
},
},
},
"access" : "readwrite",
"description" :
"""End year of the Schedule entry.""",
}, # column
"swTimeRangeEndMonth" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""End month of the Schedule entry.""",
}, # column
"swTimeRangeEndDay" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
},
},
"access" : "readwrite",
"description" :
"""End day of the Schedule entry.
The value must be from 1 to 31.""",
}, # column
"swTimeRangeEndHour" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "23"
},
],
"range" : {
"min" : "0",
"max" : "23"
},
},
},
"access" : "readwrite",
"description" :
"""End hour of the Schedule entry.
The value must be from 0 to 23.""",
}, # column
"swTimeRangeEndMinute" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "59"
},
],
"range" : {
"min" : "0",
"max" : "59"
},
},
},
"access" : "readwrite",
"description" :
"""End minute of the Schedule entry.
The value must be from 0 to 59.""",
}, # column
"swTimeRangeMonday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Monday.""",
}, # column
"swTimeRangeTuesday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Tuesday.""",
}, # column
"swTimeRangeWednesday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Wednesday.""",
}, # column
"swTimeRangeThursday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Thursday.""",
}, # column
"swTimeRangeFriday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.18",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Friday.""",
}, # column
"swTimeRangeSaturday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.32.1.1.19",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Saturday.""",
}, # column
"swTimeRangeSunday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.32.1.1.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Sunday.""",
}, # column
"swTimeRangeRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.32.1.1.21",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Time Range Information Table. Only a subset
of the rowstatus variables (active, notinservice, createAndWait, destroy)
are available.""",
}, # column
"companyStaticMcast" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.35",
}, # node
"staticMcastTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.35.1",
"status" : "current",
"description" :
"""A list of the Static MACs""",
}, # table
"staticMcastEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.35.1.1",
"status" : "current",
"linkage" : [
"staticMcastVlanID",
"staticMcastMac",
"staticMcastEgressPorts",
],
"description" :
"""A Static MAC entry containing the mac and forwarding port.""",
}, # row
"staticMcastVlanID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.35.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The VLAN ID of the static MAC entry.""",
}, # column
"staticMcastMac" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.35.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the static MAC entry.""",
}, # column
"staticMcastEgressPorts" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.35.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""The set of ports to which frames received from a
specific port and destined for a specific Multicast or
Broadcast MAC address must be forwarded, regardless of
any dynamic information e.g. from GMRP. A port may not
be added in this set if it is already a member of the
set of ports in dot1qStaticMulticastForbiddenEgressPorts.
The default value of this object is a string of ones of
appropriate length.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 192.168.3.11, 172.16.31.10.3""",
}, # column
"staticMcastStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.35.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Static Mcast Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy)
are available.""",
}, # column
"companyCableDiagnostic" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37",
}, # node
"cableDiagTriggerIndex" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Trigger an interface index to do cable diagnostic.""",
}, # scalar
"cableDiagPair1TestResult" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"open" : {
"nodetype" : "namednumber",
"number" : "1"
},
"short" : {
"nodetype" : "namednumber",
"number" : "2"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 1 test result.""",
}, # scalar
"cableDiagPair1FaultDistance" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Cable Diagnostics pair 1 fault distance.""",
}, # scalar
"cableDiagPair2TestResult" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.37.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"open" : {
"nodetype" : "namednumber",
"number" : "1"
},
"short" : {
"nodetype" : "namednumber",
"number" : "2"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 2 test result.""",
}, # scalar
"cableDiagPair2FaultDistance" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 2 fault distance.""",
}, # scalar
"cableDiagPair3TestResult" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"open" : {
"nodetype" : "namednumber",
"number" : "1"
},
"short" : {
"nodetype" : "namednumber",
"number" : "2"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 3 test result.""",
}, # scalar
"cableDiagPair3FaultDistance" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 3 fault distance.""",
}, # scalar
"cableDiagPair4TestResult" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"open" : {
"nodetype" : "namednumber",
"number" : "1"
},
"short" : {
"nodetype" : "namednumber",
"number" : "2"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 4 test result.""",
}, # scalar
"cableDiagPair4FaultDistance" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 4 fault distance.""",
}, # scalar
"cableDiagLengthinRange" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.37.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"less50" : {
"nodetype" : "namednumber",
"number" : "1"
},
"from50to80" : {
"nodetype" : "namednumber",
"number" : "2"
},
"from80to100" : {
"nodetype" : "namednumber",
"number" : "3"
},
"from100to140" : {
"nodetype" : "namednumber",
"number" : "4"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics length when link up in speed 1G.
(Display in range)""",
}, # scalar
"companyRMON" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47",
}, # node
"rmonGlobalState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling RMON function.""",
}, # scalar
"rmonStatistics" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.2",
}, # node
"rmonStatsTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.2.1",
"status" : "current",
"description" :
"""A list of Ethernet statistics entries.""",
}, # table
"rmonStatsEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"rmonStatsIndex",
],
"description" :
"""A collection of statistics kept for a particular
Ethernet interface. As an example, an instance of the
etherStatsPkts object might be named etherStatsPkts.1""",
}, # row
"rmonStatsIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The value of this object uniquely identifies this
etherStats entry.""",
}, # column
"rmonStatsDataSource" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readwrite",
"description" :
"""This object identifies the source of the data that
this etherStats entry is configured to analyze. This
source can be any ethernet interface on this device.
In order to identify a particular interface, this object
shall identify the instance of the ifIndex object,
defined in RFC 2233 [17], for the desired interface.
For example, if an entry were to receive data from
interface #1, this object would be set to ifIndex.1.
The statistics in this group reflect all packets
on the local network segment attached to the identified
interface.
An agent may or may not be able to tell if fundamental
changes to the media of the interface have occurred and
necessitate an invalidation of this entry. For example, a
hot-pluggable ethernet card could be pulled out and replaced
by a token-ring card. In such a case, if the agent has such
knowledge of the change, it is recommended that it
invalidate this entry.
This object may not be modified if the associated
etherStatsStatus object is equal to valid(1).""",
}, # column
"rmonStatsOwner" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The entity that configured this entry and is therefore
using the resources assigned to it.""",
}, # column
"rmonStatsStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "RmonStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this etherStats entry.""",
}, # column
"rmonHistory" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.3",
}, # node
"rmonHistoryTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.3.1",
"status" : "current",
"description" :
"""A list of history control entries.""",
}, # table
"rmonHistoryEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.3.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"rmonHistoryIndex",
],
"description" :
"""A list of parameters that set up a periodic sampling of
statistics. As an example, an instance of the
historyControlInterval object might be named
historyControlInterval.2""",
}, # row
"rmonHistoryIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""An index that uniquely identifies an entry in the
historyControl table. Each such entry defines a
set of samples at a particular interval for an
interface on the device.""",
}, # column
"rmonHistoryDataSource" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readwrite",
"description" :
"""This object identifies the source of the data for
which historical data was collected and
placed in a media-specific table on behalf of this
historyControlEntry. This source can be any
interface on this device. In order to identify
a particular interface, this object shall identify
the instance of the ifIndex object, defined
in RFC 2233 [17], for the desired interface.
For example, if an entry were to receive data from
interface #1, this object would be set to ifIndex.1.
The statistics in this group reflect all packets
on the local network segment attached to the identified
interface.
An agent may or may not be able to tell if fundamental
changes to the media of the interface have occurred and
necessitate an invalidation of this entry. For example, a
hot-pluggable ethernet card could be pulled out and replaced
by a token-ring card. In such a case, if the agent has such
knowledge of the change, it is recommended that it
invalidate this entry.
This object may not be modified if the associated
historyControlStatus object is equal to valid(1).""",
}, # column
"rmonHistoryBucketsRequested" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "50",
"description" :
"""The requested number of discrete time intervals
over which data is to be saved in the part of the
media-specific table associated with this
historyControlEntry.
When this object is created or modified, the probe
should set historyControlBucketsGranted as closely to
this object as is possible for the particular probe
implementation and available resources.""",
}, # column
"rmonHistoryInterval" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "3600"
},
],
"range" : {
"min" : "1",
"max" : "3600"
},
},
},
"access" : "readwrite",
"default" : "1800",
"units" : "Seconds",
"description" :
"""The interval in seconds over which the data is
sampled for each bucket in the part of the
media-specific table associated with this
historyControlEntry. This interval can
be set to any number of seconds between 1 and
3600 (1 hour).
Because the counters in a bucket may overflow at their
maximum value with no indication, a prudent manager will
take into account the possibility of overflow in any of
the associated counters. It is important to consider the
minimum time in which any counter could overflow on a
particular media type and set the historyControlInterval
object to a value less than this interval. This is
typically most important for the 'octets' counter in any
media-specific table. For example, on an Ethernet
network, the etherHistoryOctets counter could overflow
in about one hour at the Ethernet's maximum
utilization.
This object may not be modified if the associated
historyControlStatus object is equal to valid(1).""",
}, # column
"rmonHistoryOwner" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.3.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The entity that configured this entry and is therefore
using the resources assigned to it.""",
}, # column
"rmonHistoryStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.3.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "RmonStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this historyControl entry.
Each instance of the media-specific table associated
with this historyControlEntry will be deleted by the agent
if this historyControlEntry is not equal to valid(1).""",
}, # column
"rmonAlarm" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4",
}, # node
"rmonAlarmTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1",
"status" : "current",
"description" :
"""A list of alarm entries.""",
}, # table
"rmonAlarmEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"rmonAlarmIndex",
],
"description" :
"""A list of parameters that set up a periodic checking
for alarm conditions. For example, an instance of the
alarmValue object might be named alarmValue.8""",
}, # row
"rmonAlarmIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""An index that uniquely identifies an entry in the
alarm table. Each such entry defines a
diagnostic sample at a particular interval
for an object on the device.""",
}, # column
"rmonAlarmInterval" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"units" : "Seconds",
"description" :
"""The interval in seconds over which the data is
sampled and compared with the rising and falling
thresholds. When setting this variable, care
should be taken in the case of deltaValue
sampling - the interval should be set short enough
that the sampled variable is very unlikely to
increase or decrease by more than 2^31 - 1 during
a single sampling interval.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmVariable" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readwrite",
"description" :
"""The object identifier of the particular variable to be
sampled. Only variables that resolve to an ASN.1 primitive
type of INTEGER (INTEGER, Integer32, Counter32, Counter64,
Gauge, or TimeTicks) may be sampled.
Because SNMP access control is articulated entirely
in terms of the contents of MIB views, no access
control mechanism exists that can restrict the value of
this object to identify only those objects that exist
in a particular MIB view. Because there is thus no
acceptable means of restricting the read access that
could be obtained through the alarm mechanism, the
probe must only grant write access to this object in
those views that have read access to all objects on
the probe.
During a set operation, if the supplied variable name is
not available in the selected MIB view, a badValue error
must be returned. If at any time the variable name of
an established alarmEntry is no longer available in the
selected MIB view, the probe must change the status of
this alarmEntry to invalid(4).
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmSampleType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"absoluteValue" : {
"nodetype" : "namednumber",
"number" : "1"
},
"deltaValue" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The method of sampling the selected variable and
calculating the value to be compared against the
thresholds. If the value of this object is
absoluteValue(1), the value of the selected variable
will be compared directly with the thresholds at the
end of the sampling interval. If the value of this
object is deltaValue(2), the value of the selected
variable at the last sample will be subtracted from
the current value, and the difference compared with
the thresholds.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmRisingThreshold" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.4.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""A threshold for the sampled statistic. When the current
sampled value is greater than or equal to this threshold,
and the value at the last sampling interval was less than
this threshold, a single event will be generated.
A single event will also be generated if the first
sample after this entry becomes valid is greater than or
equal to this threshold and the associated
alarmStartupAlarm is equal to risingAlarm(1) or
risingOrFallingAlarm(3).
After a rising event is generated, another such event
will not be generated until the sampled value
falls below this threshold and reaches the
alarmFallingThreshold.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmFallingThreshold" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.4.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""A threshold for the sampled statistic. When the current
sampled value is less than or equal to this threshold,
and the value at the last sampling interval was greater than
this threshold, a single event will be generated.
A single event will also be generated if the first
sample after this entry becomes valid is less than or
equal to this threshold and the associated
alarmStartupAlarm is equal to fallingAlarm(2) or
risingOrFallingAlarm(3).
After a falling event is generated, another such event
will not be generated until the sampled value
rises above this threshold and reaches the
alarmRisingThreshold.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmRisingEventIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The index of the eventEntry that is
used when a rising threshold is crossed. The
eventEntry identified by a particular value of
this index is the same as identified by the same value
of the eventIndex object. If there is no
corresponding entry in the eventTable, then
no association exists. In particular, if this value
is zero, no associated event will be generated, as
zero is not a valid event index.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmFallingEventIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The index of the eventEntry that is
used when a falling threshold is crossed. The
eventEntry identified by a particular value of
this index is the same as identified by the same value
of the eventIndex object. If there is no
corresponding entry in the eventTable, then
no association exists. In particular, if this value
is zero, no associated event will be generated, as
zero is not a valid event index.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmOwner" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.4.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The entity that configured this entry and is therefore
using the resources assigned to it.""",
}, # column
"rmonAlarmStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.4.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "RmonStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this alarm entry.""",
}, # column
"rmonEvent" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.5",
}, # node
"rmonEventTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.5.1",
"status" : "current",
"description" :
"""A list of events to be generated.""",
}, # table
"rmonEventEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.5.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"rmonEventIndex",
],
"description" :
"""A set of parameters that describe an event to be generated
when certain conditions are met. As an example, an instance
of the eventLastTimeSent object might be named
eventLastTimeSent.6""",
}, # row
"rmonEventIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""An index that uniquely identifies an entry in the
event table. Each such entry defines one event that
is to be generated when the appropriate conditions
occur.""",
}, # column
"rmonEventDescription" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.5.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "127"
},
],
"range" : {
"min" : "0",
"max" : "127"
},
},
},
"access" : "readwrite",
"description" :
"""A comment describing this event entry.""",
}, # column
"rmonEventType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.5.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"log" : {
"nodetype" : "namednumber",
"number" : "2"
},
"snmptrap" : {
"nodetype" : "namednumber",
"number" : "3"
},
"logandtrap" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""The type of notification that the probe will make
about this event. In the case of log, an entry is
made in the log table for each event. In the case of
snmp-trap, an SNMP trap is sent to one or more
management stations.""",
}, # column
"rmonEventCommunity" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.5.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""If an SNMP trap is to be sent, it will be sent to
the SNMP community specified by this octet string.""",
}, # column
"rmonEventOwner" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.47.5.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The entity that configured this entry and is therefore
using the resources assigned to it.
If this object contains a string starting with 'monitor'
and has associated entries in the log table, all connected
management stations should retrieve those log entries,
as they may have significance to all management stations
connected to this device""",
}, # column
"rmonEventStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.47.5.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "RmonStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this event entry.
If this object is not equal to valid(1), all associated
log entries shall be deleted by the agent.""",
}, # column
"companyNeighbor" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.50",
}, # node
"neighborTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.50.1",
"status" : "current",
"description" :
"""A list of the Neighbor Cache Table.""",
}, # table
"neighborEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.50.1.1",
"status" : "current",
"linkage" : [
"neighborIfindex",
"neighborIPv6Addr",
"neighborMACAddr",
],
"description" :
"""A Neighbor cache entry containing the ifindex and ipv6 addr.""",
}, # row
"neighborIfindex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.50.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index of the Neighbor entry.""",
}, # column
"neighborIPv6Addr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.50.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""Allows the entry of an IP address that will be a Neighbor entry into
the Neighbor Cache Table.""",
}, # column
"neighborMACAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.50.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the Neighbor entry.""",
}, # column
"neighborType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.50.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The type associated of the Neighbor entry.""",
}, # column
"neighborCacheState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.50.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"reachable" : {
"nodetype" : "namednumber",
"number" : "2"
},
"incomplete" : {
"nodetype" : "namednumber",
"number" : "3"
},
"stale" : {
"nodetype" : "namednumber",
"number" : "4"
},
"delay" : {
"nodetype" : "namednumber",
"number" : "5"
},
"probe" : {
"nodetype" : "namednumber",
"number" : "6"
},
"notinservice" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""The type associated of the Neighbor entry.""",
}, # column
"neighborRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.50.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Neighbor Cache Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy) are available.""",
}, # column
"companyDHCPRelay" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.61",
}, # node
"dhcpBOOTPRelayControl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.1",
}, # node
"dhcpBOOTPRelayState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.61.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP relay function is enabled or disabled.""",
}, # scalar
"dhcpBOOTPRelayHopCount" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "16"
},
],
"range" : {
"min" : "1",
"max" : "16"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the maximum number of router hops that the BOOTP packets can cross.""",
}, # scalar
"dhcpBOOTPRelayTimeThreshold" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the minimum time in seconds within which the switch must relay the DHCP request.
If this time is exceeded, the switch will drop the DHCP packet.""",
}, # scalar
"dhcpBOOTPRelayManagement" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.61.2",
}, # node
"dhcpBOOTPRelayInterfaceSettingsTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.2.1",
"status" : "current",
"description" :
"""This table indicates the IP address as a destination to forward (relay) DHCP packets to.""",
}, # table
"dhcpBOOTPRelayInterfaceSettingsEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpBOOTPRelayInterface",
"dhcpBOOTPRelayServerIP",
],
"description" :
"""A list of information indicates the IP address as a destination to forward (relay) DHCP packets to.""",
}, # row
"dhcpBOOTPRelayInterface" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "12"
},
],
"range" : {
"min" : "0",
"max" : "12"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the name of the IP interface.""",
}, # column
"dhcpBOOTPRelayServerIP" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.61.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""This object indicates the DHCP server IP address.""",
}, # column
"dhcpBOOTPRelayInterfaceSettingsRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.61.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
Only a subset of the rowstatus variables (active, createAndGo, destroy) are available.""",
}, # column
"dhcpBOOTPRelayManagementOption82" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.2.2",
}, # node
"dhcpBOOTPRelayOption82State" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.2.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates DHCP relay option 82 function always enabled.""",
}, # scalar
"dhcpBOOTPRelayOption82CheckState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.61.2.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP relay option 82 Check function is enabled or disabled.""",
}, # scalar
"dhcpBOOTPRelayOption82Policy" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.2.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"replace" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
"keep" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP relay option 82 policy.""",
}, # scalar
"dhcpBOOTPRelayOption82RemoteIDType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.2.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"default" : {
"nodetype" : "namednumber",
"number" : "1"
},
"userdefined" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the type of remote ID.
If the type is default, the remote ID will be the MAC address of the device, otherwise,
the remote ID can be defined by writing to the swDHCPRelayOption82RemoteID object.""",
}, # scalar
"dhcpBOOTPRelayOption82RemoteID" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.61.2.2.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object displays the current remote ID of the device.
If swDHCPRelayOption82RemoteIDType is set to default, the value will be the MAC address of the device,
and this object cannot be modified.
If swDHCPRelayOption82RemoteIDType is set to user-defined, a new value can be written to this object.""",
}, # scalar
"companyDHCPLocalRelay" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.62",
}, # node
"dhcpLocalRelayGlobalState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.62.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP local relay function of VLAN is enabled or disabled.""",
}, # scalar
"dhcpLocalRelayTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.62.2",
"status" : "current",
"description" :
"""This table indicates the IP address as a destination to forward (local relay) DHCP packets to.""",
}, # table
"dhcpLocalRelayEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.62.2.1",
"status" : "current",
"linkage" : [
"dhcpLocalRelaySettingsVLANID",
],
"description" :
"""A list of information indicates the IP address as a destination to forward (local relay) DHCP packets to.""",
}, # row
"dhcpLocalRelaySettingsVLANID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.62.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""This object displays the current VLAN ID of the device.""",
}, # column
"dhcpLocalRelaySettingsState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.62.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP local relay function of VLAN is enabled or disabled.""",
}, # column
"companyDHCPv6Relay" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63",
}, # node
"dhcpv6RelayControl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.1",
}, # node
"dhcpv6RelayState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCPv6 relay function is enabled or disabled.""",
}, # scalar
"dhcpv6RelayHopCount" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "16"
},
],
"range" : {
"min" : "1",
"max" : "16"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the maximum number of router hops that the DHCPv6 packets can cross.""",
}, # scalar
"dhcpv6RelayManagement" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.2",
}, # node
"dhcpv6RelayInterfaceSettingsTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.2.1",
"status" : "current",
"description" :
"""This table indicates the IP address as a destination to forward (relay) DHCP packets to.""",
}, # table
"dhcpv6RelayInterfaceSettingsEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpv6RelayInterface",
"dhcpv6RelayServerIP",
],
"description" :
"""A list of information indicates the IP address as a destination to forward (relay) DHCP packets to.""",
}, # row
"dhcpv6RelayInterface" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "12"
},
],
"range" : {
"min" : "0",
"max" : "12"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the maximum number of router hops that the DHCPv6 packets can cross.""",
}, # column
"dhcpv6RelayServerIP" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-08P_BX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""This object indicates the DHCP server IP address.""",
}, # column
"dhcpv6RelayInterfaceSettingsRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.2.1.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
Only a subset of the rowstatus variables (active, createAndGo, destroy) are available.""",
}, # column
"dhcpv6RelayOption37" : {
"nodetype" : "node",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.3",
}, # node
"dhcpv6RelayOption37State" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCPv6 relay option 37 function is enabled or disabled.""",
}, # scalar
"dhcpv6RelayOption37CheckState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.3.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCPv6 relay option 37 Check function is enabled or disabled.""",
}, # scalar
"dhcpv6RelayOption37RemoteIDType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.172.16.17.32",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"default" : {
"nodetype" : "namednumber",
"number" : "0"
},
"cid_with_user_define" : {
"nodetype" : "namednumber",
"number" : "1"
},
"user_define" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the type of remote ID.""",
}, # scalar
"dhcpv6RelayOption37RemoteID" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.63.3.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object displays the current remote ID of the device.
If RemoteIDType is set to default, the value will be the MAC address of the device,
and this object cannot be modified.
If RemoteIDType is set to user-defined, a new value can be written to this object.""",
}, # scalar
}, # nodes
"notifications" : {
"topologyChange" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.4",
"status" : "current",
"objects" : {
"ifIndex" : {
"nodetype" : "object",
"module" : "IF-MIB"
},
},
"description" :
"""AST_TOPOLOGY_CHG_TRAP_VAL.""",
}, # notification
"firmwareUpgradeSuccess" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.8",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_SUCC.""",
}, # notification
"firmwareUpgradeFailure" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.9",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_FAIL.""",
}, # notification
"firmwareIllegalFile" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.10",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_FAIL2.""",
}, # notification
"firmwareTransferError" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.11",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_FAIL1.""",
}, # notification
"firmwareChecksumError" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.27.0.12",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_FAIL3.""",
}, # notification
"poePowerOn" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.13",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power On.""",
}, # notification
"poePowerOff" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.14",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power Off.""",
}, # notification
"poeShortCircuit" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.15",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power Short Circuit.""",
}, # notification
"poeOverLoad" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.16",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power Over Load.""",
}, # notification
"poePowerDenied" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.17",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power Denied.""",
}, # notification
"poeThermalShutdown" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.1.171.10.75.13.27.0.18",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Thermal Shutdown.""",
}, # notification
"poeOverMaxPowerBudget" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-08P_BX",
"oid" : "1.3.6.1.4.192.168.127.12.13.27.0.19",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Over Max Power Budget.""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/TP_Link_tplink_powerOverEthernet_mib.py
|
<gh_stars>0
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python TPLINK-POWER-OVER-ETHERNET-MIB
FILENAME = "mibs/TP-Link/tplink-powerOverEthernet.mib"
MIB = {
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"TPLINK-POWER-OVER-ETHERNET-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""TP-LINK""",
"contact" :
""" www.tplink.com.cn""",
"description" :
"""Private MIB for PoE module.""",
"revisions" : (
{
"date" : "2013-07-03 00:00",
"description" :
"""Initial version of this MIB module.""",
},
),
"identity node" : "tplinkPowerOverEthernetMIB",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
{"module" : "TPLINK-MIB", "name" : "tplinkMgmt"},
),
"nodes" : {
"tplinkPowerOverEthernetMIB" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56",
"status" : "current",
}, # node
"tplinkPoeMIBObjects" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1",
}, # node
"tpPoeConfig" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1",
}, # node
"tpPoeGlobal" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.1",
}, # node
"tpSystemPowerLimit" : {
"nodetype" : "scalar",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "3200"
},
],
"range" : {
"min" : "1",
"max" : "3200"
},
},
},
"access" : "readwrite",
"description" :
"""Define max power the PoE switch supply. The unit is 0.1W.""",
}, # scalar
"tpPowerDisconnectMethod" : {
"nodetype" : "scalar",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"deny-lower-priority" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readonly",
"description" :
"""The PoE Switch use this method to offset the power
limit being exceeded and keep the switch system using
power at a usable level.""",
}, # scalar
"tpSystemPowerConsumption" : {
"nodetype" : "scalar",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "3200"
},
],
"range" : {
"min" : "1",
"max" : "3200"
},
},
},
"access" : "readonly",
"description" :
"""Display the PoE switch's real time system power consumption. The unit is 0.1W.""",
}, # scalar
"tpSystemPowerRemain" : {
"nodetype" : "scalar",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "3200"
},
],
"range" : {
"min" : "1",
"max" : "3200"
},
},
},
"access" : "readonly",
"description" :
"""Display the PoE switch's real time remaining system power. The unit is 0.1W.""",
}, # scalar
"tpPoePort" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2",
}, # node
"tpPoePortConfigTable" : {
"nodetype" : "table",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1",
"status" : "current",
"description" :
"""A list of PoE entries.
Here you can configure the PoE feature on each port.""",
}, # table
"tpPoePortConfigEntry" : {
"nodetype" : "row",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1",
"status" : "current",
"linkage" : [
"tpPoePortIndex",
],
"description" :
"""An entry contains of the configuration and information of poe port.""",
}, # row
"tpPoePortIndex" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the Switch.""",
}, # column
"tpPoePortStatus" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disable" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Select to disable/enable the PoE feature
for the corresponding port. If set enable,
the corresponding port can supply power to
the linked PD (Powered Device).""",
}, # column
"tpPoePriority" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"high" : {
"nodetype" : "namednumber",
"number" : "0"
},
"middle" : {
"nodetype" : "namednumber",
"number" : "1"
},
"low" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Cooperates with the Power Disconnected Method
to decide the way to supply power to the new
linked PD (Powered Device) when the surplus
power is inadequate.""",
}, # column
"tpPoePowerLimit" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "300"
},
],
"range" : {
"min" : "1",
"max" : "300"
},
},
},
"access" : "readwrite",
"description" :
"""Defines the max power the corresponding port can supply.The unit is 0.1W""",
}, # column
"tpPoePortTimeRangeName" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""Select time range by entering its name.""",
}, # column
"tpPoePortProfileName" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""Select profile by entering its name. """,
}, # column
"tpPoePower" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "300"
},
],
"range" : {
"min" : "1",
"max" : "300"
},
},
},
"access" : "readonly",
"description" :
""" Displays the port's real time power supply in 0.1W.""",
}, # column
"tpPoeCurrent" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "1000"
},
],
"range" : {
"min" : "1",
"max" : "1000"
},
},
},
"access" : "readonly",
"description" :
""" Displays the port's real time current in 1mA.""",
}, # column
"tpPoeVoltage" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "300"
},
],
"range" : {
"min" : "1",
"max" : "300"
},
},
},
"access" : "readonly",
"description" :
""" Displays the port's real time voltage in 0.1V.""",
}, # column
"tpPoeClass" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"class0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"class1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"class2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"class3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"class4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"class-not-defined" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
""" Displays the class the linked PD (Powered Device) belongs to.""",
}, # column
"tpPoePowerStatus" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"turning-on" : {
"nodetype" : "namednumber",
"number" : "1"
},
"on" : {
"nodetype" : "namednumber",
"number" : "2"
},
"overload" : {
"nodetype" : "namednumber",
"number" : "3"
},
"short" : {
"nodetype" : "namednumber",
"number" : "4"
},
"nonstandard-pd" : {
"nodetype" : "namednumber",
"number" : "5"
},
"voltage-high" : {
"nodetype" : "namednumber",
"number" : "6"
},
"voltage-low" : {
"nodetype" : "namednumber",
"number" : "7"
},
"hardware-fault" : {
"nodetype" : "namednumber",
"number" : "8"
},
"overtemperature" : {
"nodetype" : "namednumber",
"number" : "9"
},
},
},
"access" : "readonly",
"description" :
""" Displays the port's real time power status.""",
}, # column
"tpPoeProfile" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.2",
}, # node
"tpPoeProfileTable" : {
"nodetype" : "table",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.2.1",
"status" : "current",
"description" :
"""A list of PoE profile entries.
Here you can define the PoE profile.""",
}, # table
"tpPoeProfileEntry" : {
"nodetype" : "row",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.2.1.1",
"status" : "current",
"linkage" : [
"tpPoeProfileIndex",
],
"description" :
"""An entry contains of the information of PoE profile.""",
}, # row
"tpPoeProfileIndex" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The index number of the Switch.""",
}, # column
"tpPoeProfileName" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
""" the name of PoE profile.""",
}, # column
"tpPoeProfilePortStatus" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disable" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readonly",
"description" :
"""Select to disable/enable the PoE feature
for the corresponding profile. If set enable,
the port selected the profile can supply power to
the linked PD (Powered Device).""",
}, # column
"tpPoeProfilePriority" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"high" : {
"nodetype" : "namednumber",
"number" : "0"
},
"middle" : {
"nodetype" : "namednumber",
"number" : "1"
},
"low" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Cooperates with the Power Disconnected Method
to decide the way to supply power to the new
linked PD (Powered Device) when the surplus
power is inadequate.""",
}, # column
"tpPoeProfilePowerLimit" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "300"
},
],
"range" : {
"min" : "1",
"max" : "300"
},
},
},
"access" : "readonly",
"description" :
"""Defines the max power the corresponding port can supply.The unit is 0.1W.""",
}, # column
"tpPoeTimeRange" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.3",
}, # node
"tpHolidayConfig" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.3.2",
}, # node
"tpHolidayConfigTable" : {
"nodetype" : "table",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.3.2.1",
"status" : "current",
"description" :
"""A list of Holiday entries. Here you can configure the Holiday.""",
}, # table
"tpHolidayConfigEntry" : {
"nodetype" : "row",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.3.2.1.1",
"status" : "current",
"linkage" : [
"tpHolidayIndex",
],
"description" :
"""An entry s of the information of holiday.""",
}, # row
"tpHolidayIndex" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.3.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of holiday name.""",
}, # column
"tpHolidayName" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.3.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""The name of PoE holiday name.""",
}, # column
"tpHolidayStartDate" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.3.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""The start date in the format MM/DD.""",
}, # column
"tpHolidayEndDate" : {
"nodetype" : "column",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.1.3.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""The end date in the format MM/DD. """,
}, # column
"tplinkPoeNotifications" : {
"nodetype" : "node",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.2",
}, # node
}, # nodes
"notifications" : {
"tpPoePortPowerChange" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.2.1",
"status" : "current",
"objects" : {
"tpPoePortIndex" : {
"nodetype" : "object",
"module" : "TPLINK-POWER-OVER-ETHERNET-MIB"
},
"tpPoePortStatus" : {
"nodetype" : "object",
"module" : "TPLINK-POWER-OVER-ETHERNET-MIB"
},
},
"description" :
"""A poePortPowerChange notification is sent when the status of a port power changes.""",
}, # notification
"tpPoePortPowerOverLoading" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.2.2",
"status" : "current",
"objects" : {
"tpPoePortIndex" : {
"nodetype" : "object",
"module" : "TPLINK-POWER-OVER-ETHERNET-MIB"
},
},
"description" :
"""A poePortPowerOverLoading notification is sent when a port is over loading.""",
}, # notification
"tpPoePortShortCircuit" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.192.168.3.11",
"status" : "current",
"objects" : {
"tpPoePortIndex" : {
"nodetype" : "object",
"module" : "TPLINK-POWER-OVER-ETHERNET-MIB"
},
},
"description" :
"""A poePortShortCircuit notification is sent when short circuit occurs on a port.""",
}, # notification
"tpPoePortPowerOver30Watts" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.2.4",
"status" : "current",
"objects" : {
"tpPoePortIndex" : {
"nodetype" : "object",
"module" : "TPLINK-POWER-OVER-ETHERNET-MIB"
},
},
"description" :
"""A poePortPowerOver30Watts notification is sent when a port's consumption is over 30W.""",
}, # notification
"tpPoePortPowerDeny" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.192.168.127.12",
"status" : "current",
"objects" : {
"tpPoePortIndex" : {
"nodetype" : "object",
"module" : "TPLINK-POWER-OVER-ETHERNET-MIB"
},
},
"description" :
"""A poePowerDeny notification is sent when a port's power supply is denied.""",
}, # notification
"tpPoeThermalShutdown" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.2.6",
"status" : "current",
"objects" : {
"tpPoePortIndex" : {
"nodetype" : "object",
"module" : "TPLINK-POWER-OVER-ETHERNET-MIB"
},
},
"description" :
"""A poeThermalShutdown notification is sent when the power supply shutdown occurs because temperature is too high.""",
}, # notification
"tpPoeOverMaxPowerBudget" : {
"nodetype" : "notification",
"moduleName" : "TPLINK-POWER-OVER-ETHERNET-MIB",
"oid" : "1.3.6.1.4.1.11863.6.56.2.7",
"status" : "current",
"objects" : {
"tpSystemPowerLimit" : {
"nodetype" : "object",
"module" : "TPLINK-POWER-OVER-ETHERNET-MIB"
},
},
"description" :
"""A poeOverMaxPowerBudget notification is sent when the total power is over the budget.""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/dlink_dgs_1210_52_me_bx.py
|
from nav.mibs.dlink_dgs_1210_xx import DLink_DGS_1210_XX
from nav.mibs.mibretriever import MibRetriever
from nav.models.manage import Sensor
from nav.smidumps import get_mib
import inspect
class DLink_DGS_1210_52_ME_BX_Mib(MibRetriever, DLink_DGS_1210_XX):
mib = get_mib('D_Link_DGS_1210_52ME_BX_7_02_017_mib')
GET_DDM_SENSORS = 'get_ddm_sensors'
GET_FAN_SENSORS = '_get_fan_sensors'
GET_TEMPERATURE_SENSORS = '_get_temperature_sensors'
def _get_fan_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('sysSmartFanStatus', ''))
return result
def _get_temperature_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('sysTemperature', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
return result
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/MikroTik_mikrotik_mib.py
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python MIKROTIK-MIB
FILENAME = "mibs/MikroTik/mikrotik.mib"
MIB = {
"moduleName" : "MIKROTIK-MIB",
"MIKROTIK-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""MikroTik""",
"contact" :
"""<EMAIL>""",
"description" :
"""""",
"revisions" : (
{
"date" : "2020-10-08 00:00",
"description" :
"""""",
},
),
"identity node" : "mikrotikExperimentalModule",
},
"imports" : (
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "Integer32"},
{"module" : "SNMPv2-SMI", "name" : "Counter32"},
{"module" : "SNMPv2-SMI", "name" : "Gauge32"},
{"module" : "SNMPv2-SMI", "name" : "IpAddress"},
{"module" : "SNMPv2-SMI", "name" : "Counter64"},
{"module" : "SNMPv2-SMI", "name" : "enterprises"},
{"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
{"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
{"module" : "SNMPv2-TC", "name" : "DisplayString"},
{"module" : "SNMPv2-TC", "name" : "MacAddress"},
{"module" : "SNMPv2-TC", "name" : "DateAndTime"},
{"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
{"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
),
"typedefs" : {
"ObjectIndex" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "0",
"max" : "2147483647"
},
],
"range" : {
"min" : "0",
"max" : "2147483647"
},
"format" : "x",
"description" :
"""Internal """,
},
"HexInt" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "-2147483648",
"max" : "2147483647"
},
],
"range" : {
"min" : "-2147483648",
"max" : "2147483647"
},
"format" : "x",
"description" :
"""Hex""",
},
"Voltage" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "-2147483648",
"max" : "2147483647"
},
],
"range" : {
"min" : "-2147483648",
"max" : "2147483647"
},
"format" : "d-1",
"description" :
"""""",
},
"Temperature" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "-2147483648",
"max" : "2147483647"
},
],
"range" : {
"min" : "-2147483648",
"max" : "2147483647"
},
"format" : "d-1",
"description" :
"""""",
},
"Power" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "-2147483648",
"max" : "2147483647"
},
],
"range" : {
"min" : "-2147483648",
"max" : "2147483647"
},
"format" : "d-1",
"description" :
"""""",
},
"GDiv100" : {
"basetype" : "Unsigned32",
"status" : "current",
"parent module" : {
"name" : "SNMPv2-SMI",
"type" : "Gauge32",
},
"format" : "d-2",
"description" :
"""/100""",
},
"GDiv1000" : {
"basetype" : "Unsigned32",
"status" : "current",
"parent module" : {
"name" : "SNMPv2-SMI",
"type" : "Gauge32",
},
"format" : "d-3",
"description" :
"""/1000""",
},
"IDiv1000" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "-2147483648",
"max" : "2147483647"
},
],
"range" : {
"min" : "-2147483648",
"max" : "2147483647"
},
"format" : "d-3",
"description" :
"""/1000""",
},
"BoolValue" : {
"basetype" : "Enumeration",
"status" : "current",
"false" : {
"nodetype" : "namednumber",
"number" : "0"
},
"true" : {
"nodetype" : "namednumber",
"number" : "1"
},
"description" :
"""Boolean value.""",
},
"IsakmpCookie" : {
"basetype" : "OctetString",
"status" : "current",
"ranges" : [
{
"min" : "16",
"max" : "16"
},
],
"range" : {
"min" : "16",
"max" : "16"
},
"format" : "16a",
"description" :
"""ISAKMP cookie string""",
},
}, # typedefs
"nodes" : {
"mikrotik" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988",
}, # node
"mikrotikExperimentalModule" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1",
"status" : "current",
}, # node
"mtXRouterOs" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1",
}, # node
"mtxrWireless" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1",
}, # node
"mtxrWlStatTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrWlStatEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1",
"status" : "current",
"linkage" : [
"mtxrWlStatIndex",
],
"description" :
"""Wireless station mode interface""",
}, # row
"mtxrWlStatIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWlStatTxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrWlStatRxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrWlStatStrength" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""dBm""",
}, # column
"mtxrWlStatSsid" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlStatBssid" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlStatFreq" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""megahertz""",
}, # column
"mtxrWlStatBand" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlStatTxCCQ" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlStatRxCCQ" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrWlRtabEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1",
"status" : "current",
"linkage" : [
"mtxrWlRtabAddr",
"mtxrWlRtabIface",
],
"description" :
"""Wireless registration table. It is indexed by remote
mac-address and local interface index""",
}, # row
"mtxrWlRtabAddr" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWlRtabIface" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWlRtabStrength" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""dBm""",
}, # column
"mtxrWlRtabTxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabRxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabTxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabRxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabTxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrWlRtabRxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrWlRtabRouterOSVersion" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""RouterOS version""",
}, # column
"mtxrWlRtabUptime" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""uptime""",
}, # column
"mtxrWlRtabSignalToNoise" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Measured in dB, if value does not exist it is indicated with 0""",
}, # column
"mtxrWlRtabTxStrengthCh0" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabRxStrengthCh0" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabTxStrengthCh1" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabRxStrengthCh1" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabTxStrengthCh2" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabRxStrengthCh2" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabTxStrength" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.19",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabRadioName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.2.1.20",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlApTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrWlApEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1",
"status" : "current",
"linkage" : [
"mtxrWlApIndex",
],
"description" :
"""Wireless access point mode interface""",
}, # row
"mtxrWlApIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWlApTxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrWlApRxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrWlApSsid" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlApBssid" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlApClientCount" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlApFreq" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""megahertz""",
}, # column
"mtxrWlApBand" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlApNoiseFloor" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlApOverallTxCCQ" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlApAuthClientCount" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.3.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlRtabEntryCount" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""Wireless registration table entry count""",
}, # scalar
"mtxrWlCMRtabTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrWlCMRtabEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1",
"status" : "current",
"linkage" : [
"mtxrWlCMRtabAddr",
"mtxrWlCMRtabIface",
],
"description" :
"""Wireless CAPSMAN registration table. It is indexed by remote
mac-address and local interface index""",
}, # row
"mtxrWlCMRtabAddr" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabIface" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWlCMRtabUptime" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""uptime""",
}, # column
"mtxrWlCMRtabTxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabRxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabTxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabRxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabTxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrWlCMRtabRxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrWlCMRtabTxStrength" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabRxStrength" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabSsid" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabEapIdent" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.5.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRtabEntryCount" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""Wireless CAPSMAN registration table entry count""",
}, # scalar
"mtxrWlCMTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.7",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrWlCMEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.7.1",
"status" : "current",
"linkage" : [
"mtxrWlCMIndex",
],
"description" :
"""CAPS-MAN mode interface""",
}, # row
"mtxrWlCMIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.7.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWlCMRegClientCount" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.7.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMAuthClientCount" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.7.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMState" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.7.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMChannel" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.7.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""for master only""",
}, # column
"mtxrWl60GTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrWl60GEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1",
"status" : "current",
"linkage" : [
"mtxrWl60GIndex",
],
"description" :
"""W60G interface""",
}, # row
"mtxrWl60GIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWl60GMode" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"apBridge" : {
"nodetype" : "namednumber",
"number" : "0"
},
"stationBridge" : {
"nodetype" : "namednumber",
"number" : "1"
},
"sniff" : {
"nodetype" : "namednumber",
"number" : "2"
},
"bridge" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GSsid" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GConnected" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GRemote" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GFreq" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Mhz""",
}, # column
"mtxrWl60GMcs" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GSignal" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GTxSector" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GTxSectorInfo" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GRssi" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GPhyRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.8.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GStaTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrWl60GStaEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1",
"status" : "current",
"linkage" : [
"mtxrWl60GStaIndex",
],
"description" :
"""W60G stations""",
}, # row
"mtxrWl60GStaIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWl60GStaConnected" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GStaRemote" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GStaMcs" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GStaSignal" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GStaTxSector" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GStaPhyRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""Mbits per second""",
}, # column
"mtxrWl60GStaRssi" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWl60GStaDistance" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.9.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""meters""",
}, # column
"mtxrWlCMREntryCount" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""Wireless CAPSMAN remote-cap entry count""",
}, # scalar
"mtxrWlCMRemoteTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.11",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrWlCMRemoteEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.11.1",
"status" : "current",
"linkage" : [
"mtxrWlCMRemoteIndex",
],
"description" :
"""CAPSMAN remote-cap list""",
}, # row
"mtxrWlCMRemoteIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.11.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrWlCMRemoteName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.11.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRemoteState" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.11.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRemoteAddress" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.11.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrWlCMRemoteRadios" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.1.11.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueues" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2",
}, # node
"mtxrQueueSimpleTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrQueueSimpleEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1",
"status" : "current",
"linkage" : [
"mtxrQueueSimpleIndex",
],
"description" :
"""Simple queue""",
}, # row
"mtxrQueueSimpleIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrQueueSimpleName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimpleSrcAddr" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimpleSrcMask" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimpleDstAddr" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimpleDstMask" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimpleIface" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "readonly",
"description" :
"""interface index""",
}, # column
"mtxrQueueSimpleBytesIn" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimpleBytesOut" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimplePacketsIn" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimplePacketsOut" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimplePCQQueuesIn" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimplePCQQueuesOut" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimpleDroppedIn" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueSimpleDroppedOut" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.1.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueTreeTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrQueueTreeEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1",
"status" : "current",
"linkage" : [
"mtxrQueueTreeIndex",
],
"description" :
"""Tree queue""",
}, # row
"mtxrQueueTreeIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrQueueTreeName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueTreeFlow" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""flowmark""",
}, # column
"mtxrQueueTreeParentIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "readonly",
"description" :
"""index of parent tree queue or parent interface""",
}, # column
"mtxrQueueTreeBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueTreePackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueTreeHCBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueTreePCQQueues" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrQueueTreeDropped" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.2.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHealth" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3",
}, # node
"mtxrHlCoreVoltage" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Voltage"},
},
"access" : "readonly",
"description" :
"""core voltage""",
}, # scalar
"mtxrHlThreeDotThreeVoltage" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Voltage"},
},
"access" : "readonly",
"description" :
"""3.3V voltage""",
}, # scalar
"mtxrHlFiveVoltage" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Voltage"},
},
"access" : "readonly",
"description" :
"""5V voltage""",
}, # scalar
"mtxrHlTwelveVoltage" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Voltage"},
},
"access" : "readonly",
"description" :
"""12V voltage""",
}, # scalar
"mtxrHlSensorTemperature" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Temperature"},
},
"access" : "readonly",
"description" :
"""temperature at sensor chip""",
}, # scalar
"mtxrHlCpuTemperature" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Temperature"},
},
"access" : "readonly",
"description" :
"""temperature near cpu""",
}, # scalar
"mtxrHlBoardTemperature" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Temperature"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mtxrHlVoltage" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Voltage"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mtxrHlActiveFan" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mtxrHlTemperature" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Temperature"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mtxrHlProcessorTemperature" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Temperature"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mtxrHlPower" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Power"},
},
"access" : "readonly",
"description" :
"""Watts""",
}, # scalar
"mtxrHlCurrent" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""mA""",
}, # scalar
"mtxrHlProcessorFrequency" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Mhz""",
}, # scalar
"mtxrHlPowerSupplyState" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""PSU state ok""",
}, # scalar
"mtxrHlBackupPowerSupplyState" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""backup PSU state ok""",
}, # scalar
"mtxrHlFanSpeed1" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""rpm""",
}, # scalar
"mtxrHlFanSpeed2" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""rpm""",
}, # scalar
"mtxrGaugeTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.58.3",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrGaugeTableEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.100.1",
"status" : "current",
"linkage" : [
"mtxrGaugeIndex",
],
"description" :
"""""",
}, # row
"mtxrGaugeIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.100.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrGaugeName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.100.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrGaugeValue" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.100.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrGaugeUnit" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.3.100.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"celsius" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rpm" : {
"nodetype" : "namednumber",
"number" : "2"
},
"dV" : {
"nodetype" : "namednumber",
"number" : "3"
},
"dA" : {
"nodetype" : "namednumber",
"number" : "4"
},
"dW" : {
"nodetype" : "namednumber",
"number" : "5"
},
"status" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""units""",
}, # column
"mtxrLicense" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.4",
}, # node
"mtxrLicSoftwareId" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.4.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""software id""",
}, # scalar
"mtxrLicUpgrUntil" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.4.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
},
"access" : "readonly",
"description" :
"""current key allows upgrading until this date""",
}, # scalar
"mtxrLicLevel" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""current key level""",
}, # scalar
"mtxrLicVersion" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.4.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""software version""",
}, # scalar
"mtxrLicUpgradableTo" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.4.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""upgradable to""",
}, # scalar
"mtxrHotspot" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5",
}, # node
"mtxrHotspotActiveUsersTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrHotspotActiveUsersTableEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1",
"status" : "current",
"linkage" : [
"mtxrHotspotActiveUserIndex",
],
"description" :
"""""",
}, # row
"mtxrHotspotActiveUserIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserServerID" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserDomain" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserIP" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserMAC" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserConnectTime" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserValidTillTime" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserIdleStartTime" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserIdleTimeout" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserPingTimeout" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserBytesIn" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserBytesOut" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserPacketsIn" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserPacketsOut" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserLimitBytesIn" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserLimitBytesOut" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserAdvertStatus" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserRadius" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.19",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrHotspotActiveUserBlockedByAdvert" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.5.1.1.20",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrDHCP" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.6",
}, # node
"mtxrDHCPLeaseCount" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.6.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mtxrSystem" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7",
}, # node
"mtxrSystemReboot" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""set non zero to reboot""",
}, # scalar
"mtxrUSBPowerReset" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""switches off usb power for specified amout of seconds""",
}, # scalar
"mtxrSerialNumber" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""RouterBOARD serial number""",
}, # scalar
"mtxrFirmwareVersion" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Current firmware version""",
}, # scalar
"mtxrNote" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""note""",
}, # scalar
"mtxrBuildTime" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""build time""",
}, # scalar
"mtxrFirmwareUpgradeVersion" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Upgrade firmware version""",
}, # scalar
"mtxrBoardName" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.7.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""board name""",
}, # scalar
"mtxrScripts" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.8",
}, # node
"mtxrScriptTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.8.1",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrScriptTableEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.8.1.1",
"status" : "current",
"linkage" : [
"mtxrScriptIndex",
],
"description" :
"""""",
}, # row
"mtxrScriptIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.8.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrScriptName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.8.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrScriptRunCmd" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.8.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""set non zero to run""",
}, # column
"mtxrTraps" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.9",
}, # node
"mtxrNotifications" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.9.0",
}, # node
"mtxrNstremeDual" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.10",
}, # node
"mtxrDnStatTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrDnStatEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.10.1.1",
"status" : "current",
"linkage" : [
"mtxrDnStatIndex",
],
"description" :
"""Nstreme Dual interface""",
}, # row
"mtxrDnStatIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.10.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrDnStatTxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.10.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrDnStatRxRate" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""bits per second""",
}, # column
"mtxrDnStatTxStrength" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.10.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""dBm""",
}, # column
"mtxrDnStatRxStrength" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""dBm""",
}, # column
"mtxrDnConnected" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""0 - not connected, connected otherwise""",
}, # column
"mtxrNeighbor" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.11",
}, # node
"mtxrNeighborTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.11.1",
"status" : "current",
"description" :
"""""",
}, # table
"mtxrNeighborTableEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1",
"status" : "current",
"linkage" : [
"mtxrNeighborIndex",
],
"description" :
"""""",
}, # row
"mtxrNeighborIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.11.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrNeighborIpAddress" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrNeighborMacAddress" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrNeighborVersion" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrNeighborPlatform" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrNeighborIdentity" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.11.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrNeighborSoftwareID" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrNeighborInterfaceID" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.11.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrGps" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.12",
}, # node
"mtxrDate" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""UNIX time""",
}, # scalar
"mtxrLongtitude" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""longtitude""",
}, # scalar
"mtxrLatitude" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.127.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""latitude""",
}, # scalar
"mtxrAltitude" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.127.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""altitude""",
}, # scalar
"mtxrSpeed" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.127.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""speed""",
}, # scalar
"mtxrSattelites" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""visible sattelite count""",
}, # scalar
"mtxrValid" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.12.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""is the data valid""",
}, # scalar
"mtxrWirelessModem" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.13",
}, # node
"mtxrWirelessModemSignalStrength" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.13.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""signal strength in dBm (if first ppp-client modem supports)""",
}, # scalar
"mtxrWirelessModemSignalECIO" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.13.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""signal EC/IO in dB (if first ppp-client modem supports)""",
}, # scalar
"mtxrInterfaceStats" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14",
}, # node
"mtxrInterfaceStatsTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32",
"status" : "current",
"description" :
"""Extended interface statistics.
Some interfaces may have only parts of this table
with unavailable values set to zero.""",
}, # table
"mtxrInterfaceStatsEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1",
"status" : "current",
"linkage" : [
"mtxrInterfaceStatsIndex",
],
"description" :
"""""",
}, # row
"mtxrInterfaceStatsIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsDriverRxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsDriverRxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsDriverTxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsDriverTxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxRx64" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxRx65To127" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxRx128To255" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxRx256To511" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxRx512To1023" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.19",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxRx1024To1518" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.20",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxRx1519ToMax" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.21",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.31",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.32",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxTooShort" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.33",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRx64" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.34",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRx65To127" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.35",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRx128To255" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.36",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRx256To511" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.37",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRx512To1023" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.38",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRx1024To1518" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.39",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRx1519ToMax" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.40",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxTooLong" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.41",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxBroadcast" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.42",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxPause" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.43",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxMulticast" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.44",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxFCSError" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.45",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxAlignError" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.46",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxFragment" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.47",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxOverflow" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.48",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxControl" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.49",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxUnknownOp" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.50",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxLengthError" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.51",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxCodeError" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.52",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxCarrierError" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.53",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxJabber" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.54",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsRxDrop" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.55",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.61",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.62",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxTooShort" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.63",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTx64" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.64",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTx65To127" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.65",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTx128To255" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.66",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTx256To511" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.67",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTx512To1023" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.68",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTx1024To1518" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.69",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTx1519ToMax" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.70",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxTooLong" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.71",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxBroadcast" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.72",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxPause" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.73",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxMulticast" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.74",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxUnderrun" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.75",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxCollision" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.76",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxExcessiveCollision" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.77",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxMultipleCollision" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.78",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxSingleCollision" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.79",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxExcessiveDeferred" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.80",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxDeferred" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.81",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxLateCollision" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.82",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxTotalCollision" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.83",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxPauseHonored" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.84",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxDrop" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.85",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxJabber" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.86",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxFCSError" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.87",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxControl" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.88",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsTxFragment" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.89",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrInterfaceStatsLinkDowns" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.14.1.1.90",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrPOE" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.15",
}, # node
"mtxrPOETable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.15.1",
"status" : "current",
"description" :
"""Power Over Ethernet""",
}, # table
"mtxrPOEEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10.1",
"status" : "current",
"linkage" : [
"mtxrPOEInterfaceIndex",
],
"description" :
"""""",
}, # row
"mtxrPOEInterfaceIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrPOEName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.15.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrPOEStatus" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"waitingForLoad" : {
"nodetype" : "namednumber",
"number" : "2"
},
"poweredOn" : {
"nodetype" : "namednumber",
"number" : "3"
},
"overload" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrPOEVoltage" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.15.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Voltage"},
},
"access" : "readonly",
"description" :
"""V""",
}, # column
"mtxrPOECurrent" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.15.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""mA""",
}, # column
"mtxrPOEPower" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.15.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "Power"},
},
"access" : "readonly",
"description" :
"""W""",
}, # column
"mtxrLTEModem" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16",
}, # node
"mtxrLTEModemTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1",
"status" : "current",
"description" :
"""LTE Modems""",
}, # table
"mtxrLTEModemEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1",
"status" : "current",
"linkage" : [
"mtxrLTEModemInterfaceIndex",
],
"description" :
"""""",
}, # row
"mtxrLTEModemInterfaceIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrLTEModemSignalRSSI" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""dBm""",
}, # column
"mtxrLTEModemSignalRSRQ" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""dB""",
}, # column
"mtxrLTEModemSignalRSRP" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""dBm""",
}, # column
"mtxrLTEModemCellId" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "HexInt"},
},
"access" : "readonly",
"description" :
"""current cell ID""",
}, # column
"mtxrLTEModemAccessTechnology" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "-1"
},
"gsmcompact" : {
"nodetype" : "namednumber",
"number" : "0"
},
"gsm" : {
"nodetype" : "namednumber",
"number" : "1"
},
"utran" : {
"nodetype" : "namednumber",
"number" : "2"
},
"egprs" : {
"nodetype" : "namednumber",
"number" : "3"
},
"hsdpa" : {
"nodetype" : "namednumber",
"number" : "4"
},
"hsupa" : {
"nodetype" : "namednumber",
"number" : "5"
},
"hsdpahsupa" : {
"nodetype" : "namednumber",
"number" : "6"
},
"eutran" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""as reported by +CREG""",
}, # column
"mtxrLTEModemSignalSINR" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""dB""",
}, # column
"mtxrLTEModemEnbId" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrLTEModemSectorId" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrLTEModemLac" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrLTEModemIMEI" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrLTEModemIMSI" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrLTEModemUICC" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrLTEModemRAT" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.16.1.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrPartition" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17",
}, # node
"mtxrPartitionTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17.1",
"status" : "current",
"description" :
"""system partitions""",
}, # table
"mtxrPartitionEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17.1.1",
"status" : "current",
"linkage" : [
"mtxrPartitionIndex",
],
"description" :
"""""",
}, # row
"mtxrPartitionIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrPartitionName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrPartitionSize" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""MB""",
}, # column
"mtxrPartitionVersion" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrPartitionActive" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrPartitionRunning" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.17.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrScriptRun" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.18",
}, # node
"mtxrScriptRunTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.3.11",
"status" : "current",
"description" :
"""invisible to getnext, accesible only with get request and write premission""",
}, # table
"mtxrScriptRunTableEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.18.1.1",
"status" : "current",
"linkage" : [
"mtxrScriptRunIndex",
],
"description" :
"""""",
}, # row
"mtxrScriptRunIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.18.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrScriptRunOutput" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.18.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""this oid on get request will run script and return it's output""",
}, # column
"mtxrOptical" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19",
}, # node
"mtxrOpticalTable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1",
"status" : "current",
"description" :
"""SFP and GPON information""",
}, # table
"mtxrOpticalTableEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1",
"status" : "current",
"linkage" : [
"mtxrOpticalIndex",
],
"description" :
"""""",
}, # row
"mtxrOpticalIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrOpticalName" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrOpticalRxLoss" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrOpticalTxFault" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrOpticalWavelength" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "GDiv100"},
},
"access" : "readonly",
"units" : "nm",
"description" :
"""""",
}, # column
"mtxrOpticalTemperature" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"units" : "C",
"description" :
"""""",
}, # column
"mtxrOpticalSupplyVoltage" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "GDiv1000"},
},
"access" : "readonly",
"units" : "V",
"description" :
"""""",
}, # column
"mtxrOpticalTxBiasCurrent" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"units" : "mA",
"description" :
"""""",
}, # column
"mtxrOpticalTxPower" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "IDiv1000"},
},
"access" : "readonly",
"units" : "dBm",
"description" :
"""""",
}, # column
"mtxrOpticalRxPower" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.19.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "IDiv1000"},
},
"access" : "readonly",
"units" : "dBm",
"description" :
"""""",
}, # column
"mtxrIPSec" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20",
}, # node
"mtxrIkeSACount" : {
"nodetype" : "scalar",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.58.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""IKE SA count""",
}, # scalar
"mtxrIkeSATable" : {
"nodetype" : "table",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32",
"status" : "current",
"description" :
"""IKE SA table""",
}, # table
"mtxrIkeSATableEntry" : {
"nodetype" : "row",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1",
"status" : "current",
"linkage" : [
"mtxrIkeSAIndex",
],
"description" :
"""""",
}, # row
"mtxrIkeSAIndex" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "ObjectIndex"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"mtxrIkeSAInitiatorCookie" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "IsakmpCookie"},
},
"access" : "readonly",
"description" :
"""initiator SPI""",
}, # column
"mtxrIkeSAResponderCookie" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "IsakmpCookie"},
},
"access" : "readonly",
"description" :
"""responder SPI""",
}, # column
"mtxrIkeSAResponder" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""IKE side""",
}, # column
"mtxrIkeSANatt" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"MIKROTIK-MIB", "name" : "BoolValue"},
},
"access" : "readonly",
"description" :
"""NAT is detected""",
}, # column
"mtxrIkeSAVersion" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""protocol version""",
}, # column
"mtxrIkeSAState" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"exchange" : {
"nodetype" : "namednumber",
"number" : "1"
},
"established" : {
"nodetype" : "namednumber",
"number" : "2"
},
"expired" : {
"nodetype" : "namednumber",
"number" : "3"
},
"eap" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSAUptime" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSASeen" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""time elapsed since last valid IKE packet""",
}, # column
"mtxrIkeSAIdentity" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""peer identity""",
}, # column
"mtxrIkeSAPh2Count" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
},
"access" : "readonly",
"description" :
"""total ph2 SA pairs""",
}, # column
"mtxrIkeSALocalAddressType" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSALocalAddress" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSALocalPort" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSAPeerAddressType" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSAPeerAddress" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSAPeerPort" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSADynamicAddressType" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mtxrIkeSADynamicAddress" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.19",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "readonly",
"description" :
"""dynamic address allocated by mode config""",
}, # column
"mtxrIkeSATxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.20",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""ph2 SA tx bytes""",
}, # column
"mtxrIkeSARxBytes" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.21",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""ph2 SA rx bytes""",
}, # column
"mtxrIkeSATxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.22",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""ph2 SA tx packets""",
}, # column
"mtxrIkeSARxPackets" : {
"nodetype" : "column",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.20.2.1.23",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
},
"access" : "readonly",
"description" :
"""ph2 SA rx packets""",
}, # column
"mtXMetaInfo" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2",
}, # node
"mtXRouterOsGroups" : {
"nodetype" : "node",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1",
}, # node
}, # nodes
"notifications" : {
"mtxrTrap" : {
"nodetype" : "notification",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.9.0.1",
"status" : "current",
"objects" : {
},
"description" :
"""Mikrotik trap OID""",
}, # notification
"mtxrTemperatureException" : {
"nodetype" : "notification",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.1.9.0.2",
"status" : "current",
"objects" : {
},
"description" :
"""Mikrotik CPU temperature exception trap""",
}, # notification
}, # notifications
"groups" : {
"mtxrWirelessGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.1",
"status" : "current",
"members" : {
"mtxrWlStatTxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlStatRxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlStatStrength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlStatSsid" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlStatBssid" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlStatFreq" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlStatBand" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlStatTxCCQ" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlStatRxCCQ" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabStrength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabTxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabRxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabTxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabRxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabTxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabRxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabEntryCount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabRouterOSVersion" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabUptime" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabSignalToNoise" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabTxStrengthCh0" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabRxStrengthCh0" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabTxStrengthCh1" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabRxStrengthCh1" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabTxStrengthCh2" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabRxStrengthCh2" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabTxStrength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlRtabRadioName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApTxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApRxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApSsid" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApBssid" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApClientCount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApBand" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApFreq" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApNoiseFloor" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApOverallTxCCQ" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlApAuthClientCount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabAddr" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabTxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabRxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabTxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabRxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabTxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabRxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabUptime" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabTxStrength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabRxStrength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabSsid" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRtabEntryCount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMREntryCount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMRegClientCount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWlCMAuthClientCount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GMode" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GSsid" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GConnected" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GRemote" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GFreq" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GMcs" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GSignal" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GTxSector" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GTxSectorInfo" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GRssi" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GPhyRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GStaConnected" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GStaRemote" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GStaMcs" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GStaSignal" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWl60GStaTxSector" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrQueueGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.2",
"status" : "current",
"members" : {
"mtxrQueueSimpleName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleSrcAddr" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleSrcMask" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleDstAddr" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleDstMask" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleIface" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleBytesIn" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleBytesOut" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimplePacketsIn" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimplePacketsOut" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueTreeName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimplePCQQueuesIn" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimplePCQQueuesOut" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleDroppedIn" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueSimpleDroppedOut" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueTreeFlow" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueTreeParentIndex" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueTreeBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueTreePackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueTreeHCBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueTreePCQQueues" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrQueueTreeDropped" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrHealthGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.3",
"status" : "current",
"members" : {
"mtxrHlCoreVoltage" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlThreeDotThreeVoltage" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlFiveVoltage" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlTwelveVoltage" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlSensorTemperature" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlCpuTemperature" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlBoardTemperature" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlVoltage" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlActiveFan" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlTemperature" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlProcessorTemperature" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlCurrent" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlPower" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlProcessorFrequency" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlPowerSupplyState" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlBackupPowerSupplyState" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlFanSpeed1" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHlFanSpeed2" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrGaugeName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrGaugeValue" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrGaugeUnit" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrLincenseGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.4",
"status" : "current",
"members" : {
"mtxrLicSoftwareId" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLicUpgrUntil" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLicLevel" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLicVersion" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLicUpgradableTo" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrHotspotActiveUserGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.5",
"status" : "current",
"members" : {
"mtxrHotspotActiveUserServerID" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserDomain" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserIP" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserMAC" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserConnectTime" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserValidTillTime" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserIdleStartTime" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserIdleTimeout" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserPingTimeout" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserBytesIn" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserBytesOut" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserPacketsIn" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserPacketsOut" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserLimitBytesIn" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserLimitBytesOut" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserAdvertStatus" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserRadius" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrHotspotActiveUserBlockedByAdvert" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrOpticalGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.6",
"status" : "current",
"members" : {
"mtxrOpticalName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrOpticalRxLoss" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrOpticalTxFault" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrOpticalWavelength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrOpticalTemperature" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrOpticalSupplyVoltage" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrOpticalTxBiasCurrent" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrOpticalTxPower" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrOpticalRxPower" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrIkeSAGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.7",
"status" : "current",
"members" : {
"mtxrIkeSACount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAInitiatorCookie" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAResponderCookie" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAResponder" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSANatt" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAVersion" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAState" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAUptime" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSASeen" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAIdentity" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAPh2Count" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSALocalAddressType" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSALocalAddress" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSALocalPort" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAPeerAddressType" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAPeerAddress" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSAPeerPort" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSADynamicAddressType" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSADynamicAddress" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSATxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSARxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSATxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrIkeSARxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrScriptGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.8",
"status" : "current",
"members" : {
"mtxrScriptName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrScriptRunCmd" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrNstremeDualGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.10",
"status" : "current",
"members" : {
"mtxrDnStatTxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrDnStatRxRate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrDnStatTxStrength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrDnStatRxStrength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrDnConnected" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrNeighborGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.192.168.127.12",
"status" : "current",
"members" : {
"mtxrNeighborIpAddress" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrNeighborMacAddress" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrNeighborVersion" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrNeighborPlatform" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrNeighborIdentity" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrNeighborSoftwareID" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrNeighborInterfaceID" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrDHCPGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.17.32",
"status" : "current",
"members" : {
"mtxrDHCPLeaseCount" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrSystemGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.13",
"status" : "current",
"members" : {
"mtxrSystemReboot" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrUSBPowerReset" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrSerialNumber" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrFirmwareVersion" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrNote" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrBuildTime" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrFirmwareUpgradeVersion" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrBoardName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrTrapGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.14",
"status" : "current",
"members" : {
"mtxrTrap" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrTemperatureException" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrGPSGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.15",
"status" : "current",
"members" : {
"mtxrDate" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLongtitude" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLatitude" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrAltitude" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrSpeed" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrSattelites" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrValid" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrWirelessModemGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.16",
"status" : "current",
"members" : {
"mtxrWirelessModemSignalStrength" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrWirelessModemSignalECIO" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrInterfaceStatsGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.58.3",
"status" : "current",
"members" : {
"mtxrInterfaceStatsName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsDriverRxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsDriverRxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsDriverTxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsDriverTxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxRx64" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxRx65To127" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxRx128To255" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxRx256To511" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxRx512To1023" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxRx1024To1518" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxRx1519ToMax" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxTooShort" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRx64" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRx65To127" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRx128To255" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRx256To511" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRx512To1023" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRx1024To1518" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRx1519ToMax" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxTooLong" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxBroadcast" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxPause" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxMulticast" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxFCSError" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxAlignError" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxFragment" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxOverflow" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxControl" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxUnknownOp" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxLengthError" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxCodeError" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxCarrierError" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxJabber" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsRxDrop" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxBytes" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxPackets" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxTooShort" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTx64" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTx65To127" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTx128To255" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTx256To511" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTx512To1023" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTx1024To1518" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTx1519ToMax" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxTooLong" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxBroadcast" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxPause" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxMulticast" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxUnderrun" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxCollision" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxExcessiveCollision" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxMultipleCollision" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxSingleCollision" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxExcessiveDeferred" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxDeferred" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxLateCollision" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxTotalCollision" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxPauseHonored" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxDrop" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxJabber" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxFCSError" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxControl" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsTxFragment" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrInterfaceStatsLinkDowns" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrPOEGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.18",
"status" : "current",
"members" : {
"mtxrPOEName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrPOEStatus" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrPOEVoltage" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrPOECurrent" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrPOEPower" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrLTEModemGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.19",
"status" : "current",
"members" : {
"mtxrLTEModemSignalRSSI" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemSignalRSRQ" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemSignalRSRP" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemCellId" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemAccessTechnology" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemSignalSINR" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemEnbId" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemSectorId" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemLac" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemIMEI" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemIMSI" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemUICC" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrLTEModemRAT" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrPartitionGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.172.16.31.10",
"status" : "current",
"members" : {
"mtxrPartitionName" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrPartitionSize" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrPartitionVersion" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrPartitionActive" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
"mtxrPartitionRunning" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
"mtxrScriptRunGroup" : {
"nodetype" : "group",
"moduleName" : "MIKROTIK-MIB",
"oid" : "1.3.6.1.4.1.14988.1.2.1.21",
"status" : "current",
"members" : {
"mtxrScriptRunOutput" : {
"nodetype" : "member",
"module" : "MIKROTIK-MIB"
},
}, # members
"description" :
"""""",
}, # group
}, # groups
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/extreme_networks_system.py
|
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.models.manage import Sensor
from nav.smidumps import get_mib
from twisted.internet import defer
import inspect
class Extreme_Networks_System_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('Extreme_Networks_EXTREME_SYSTEM_MIB_mib')
GUARD_OID = 'extremeSystem'
@defer.inlineCallbacks
def get_all_sensors(self):
self._logger.debug(here(self))
result = []
fan_sensors = yield self._get_fan_sensors()
result.extend(fan_sensors)
power_sensors = yield self._get_power_sensors()
result.extend(power_sensors)
temperature_sensors = yield self._get_temperature_sensors()
result.extend(temperature_sensors)
self._logger.info('%d sensor(s) detected', len(result))
defer.returnValue(result)
@defer.inlineCallbacks
def _get_fan_sensors(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'extremeFanNumber',
'extremeFanOperational',
'extremeFanSpeed'
])
if columns:
for _, item in columns.items():
index = item.get('extremeFanNumber')
result.append(self.get_indexed_system_sensor(index, 'extremeFanOperational', ''))
result.append(self.get_indexed_system_sensor(index, 'extremeFanSpeed', Sensor.UNIT_RPM))
defer.returnValue(result)
@defer.inlineCallbacks
def _get_power_sensors(self):
self._logger.debug(here(self))
result = []
columns = yield self.retrieve_columns([
'extremePowerSupplyNumber',
'extremePowerSupplyInputVoltage',
'extremePowerSupplyFan1Speed',
'extremePowerSupplyFan2Speed',
'extremePowerSupplyInputPowerUsage'
])
if columns:
for _, item in columns.items():
index = item.get('extremePowerSupplyNumber')
result.append(self.get_indexed_system_sensor(index, 'extremePowerSupplyInputVoltage', ''))
result.append(self.get_indexed_system_sensor(index, 'extremePowerSupplyFan1Speed', Sensor.UNIT_RPM))
result.append(self.get_indexed_system_sensor(index, 'extremePowerSupplyFan2Speed', Sensor.UNIT_RPM))
result.append(self.get_indexed_system_sensor(index, 'extremePowerSupplyInputPowerUsage', Sensor.UNIT_WATTS)) # FIXME precision?
defer.returnValue(result)
def _get_temperature_sensors(self):
self._logger.debug(here(self))
result = []
result.append(self.get_system_sensor('extremeCurrentTemperature', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
return result
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/netping_dksf_60.py
|
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.models.manage import Sensor
from nav.smidumps import get_mib
from twisted.internet import defer
import inspect
class NetPing_DKSF_60_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('NetPing_DKSF_60_5_2_MB_mib')
GUARD_OID = 'lightcom'
@defer.inlineCallbacks
def get_all_sensors(self):
self._logger.debug(here(self))
result = []
temperature_sensors = yield self._get_temperature_sensors()
result.extend(temperature_sensors)
self._logger.info('%d sensor(s) detected', len(result))
defer.returnValue(result)
def _get_temperature_sensors(self):
self._logger.debug(here(self))
result = []
for index in range(1, 9):
result.append(self.get_indexed_system_sensor(index, 'npThermoStatus', ''))
result.append(self.get_indexed_system_sensor(index, 'npThermoValue', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
result.append(self.get_indexed_system_sensor(index, 'npThermoLow', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
result.append(self.get_indexed_system_sensor(index, 'npThermoHigh', Sensor.UNIT_CELSIUS, minimum=-20, maximum=120))
return result
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
alexanderfefelov/nav-add-ons
|
snmp/nav/smidumps/D_Link_DES_1210_28P_CX_4_12_004_mib.py
|
<reponame>alexanderfefelov/nav-add-ons
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python DES-1210-28P_CX
FILENAME = "mibs/D-Link/DES-1210-28P-CX-4-12-004.mib"
MIB = {
"moduleName" : "DES-1210-28P_CX",
"DES-1210-28P_CX" : {
"nodetype" : "module",
"language" : "SMIv2",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "enterprises"},
{"module" : "SNMPv2-SMI", "name" : "IpAddress"},
{"module" : "SNMPv2-SMI", "name" : "Integer32"},
{"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
{"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
{"module" : "SNMPv2-SMI", "name" : "Counter32"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
{"module" : "IF-MIB", "name" : "InterfaceIndex"},
{"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
{"module" : "IF-MIB", "name" : "ifIndex"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpEngineID"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpSecurityLevel"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBridge"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBasePortEntry"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBasePort"},
{"module" : "SNMPv2-TC", "name" : "RowStatus"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "DisplayString"},
{"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
{"module" : "SNMPv2-TC", "name" : "MacAddress"},
{"module" : "IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
),
"typedefs" : {
"VlanIndex" : {
"basetype" : "Unsigned32",
"status" : "current",
"description" :
"""A value used to index per-VLAN tables: values of 0 and
4095 are not permitted; if the value is between 1 and
4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with
global scope within a given bridged domain (see VlanId
textual convention). If the value is greater than 4095
then it represents a VLAN with scope local to the
particular agent, i.e. one without a global VLAN-ID
assigned to it. Such VLANs are outside the scope of
IEEE 802.1Q but it is convenient to be able to manage them
in the same way using this MIB.""",
},
"PortList" : {
"basetype" : "OctetString",
"status" : "current",
"description" :
"""Each octet within this value specifies a set of eight
ports, with the first octet specifying ports 1 through
8, the second octet specifying ports 9 through 16, etc.
Within each octet, the most significant bit represents
the lowest numbered port, and the least significant bit
represents the highest numbered port. Thus, each port
of the bridge is represented by a single bit within the
value of this object. If that bit has a value of '1'
then that port is included in the set of ports; the port
is not included if its bit has a value of '0'.""",
},
"BridgeId" : {
"basetype" : "OctetString",
"status" : "current",
"ranges" : [
{
"min" : "8",
"max" : "8"
},
],
"range" : {
"min" : "8",
"max" : "8"
},
"description" :
"""The Bridge-Identifier as used in the
Spanning Tree
Protocol to uniquely identify a bridge. Its first two
octets (in network byte order) contain a priority
value and its last 6 octets contain the MAC address
used to refer to a bridge in a unique fashion
(typically, the numerically smallest MAC address
of all ports on the bridge).
Several objects in this MIB module represent values of
timers used by the Spanning Tree Protocol. In this
MIB, these timers have values in units of hundreths of
a second (i.e. 1/100 secs).
These timers, when stored in a Spanning Tree Protocol's
BPDU, are in units of 1/256 seconds. Note, however,
that 802.1D-1990 specifies a settable granularity of
no more than 1 second for these timers. To avoid
ambiguity, a data type is defined here as a textual
convention and all representation of these timers
in this MIB module are defined using this data type. An
algorithm is also defined for converting between the
different units, to ensure a timer's value is not distorted by multiple conversions.""",
},
"Timeout" : {
"basetype" : "Integer32",
"status" : "current",
"format" : "d4",
"description" :
"""A STP timer in units of 1/100 seconds
To convert a Timeout value into a value in units of
1/256 seconds, the following algorithm should be used:
b = floor( (n * 256) / 100)
where:
floor = quotient [ignore remainder]
n is the value in 1/100 second units
b is the value in 1/256 second units
To convert the value from 1/256 second units back to
1/100 seconds, the following algorithm should be used:
n = ceiling( (b * 100) / 256)
where:
ceiling = quotient [if remainder is 0], or
quotient + 1 [if remainder is non-zero]
n is the value in 1/100 second units
b is the value in 1/256 second units
Note: it is important that the arithmetic operations are
done in the order specified (i.e., multiply first, divide
second).""",
},
"RmonStatus" : {
"basetype" : "Enumeration",
"status" : "current",
"valid" : {
"nodetype" : "namednumber",
"number" : "1"
},
"createRequest" : {
"nodetype" : "namednumber",
"number" : "2"
},
"underCreation" : {
"nodetype" : "namednumber",
"number" : "3"
},
"invalid" : {
"nodetype" : "namednumber",
"number" : "4"
},
"description" :
"""The status of a table entry.
Setting this object to the value invalid(4) has the
effect of invalidating the corresponding entry.
That is, it effectively disassociates the mapping
identified with said entry.
It is an implementation-specific matter as to whether
the agent removes an invalidated entry from the table.
Accordingly, management stations must be prepared to
receive tabular information from agents that corresponds
to entries currently not in use. Proper
interpretation of such entries requires examination
of the relevant RmonStatus object.
An existing instance of this object cannot be set to
createRequest(2). This object may only be set to
createRequest(2) when this instance is created. When
this object is created, the agent may wish to create
supplemental object instances with default values
to complete a conceptual row in this table. Because the
creation of these default objects is entirely at the option
of the agent, the manager must not assume that any will be
created, but may make use of any that are created.
Immediately after completing the create operation, the agent
must set this object to underCreation(3).
When in the underCreation(3) state, an entry is allowed to
exist in a possibly incomplete, possibly inconsistent state,
usually to allow it to be modified in multiple PDUs. When in
this state, an entry is not fully active.
Entries shall exist in the underCreation(3) state until
the management station is finished configuring the entry
and sets this object to valid(1) or aborts, setting this
object to invalid(4). If the agent determines that an
entry has been in the underCreation(3) state for an
abnormally long time, it may decide that the management
station has crashed. If the agent makes this decision,
it may set this object to invalid(4) to reclaim the
entry. A prudent agent will understand that the
management station may need to wait for human input
and will allow for that possibility in its
determination of this abnormally long period.
An entry in the valid(1) state is fully configured and
consistent and fully represents the configuration or
operation such a row is intended to represent. For
example, it could be a statistical function that is
configured and active, or a filter that is available
in the list of filters processed by the packet capture
process.
A manager is restricted to changing the state of an entry in
the following ways:
To: valid createRequest underCreation invalid
From:
valid OK NO OK OK
createRequest N/A N/A N/A N/A
underCreation OK NO OK OK
invalid NO NO NO OK
nonExistent NO OK NO OK
In the table above, it is not applicable to move the state
from the createRequest state to any other state because the
manager will never find the variable in that state. The
nonExistent state is not a value of the enumeration, rather
it means that the entryStatus variable does not exist at all.
An agent may allow an entryStatus variable to change state in
additional ways, so long as the semantics of the states are
followed. This allowance is made to ease the implementation of
the agent and is made despite the fact that managers should
never exercise these additional state transitions.""",
},
"LldpManAddress" : {
"basetype" : "OctetString",
"status" : "current",
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
"description" :
"""The value of a management address associated with the LLDP
agent that may be used to reach higher layer entities to
assist discovery by network management.
It should be noted that appropriate security credentials,
such as SNMP engineId, may be required to access the LLDP
agent using a management address. These necessary credentials
should be known by the network management and the objects
associated with the credentials are not included in the
LLDP agent.""",
},
"Ipv6Address" : {
"basetype" : "OctetString",
"status" : "current",
"ranges" : [
{
"min" : "16",
"max" : "16"
},
],
"range" : {
"min" : "16",
"max" : "16"
},
"format" : "2x:",
"description" :
"""This data type is used to model IPv6 addresses.
This is a binary string of 16 octets in network
byte-order.""",
},
"PortLaMode" : {
"basetype" : "Enumeration",
"status" : "current",
"lacp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"static" : {
"nodetype" : "namednumber",
"number" : "2"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "3"
},
"description" :
"""Defines how a Port Channel does channeling.
lacp(1) - place the port into passive
negotiation state, in which the
port waits for its peer to
initiate negotiation.
static(2) - force the port to enable
channeling.
disable(3) - channeling is disabled.""",
},
"LacpKey" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
"description" :
"""The Actor or Partner Key value (0..65535).""",
},
}, # typedefs
"nodes" : {
"d-link" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171",
}, # node
"dlink-products" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10",
}, # node
"dlink-DES1210SeriesProd" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3",
}, # node
"des-1210-28p" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.192.168.3.115.19",
}, # node
"des-1210-28p-cx" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1",
}, # node
"companySystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1",
}, # node
"sysSwitchName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""System name used for identification of the device.
The following characters are allowed to input.
0 ~ 9 / a ~ z / A ~ Z
Special character: ( ) ?? + _ = .""",
}, # scalar
"sysHardwareVersion" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readonly",
"default" : "",
"description" :
"""Version number of the Hardware.""",
}, # scalar
"sysFirmwareVersion" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readonly",
"default" : "",
"description" :
"""Version number of the Firmware.""",
}, # scalar
"sysLoginTimeoutInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "3",
"max" : "30"
},
],
"range" : {
"min" : "3",
"max" : "30"
},
},
},
"access" : "readwrite",
"default" : "5",
"description" :
"""This time interval is used to count the time and
logout web interface automatically.""",
}, # scalar
"sysLocationName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The location name of this node (e.g., `telephone closet,
3rd floor'). If the location is unknown, the value is
the zero-length string.""",
}, # scalar
"sysSystemPassword" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used to set System Password,
The following characters are allowed to input:
semicolon, question mark, space, and double quotation mark.""",
}, # scalar
"sysSafeGuardEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enable",
"description" :
"""This object is used to set Safeguard Enable\Disable.""",
}, # scalar
"sysRestart" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"default" : "false",
"description" :
"""This object allows the user to restart the Switch
(i.e)the entire switch will operationally go down and
start again. Setting a value of 'true' causes the switch
to be restarted.
When the switch operationally goes down, configuration
save operation is initiated based on the configuration save
option chosen.
When the switch operationally come up, the saved configurations
are restored based on the restore option chosen.
Once the switch is restarted, the value of this object reverts
to 'false'.""",
}, # scalar
"sysSave" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"default" : "false",
"description" :
"""This object is used to save Configuration.""",
}, # scalar
"sysJumboFrameEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Gigabit Web Smart Switches support jumbo frames (frames larger than
the Ethernet frame size of 1522 bytes) of up to 9K bytes (tagged).
Default jumbo frame is disabled.""",
}, # scalar
"sysPortCtrlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.13",
"status" : "current",
"description" :
"""A table to control the port specific parameters of the device like speed,
duplex mode, etc.""",
}, # table
"sysPortCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.13.1",
"status" : "current",
"linkage" : [
"sysPortCtrlIndex",
],
"description" :
"""An entry appears in this table for each interface in the system.
Index to the table is the interface index of the port.""",
}, # row
"sysPortCtrlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.13.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Interface index of the port for the configuration
in this entry applies.""",
}, # column
"sysPortCtrlSpeed" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.13.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rate1000MFull" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rate100MFull" : {
"nodetype" : "namednumber",
"number" : "2"
},
"rate100MHalf" : {
"nodetype" : "namednumber",
"number" : "3"
},
"rate10MFull" : {
"nodetype" : "namednumber",
"number" : "4"
},
"rate10MHalf" : {
"nodetype" : "namednumber",
"number" : "5"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "6"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""Configures interface speed.""",
}, # column
"sysPortCtrlOperStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.13.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"down" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rate1000MFull" : {
"nodetype" : "namednumber",
"number" : "2"
},
"rate100MFull" : {
"nodetype" : "namednumber",
"number" : "3"
},
"rate100MHalf" : {
"nodetype" : "namednumber",
"number" : "4"
},
"rate10MFull" : {
"nodetype" : "namednumber",
"number" : "5"
},
"rate10MHalf" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""The port's operating speed state.""",
}, # column
"sysPortCtrlMDI" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.13.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"mdi" : {
"nodetype" : "namednumber",
"number" : "2"
},
"mdix" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Configures interface auto/mdi/mdix mode.
The default setting is Auto.""",
}, # column
"sysPortCtrlFlowControl" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.13.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enables / disables flow control for the interface.""",
}, # column
"sysPortCtrlFlowControlOper" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.13.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The link parner negotiate port's operating flow control state.""",
}, # column
"sysPortCtrlType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.13.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"fastethernet" : {
"nodetype" : "namednumber",
"number" : "1"
},
"gigabitethernet" : {
"nodetype" : "namednumber",
"number" : "2"
},
"fiberwith100BaseSFPModule" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fiberwith1000BaseSFPModule" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The port's media type.""",
}, # column
"sysDhcpAutoConfiguration" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object indicates auto config is enabled or disabled.""",
}, # scalar
"sysPortDescriptionTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.16",
"status" : "current",
"description" :
"""The port description table.""",
}, # table
"sysPortDescriptionEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.16.1",
"status" : "current",
"linkage" : [
"sysPortDescIndex",
],
"description" :
"""The port description entry.""",
}, # row
"sysPortDescIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.16.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "255"
},
],
"range" : {
"min" : "1",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the port index.""",
}, # column
"sysPortDescString" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.16.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the port description.""",
}, # column
"sysDdp" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.30",
}, # node
"sysDdpGlobalOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.30.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates D-Link discover protocol is enabled or disabled.""",
}, # scalar
"sysDdpGeneralReportOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.30.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates D-Link discover protocol report is enabled or disabled.
This object only can be modified when D-Link discover protocol state is enabled.""",
}, # scalar
"sysDdpGeneralReportTimer" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.30.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"time30seconds" : {
"nodetype" : "namednumber",
"number" : "30"
},
"time60seconds" : {
"nodetype" : "namednumber",
"number" : "60"
},
"time90seconds" : {
"nodetype" : "namednumber",
"number" : "90"
},
"time120seconds" : {
"nodetype" : "namednumber",
"number" : "120"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates D-Link discover protocol report time period.
This object only can be modified when both D-Link discover protocol state and
D-Link discover protocol report state are enabled.""",
}, # scalar
"sysDdpProtStatusTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1.30.4",
"status" : "current",
"description" :
"""A table to control the port status of D-Link discover protocol.""",
}, # table
"sysDdpProtStatusEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.30.4.1",
"status" : "current",
"linkage" : [
"sysDdpProtStatusIndex",
],
"description" :
"""An entry appears in this table for each port D-Link discover protocol status.""",
}, # row
"sysDdpProtStatusIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.30.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Interface index of the port for the configuration
in this entry applies.""",
}, # column
"sysDdpProtStatusControl" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.30.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Configures the port status of D-Link discover protocol.""",
}, # column
"sysDhcpRetryTimes" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.1.31",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "5",
"max" : "120"
},
],
"range" : {
"min" : "5",
"max" : "120"
},
},
},
"access" : "readwrite",
"default" : "7",
"description" :
"""This time for DHCP retried times.""",
}, # scalar
"companyIpifGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2",
}, # node
"ipifSupportV4V6Info" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.5",
}, # node
"sysIpAddrCfgMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"manual" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dhcp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"bootp" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"default" : "manual",
"description" :
"""Specifies the means by which the default interface in the device
gets the IP address.
If 'manual' mode is selected, the default interface takes the
'sysDefaultIpAddr' configured in the system.
If 'dynamic' mode is selected, the default interface gets the IP address
through dynamic IP address configuration protocols such as RARP client,
BootP client, DHCP Client, etc.
If the system fails to get the IP address dynamically through all the
above protocols, the default interface uses the 'sysDefaultIpAddr'
configured in the system.""",
}, # scalar
"sysIpAddr" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.5.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Default IP Address of the system.
This IP address, if modified, will take effect only when the
configuration is stored & restored.""",
}, # scalar
"sysIpSubnetMask" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.5.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""IP subnet mask for the default IP address.
This subnet mask, if modified, will take effect only when the
configuration is stored & restored.""",
}, # scalar
"sysGateway" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""Gateway""",
}, # scalar
"ipifName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readonly",
"description" :
"""The Description for the interface.""",
}, # scalar
"ipifv6GlobalStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The ID of VLAN that you want this interface to be in.
It must be a exist vlan id.""",
}, # scalar
"ipifv6DHCPStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The state of DHCPv6 that you want this interface to be in.
It must be a exist vlan id.""",
}, # scalar
"ipifv6AutolinkloStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The global state of link local that you want this interface to be in.
It must be a exist vlan id.""",
}, # scalar
"ipifv6NSRetransmitTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.5.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "3600"
},
],
"range" : {
"min" : "1",
"max" : "3600"
},
},
},
"access" : "readwrite",
"description" :
"""The NS's retransmit time that you want this interface to be in.
It must be a exist vlan id.""",
}, # scalar
"ipifv6DefaultGateway" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The ipv6 default gateway that you want this interface to be in.
To delete gateway, please insert address
'0000:0000:0000:0000:0000:0000:0000:0000'.""",
}, # scalar
"ipifV6AddressTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.12",
"status" : "current",
"description" :
"""A list of interface entries.""",
}, # table
"ipifV6AddressEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.5.12.1",
"create" : "true",
"status" : "current",
"linkage" : [
"ipifV6AddressMainIndex",
"ipifV6AddressIpAddr",
"ipifV6AddressIpPrefix",
],
"description" :
"""An entry containing management information applicable
to a particular interface.""",
}, # row
"ipifV6AddressMainIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.12.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The index of this IPv6 entry.""",
}, # column
"ipifV6AddressIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.5.12.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"default" : "0x00000000",
"description" :
"""The ip address of this IPv6 entry.""",
}, # column
"ipifV6AddressIpPrefix" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.5.12.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The ip prefix of this IPv6 entry.""",
}, # column
"ipifV6AddressIpType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.12.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unicast" : {
"nodetype" : "namednumber",
"number" : "1"
},
"anycast" : {
"nodetype" : "namednumber",
"number" : "2"
},
"linklocal" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""The ip type of this IPv6 entry.""",
}, # column
"ipifV6AddressRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.2.5.12.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Multi Interface Table. Only a subset
of the rowstatus variables (active, createAndWait, destroy) are available.""",
}, # column
"dhcpOption12Status" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Status of DHCP Option12""",
}, # scalar
"dhcpOption12HostName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.2.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Host name in DHCP option 12.
The acceptable beginning of DHCP hostname is letter.""",
}, # scalar
"companyTftpGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.3",
}, # node
"tftpFwTargetGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.9",
}, # node
"tftpFwTargetServerIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.9.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The TFTP server's IP address is used to upload or
download firmware.""",
}, # scalar
"tftpFwTargetServerIpType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.9.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Type of IP interface.""",
}, # scalar
"tftpFwTargetInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.9.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the tftpFwTargetServerIpAddress
is linklocal address.""",
}, # scalar
"tftpFwTargetImageFileName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.3.9.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "64"
},
],
"range" : {
"min" : "1",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""Configure firmware filename to download.""",
}, # scalar
"tftpFwTargetTftpOperation" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.3.9.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"download" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The tftp operates to perform downloading the firmware image
to the unit. This object is used in conjunction with
configBootTftpServerIp and configBootImageFileName.""",
}, # scalar
"tftpFwTargetTftpOperationStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.3.9.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
"transmit" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""The tftp operation status represent firmware backup or upgrade status.""",
}, # scalar
"tftpCfgTargetGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.10",
}, # node
"tftpCfgTargetServerIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The TFTP server's IP address is used to upload or
download configuration file.""",
}, # scalar
"tftpCfgTargetServerIpType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.10.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Type of IP interface.""",
}, # scalar
"tftpCfgTargetInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.10.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the tftpCfgTargetServerIpAddress
is linklocal address.""",
}, # scalar
"tftpCfgTargetImageFileName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.10.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "64"
},
],
"range" : {
"min" : "1",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""The configuration filename is used to store or retrieve config
from the tftp server.""",
}, # scalar
"tftpCfgTargetTftpOperation" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.10.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"download" : {
"nodetype" : "namednumber",
"number" : "1"
},
"upload" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""The tftp operates to perform either downloading the
configuration file to the unit or uploading the current
configuration file to the tftp server. This object is
used in conjunction with configTftpServerIpAddress
and configTftpServerFileName.""",
}, # scalar
"tftpCfgTargetTftpOperationStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.3.10.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
"progressing" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""The tftp operation status represent configuration file backup or restore status.""",
}, # scalar
"companyMiscGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.4",
}, # node
"miscReset" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.4.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"reset" : {
"nodetype" : "namednumber",
"number" : "1"
},
"noop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Physically resets the unit - use with care. A (1) resets
the unit, a (2) does nothing.""",
}, # scalar
"miscStatisticsReset" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.4.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"reset" : {
"nodetype" : "namednumber",
"number" : "1"
},
"noop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Resets the units statistics. A (1) resets
the statistics count, a (2) does nothing.""",
}, # scalar
"companyRSTP" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6",
}, # node
"stpGlobal" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1",
}, # node
"rstpStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The administrative module status requested by management for the RSTP
Module. This enables or disables RSTP in the system. A value of 'enabled'
(1) indicates that RSTP must be enabled in the device on all the ports.
A value of 'disabled'(2) indicates that RSTP must be disabled in the
device on all the ports.""",
}, # scalar
"stpVersion" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"stpCompatible" : {
"nodetype" : "namednumber",
"number" : "0"
},
"rstp" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "rstp",
"description" :
"""The version of Spanning Tree Protocol the bridge is
currently running. The value 'stpCompatible(0)'
indicates the Spanning Tree Protocol specified in
IEEE 802.1D and 'rstp(2)' indicates the Rapid Spanning
Tree Protocol specified in IEEE 802.1w. New value may
be defined as future versions of the protocol become
available.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpPriority" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "61440"
},
],
"range" : {
"min" : "0",
"max" : "61440"
},
},
},
"access" : "readwrite",
"description" :
"""The bridge priority vector, as defined in 17.6. The first
(RootBridgeID) and third (DesignatedBridgeID)components are
both equal to the value of the Bridge Identifier (17.18.2).
The other components are zero. Permissible values are 0-61440,
in steps of 4096.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpTxHoldCount" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"default" : "6",
"description" :
"""The value used by the Port Transmit state machine to limit
the maximum transmission rate.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpProtocolSpecification" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"decLb100" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ieee8021d" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""An indication of what version of the Spanning
Tree Protocol is being run. The value
'decLb100(2)' indicates the DEC LANbridge 100
Spanning Tree protocol. IEEE 802.1d
implementations will return 'ieee8021d(3)'. If
future versions of the IEEE Spanning Tree Protocol
are released that are incompatible with the
current version a new value will be defined.""",
}, # scalar
"stpTimeSinceTopologyChange" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""The time (in hundredths of a second) since the
last time a topology change was detected by the
bridge entity.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpTopChanges" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of topology changes detected by
this bridge since the management entity was last
reset or initialized.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpDesignatedRoot" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The bridge identifier of the root of the spanning
tree as determined by the Spanning Tree Protocol
as executed by this node. This value is used as
the Root Identifier parameter in all Configuration
Bridge PDUs originated by this node.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpRootCost" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The cost of the path to the root as seen from
this bridge.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpRootPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the port which offers the
lowest cost path from this bridge to the root
bridge.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpMaxAge" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""The maximum age of Spanning Tree Protocol
information learned from the network on any port
before it is discarded, in units of hundredths of
a second. The rootTimes variable comprises the
Bridge��s operational timer parameter values
(Message Age, Max Age, Forward Delay, and
Hello Time), derived from the values stored in
portTimes (17.19.22) for the Root Port or from
BridgeTimes (17.18.4).""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpHelloTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""The amount of time between the transmission of
Configuration bridge PDUs by this node on any port
when it is the root of the spanning tree or trying
to become so, in units of hundredths of a second.
The interval between periodic transmissions of
Configuration Messages by Designated Ports
(Table 17-1).""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpHoldTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This time value determines the interval length
during which no more than two Configuration bridge
PDUs shall be transmitted by this node, in units
of hundredths of a second.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpForwardDelay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""This time value, measured in units of hundredths
of a second, controls how fast a port changes its
spanning state when moving towards the Forwarding
state. The value determines how long the port
stays in each of the Listening and Learning
states, which precede the Forwarding state. This
value is also used, when a topology change has
been detected and is underway, to age all dynamic
entries in the Forwarding Database.
The delay used by STP Bridges (17.4) to transition
Root and Designated Ports to Forwarding
(Table 17-1).""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpBridgeMaxAge" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "DES-1210-28P_CX",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "600",
"max" : "4000"
},
],
"range" : {
"min" : "600",
"max" : "4000"
},
},
},
"access" : "readwrite",
"description" :
"""The Max Age component of designatedTimes (17.19.5).
This time value, measured in units of hundredths
of a second. BridgeTimes comprises four components�Xthe
current values of Bridge Forward Delay, Bridge Hello Time,
and Bridge Max Age (17.13, Table 17-1), and a Message Age
of zero.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpBridgeHelloTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.192.168.3.115.19.1.6.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "DES-1210-28P_CX",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "100",
"max" : "1000"
},
],
"range" : {
"min" : "100",
"max" : "1000"
},
},
},
"access" : "readwrite",
"description" :
"""The Hello Time component of designatedTimes (17.19.5).
This time value, measured in units of hundredths
of a second. BridgeTimes comprises four components�Xthe
current values of Bridge Forward Delay, Bridge Hello Time,
and Bridge Max Age (17.13, Table 17-1), and a Message Age
of zero.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpBridgeForwardDelay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.1.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "DES-1210-28P_CX",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "400",
"max" : "3000"
},
],
"range" : {
"min" : "400",
"max" : "3000"
},
},
},
"access" : "readwrite",
"description" :
"""The Forward Delay component of designatedTimes (17.19.5).
This time value, measured in units of hundredths
of a second. BridgeTimes comprises four components�Xthe
current values of Bridge Forward Delay, Bridge Hello Time,
and Bridge Max Age (17.13, Table 17-1), and a Message Age
of zero.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # scalar
"stpPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2",
"status" : "current",
"description" :
"""A table that contains port-specific information
for the Spanning Tree Protocol.""",
}, # table
"stpPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1",
"status" : "current",
"linkage" : [
"stpPort",
],
"description" :
"""A list of information maintained by every port
about the Spanning Tree Protocol state for that
port.""",
}, # row
"stpPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The port number of the port for which this entry
contains Spanning Tree Protocol management
information.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortPriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "240"
},
],
"range" : {
"min" : "0",
"max" : "240"
},
},
},
"access" : "readwrite",
"description" :
"""The value of the priority field which is
contained in the first (in network byte order)
octet of the (2 octet long) Port ID. The other
octet of the Port ID is given by the value of
stpPort.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"blocking" : {
"nodetype" : "namednumber",
"number" : "2"
},
"listening" : {
"nodetype" : "namednumber",
"number" : "3"
},
"learning" : {
"nodetype" : "namednumber",
"number" : "4"
},
"forwarding" : {
"nodetype" : "namednumber",
"number" : "5"
},
"broken" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""The port's current state as defined by
application of the Spanning Tree Protocol. This
state controls what action a port takes on
reception of a frame. If the bridge has detected
a port that is malfunctioning it will place that
port into the broken(6) state. For ports which
are disabled (see stpPortEnable), this object
will have a value of disabled(1).""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortEnable" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The enabled/disabled status of the port.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpAdminPortPathCost" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "200000000"
},
],
"range" : {
"min" : "0",
"max" : "200000000"
},
},
},
"access" : "readwrite",
"description" :
"""The contribution of this port to the path cost of
paths towards the spanning tree root which include
this port. Writing a value of '0' assigns the
automatically calculated default Path Cost value to
the ohter object stpPortPathCost. If the default
Path Cost is being used,this object returns '0' when
read.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortPathCost" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "200000000"
},
],
"range" : {
"min" : "1",
"max" : "200000000"
},
},
},
"access" : "readonly",
"description" :
"""The contribution of this port to the path cost of
paths towards the spanning tree root which include
this port.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The unique Bridge Identifier of the Bridge
recorded as the Root in the Configuration BPDUs
transmitted by the Designated Bridge for the
segment to which the port is attached.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortDesignatedCost" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The path cost of the Designated Port of the
segment connected to this port. This value is
compared to the Root Path Cost field in received
bridge PDUs.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortDesignatedBridge" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The Bridge Identifier of the bridge which this
port considers to be the Designated Bridge for
this port's segment.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortDesignatedPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "2",
"max" : "2"
},
],
"range" : {
"min" : "2",
"max" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The Port Identifier of the port on the Designated
Bridge for this port's segment.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortForwardTransitions" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The number of times this port has transitioned
from the Learning state to the Forwarding state.""",
}, # column
"stpPortProtocolMigration" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""When operating in RSTP (version 2) mode, writing TRUE(1)
to this object forces this port to transmit RSTP BPDUs.
Any other operation on this object has no effect and
it always returns FALSE(2) when read.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortOperEdgePort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""The operational value of the Edge Port parameter. The
object is initialized to the value of
stpPortAdminEdgePort and is set FALSE on reception of
a BPDU.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortAdminPointToPoint" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.6.2.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"forceTrue" : {
"nodetype" : "namednumber",
"number" : "0"
},
"forceFalse" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The administrative point-to-point status of the LAN segment
attached to this port. A value of forceTrue(0) indicates that
this port should always be treated as if it is connected to
a point-to-point link. A value of forceFalse(1) indicates
that this port should be treated as having a shared media
connection. A value of auto(2) indicates that this port is
considered to have a point-to-point link if it is an Aggregator
and all of its members are aggregatable, or if the MAC entity
is configured for full duplex operation, either through
auto-negotiation or by management means.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortOperPointToPoint" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""The operational point-to-point status of the LAN segment
attached to this port. It indicates whether a port is
considered to have a point-to-point connection or not.
The value is determined by management or by auto-detection,
as described in the stpPortAdminPointToPoint object.""",
"reference>" :
"""IEEE 802.1D-2004""",
}, # column
"stpPortEdge" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"false" : {
"nodetype" : "namednumber",
"number" : "0"
},
"true" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
""" This parameter when TRUE(1) indicates that detection of a port
as Edge Port happens automatically and FALSE(2)
indicates that this feature is disabled.""",
}, # column
"stpPortRestrictedRole" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""A Boolean value set by management. If TRUE causes the Port not
to be selected as Root Port for the CIST or any MSTI, even it has
the best spanning tree priority vector. Such a Port will be selected
as an Alternate Port after the Root Port has been selected. This
parameter should be FALSE by default. If set it can cause lack of
spanning tree connectivity. It is set by a network administrator to
prevent bridges external to a core region of the network influencing
the spanning tree active topology, possibly because those bridges are
not under the full control of the administrator.
This administrator configuration is also known as 'Root Guard'.""",
}, # column
"stpPortRestrictedTCN" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.6.2.1.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readwrite",
"description" :
"""A Boolean value set by management. If TRUE causes the Port not
to propagate received topology change notifications and topology
changes to other Ports. This parameter should be FALSE by default.
If set it can cause temporary loss of connectivity after changes in
a spanning trees active topology as a result of persistent
incorrectly learnt station location information. It is set by a
network administrator to prevent bridges external to a core region of
the network causing address flushing in that region, possibly because
those bridges are not under the full control of the administrator or
MAC_Operational for the attached LANs transitions frequently.""",
}, # column
"companyDot1qVlanGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.7",
}, # node
"dot1qVlanManagementOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.7.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable management VLAN mechanism.""",
}, # scalar
"dot1qVlanManagementid" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.7.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"default" : "1",
"description" :
"""The management VLAN ID, which will allow to forward packets of that VLAN to CPU.""",
}, # scalar
"dot1qVlanAsyOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.7.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable IEEE 802.1Q Asymmetric VLAN""",
}, # scalar
"dot1qVlanTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.7.6",
"status" : "current",
"description" :
"""A table containing static configuration information for
each VLAN configured into the device by (local or
network) management. All entries are permanent and will
be restored after the device is reset.""",
}, # table
"dot1qVlanEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.7.6.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dot1qVlanName",
],
"description" :
"""Information for a VLAN configured into the
device by (local or network) management.""",
}, # row
"dot1qVlanName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.7.6.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "20"
},
],
"range" : {
"min" : "0",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""An administratively assigned string, which may be used
to identify the VLAN.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 192.168.3.11""",
}, # column
"dot1qVlanEgressPorts" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.7.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""The set of ports which are permanently assigned to the
egress list for this VLAN by management. Changes to a
bit in this object affect the per-port per-VLAN
Registrar control for Registration Fixed on each port. A port may
not be added in this set if it is already a member of
the set of ports in dot1qVlanForbiddenEgressPorts. The
default value of this object is a string of zeros of
appropriate length, indicating not fixed.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 192.168.3.11, 172.16.17.32.3""",
}, # column
"dot1qVlanUntaggedPorts" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.7.6.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""The set of ports which should transmit egress packets
for this VLAN as untagged. The default value of this
object for the default VLAN (dot1qVlanIndex = 1) is a string
of appropriate length including all ports. There is no
specified default for other VLANs. If a device agent cannot
support the set of ports being set then it will reject the
set operation with an error. An example might be if a
manager attempts to set more than one VLAN to be untagged
on egress where the device does not support this IEEE 802.1Q
option.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 1172.16.58.3""",
}, # column
"dot1qVlanRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.7.6.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of a row in dot1qVlanTable. By setting this object, new
entries can be created in dot1qVlanTable and existing entries can be
removed from dot1qVlanTable. It can be used as specified in the SNMP
v2 standard.""",
}, # column
"dot1qVlanPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.7.7",
"status" : "current",
"description" :
"""A table containing per port control and status
information for VLAN configuration in the device.""",
}, # table
"dot1qVlanPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.7.7.1",
"status" : "current",
"linkage" : [
{ "BRIDGE-MIB" : {
"indexkind" : "augments",
"relatedNode" : "dot1dBasePortEntry",
}},
],
"description" :
"""Information controlling VLAN configuration for a port
on the device.""",
}, # row
"dot1qVlanPvid" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.7.7.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "VlanIndex"},
},
"access" : "readwrite",
"default" : "1",
"description" :
"""The PVID, the VLAN ID assigned to untagged frames or
Priority-Tagged frames received on this port.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 192.168.3.11""",
}, # column
"companyLA" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8",
}, # node
"laSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.1",
}, # node
"laStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Sets the Link Aggregation Module administrative status as
enabled or disabled.""",
}, # scalar
"laPortChannelTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.1.3",
"status" : "current",
"description" :
"""A Port-channel is created through ifMain table.
After the creation of the port-channel, corresponding logical
interface will be created in the ifMain table.
This Port-channel table is indexed through Key values and allows to
configure link selection policy and the Mac address for
the port-channel. All other objects in this table displays
the details of the port-channel.""",
}, # table
"laPortChannelEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.1.3.1",
"status" : "current",
"linkage" : [
"laPortChannelIfIndex",
],
"description" :
"""There is one entry in this table for each created
port-channel port.""",
}, # row
"laPortChannelIfIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The index of the port-channel(Aggregator's
interface index). """,
}, # column
"laPortChannelMemberList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Member Port list of the port channel. Add the ports as a
aggregation member associated of a port-channel.""",
}, # column
"laPortChannelMode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortLaMode"},
},
"access" : "readwrite",
"description" :
"""Current Operating Channel Mode of the port channel
Lacp(1) - forcing the port to negotiate with the
partner.
manual(2) - force the port to enable channeling (Manual).
disable(3) - channeling is disabled.""",
}, # column
"laPortControl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.8.2",
}, # node
"laPortControlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.2.1",
"status" : "current",
"description" :
"""A table that contains Link Aggregation Control
configuration information about every
Aggregation Port associated with this device.
A row appears in this table for each physical port.""",
}, # table
"laPortControlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.8.2.1.1",
"status" : "current",
"linkage" : [
"laPortControlIndex",
],
"description" :
"""A list of Link Aggregation Control configuration
parameters for each Aggregation Port on this device.""",
}, # row
"laPortControlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.8.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The index of the port.""",
}, # column
"laPortActorActivity" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"active" : {
"nodetype" : "namednumber",
"number" : "1"
},
"passive" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates LACP_Activity to this Aggregation Port.
LACP can be configured in one of two modes: active or passive.
In active mode it will always send frames along the configured links.
If the actor and partner are both in passive mode, they do not
exchange LACP packets.""",
}, # column
"laPortActorTimeout" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.8.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"short" : {
"nodetype" : "namednumber",
"number" : "1"
},
"long" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates LACP_Timeout to this Aggregation Port.
short(1) - LACP Timeout 3 seconds.
long (2) - LACP Timeout 90 seconds.""",
}, # column
"companyStaticMAC" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.9",
}, # node
"staticDisableAutoLearn" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.9.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
"off" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Set on to disable Auto Learning Excluding Uplink Port and
set off to enable Auto Learning.""",
}, # scalar
"staticAutoLearningList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.9.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""The set of the device's member ports that belong
to the Static MAC auto learning enable/disable.
For example, when Disable Auto Learning is enable,
the octet value set up as '# 0x0F 0xFF 0xFF 0xFF' means
from port 1 to port 4 are not in auto learning state,
the other ports are in auto learning state. It can be
set up when Disable Auto Learning is enable.""",
}, # scalar
"staticTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.9.3",
"status" : "current",
"description" :
"""A list of the Static MACs""",
}, # table
"staticEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.9.3.1",
"status" : "current",
"linkage" : [
"staticVlanID",
"staticMac",
"staticPort",
],
"description" :
"""A Static MAC entry containing the mac and forwarding port.""",
}, # row
"staticVlanID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.9.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The VLAN ID of the static MAC entry.""",
}, # column
"staticMac" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.9.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the static MAC entry.""",
}, # column
"staticPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.9.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The forwarding port of the static MAC entry.""",
}, # column
"staticStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.9.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Static MAC Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy)
are available. The trunk member port can not set up static MAC.""",
}, # column
"companyIgsGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10",
}, # node
"igsSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.1",
}, # node
"igsStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enables or disables IGMP snooping in the system.
When set to 'enabled', the IGS module starts
protocol operations.
When set to 'disabled', the IGS module stops performing
protocol operations.""",
}, # scalar
"igsRouterPortPurgeInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readwrite",
"default" : "260",
"description" :
"""This is the interval (in seconds) after which a learnt
router port entry will be purged. For each router port learnt,
this timer runs for 'RouterPortPurgeInterval' seconds.When the
timer expires, the learnt router port entry is purged. However
if control messages are received from the router before the
timer expiry, then the timer is restarted.""",
}, # scalar
"igsHostPortPurgeInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "130",
"max" : "153025"
},
],
"range" : {
"min" : "130",
"max" : "153025"
},
},
},
"access" : "readwrite",
"default" : "260",
"description" :
"""This is the interval (in seconds) after which a learnt
port entry will be purged. For each port on which report
has been received this timer runs for 'PortPurgeInterval'
seconds. This timer will be restarted whenever a report
message is received from a host on the specific port. If
the timer expires, then , the learnt port entry will
be purged from the multicast group.""",
}, # scalar
"igsRobustnessValue" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "2",
"max" : "255"
},
],
"range" : {
"min" : "2",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "2",
"description" :
"""When the switch receives leave message on a port, it
sends group specific query to check if there are any other
interested receivers for the group. This attribute defines
the maximum number of queries sent by the switch before deleting
the port from the group membership information in the forwarding
database. If the maximum retry count exceeds 'igsRobustnessValue',
then the port will be deleted from the multicast group membership
information in the forwarding database and received leave message
will be forwarded onto the router ports if there are no
interested receivers for the group.""",
}, # scalar
"igsGrpQueryInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "25"
},
],
"range" : {
"min" : "1",
"max" : "25"
},
},
},
"access" : "readwrite",
"default" : "1",
"description" :
"""The value of this attribute defines the time period with which
the switch will send group specific queries on a port to check
if there is any intersted receivers. The switch will send
'igsRobustnessValue' queries before removing the port from the
group membership information in the forwarding database.""",
}, # scalar
"igsQueryInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readwrite",
"default" : "125",
"description" :
"""This is the interval (in seconds) for which the switch
sends general queries when it is configured as a querier for
VLANs.""",
}, # scalar
"igsQueryMaxResponseTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "10",
"max" : "25"
},
],
"range" : {
"min" : "10",
"max" : "25"
},
},
},
"access" : "readwrite",
"default" : "10",
"description" :
"""The maximum query response time advertised in IGMPv2 general
queries on this interface.""",
}, # scalar
"igsReportToAllPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enables or disables IGMP snooping in the system.
When set to 'enabled', the IGS module forwards packets
to report to all port.
When set to 'disabled', the IGS module forwards packets
to router port only.""",
}, # scalar
"igsVlan" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.3",
}, # node
"igsVlanRouterTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.3.3",
"status" : "current",
"description" :
"""This table contains the list of ports through which
a router, in a particular VLAN is reachable.""",
}, # table
"igsVlanRouterEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.3.3.1",
"status" : "current",
"linkage" : [
"igsVlanRouterVlanId",
],
"description" :
"""An igs vlan router entry contain the igs vlan router port list.""",
}, # row
"igsVlanRouterVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""It is the VLAN ID of the igs vlan router entry.""",
}, # column
"igsVlanRouterPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.3.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""List of ports on which routers are present.
These router ports are learnt through control messages
received from routers, and can also be configured
statically.""",
}, # column
"igsVlanFilterTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.4",
"status" : "current",
"description" :
"""This table contains configuration of snooping
on specific Vlans. This Table is valid only when VLAN is
enabled in the system.""",
}, # table
"igsVlanFilterEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.4.1",
"status" : "current",
"linkage" : [
"igsVlanFilterVlanId",
],
"description" :
"""Contains snooping status , version and fast leave
configuration for a specific VLAN.""",
}, # row
"igsVlanFilterVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.3.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""Index of IgsVlanFilterEntry. This object indicates the VLAN ID for which
the snooping configurations in IgsVlanFilterEntry is to be done.""",
}, # column
"igsVlanSnoopStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.3.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""This object allows you to enable/disable IGS function on a specific VLAN.""",
}, # column
"igsVlanQuerier" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"default" : "disabled",
"description" :
"""Indicates whether the switch is configured as a querier in the VLAN""",
}, # column
"igsVlanCfgQuerier" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""The snooping switch can be configured as a querier via this object
to send out IGMP general queries when IGMP routers are not present in the VLAN.
When set to 'enabled', the switch will generate general queries.""",
}, # column
"igsVlanQueryInterval" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.172.16.31.10.3.4.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readonly",
"default" : "125",
"description" :
"""This is the interval (in seconds) for which the switch
sends general queries when it is configured as a querier for
the VLAN. A switch should be configured as a querier for a VLAN
only when there is no queriers in the network.""",
}, # column
"igsVlanRtrPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.3.4.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""List of ports which are configured statically as router ports""",
}, # column
"igsVlanFastLeave" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.4.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enables or disables fast leave for the VLAN. When it is
'disabled',on reception of a leave message, the switch checks
if they are any interested receivers for the group by sending
a group specific query before removing the port from the
forwarding table. If set to 'enabled', the switch does not
send a group specific query and immediately removes the port
from the forwarding table.""",
}, # column
"igsVlanMulticastGroupTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.10.3.5",
"status" : "current",
"description" :
"""This table contains MAC based multicast forwarding
information.""",
}, # table
"igsVlanMulticastGroupEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.5.1",
"status" : "current",
"linkage" : [
"igsVlanMulticastGroupVlanId",
"igsVlanMulticastGroupIpAddress",
],
"description" :
"""This table contains VLAN ID, multicast group MAC address and the
list of ports onto which the multicast data packets for group
should be forwarded.""",
}, # row
"igsVlanMulticastGroupVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.5.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""VLAN ID pertaining to the Multicast forwarding entry""",
}, # column
"igsVlanMulticastGroupIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "readonly",
"description" :
"""Multicast group IP address. This object indicates that a
multicast group address was learned in the switch and be represented
as IP address format.""",
}, # column
"igsVlanMulticastGroupMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""Multicast group MAC address. This object indicates that a
multicast group address was learned in the switch and be represented
as MAC address format.""",
}, # column
"igsVlanMulticastGroupPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.10.3.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""List of ports onto which the multicast data
packets destined for this group will be forwarded.""",
}, # column
"companyQoSGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12",
}, # node
"qosMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dot1p" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dscp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tos" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Settings of Qos mode:
IEEE 802.1p QoS or DSCP QoS or TOS Qos.
IEEE 802.1p : It specifies a priority(0~7) value to four queues in WS3 : Low(1,2), Medium(0,3), High(4,5) and Highest(6,7), inclusive that can be used by Quality of Service (QoS) disciplines to differentiate traffic.
DSCP : Differentiated services enhancements to the Internet protocol are intended to enable scalable service discrimination in the Internet without the need for per-flow state and signaling at every hop. """,
}, # scalar
"queuingMechanism" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"strictPriority" : {
"nodetype" : "namednumber",
"number" : "1"
},
"wrr" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Queuing mechanism.
strictPriority(1) : Strict Priority
wrr(2) : Weighted Round Robin
Strict-priority scheduling is implemented with a special strict-priority scheduler node that is stacked directly above the port. Queues stacked on top of the strict-priority scheduler node always get bandwidth before other queues.
Weighted round-robin scheduling is designed to better handle queues with different processing capacities. Each queue has a weight : Low is 1, Medium is 2, High is 4 and Highest is 8 for WS4 spec. Queues with higher weights get bandwidth before than other queues with less weights.""",
}, # scalar
"qosQ1p" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.3",
}, # node
"dot1pPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.3.1",
"status" : "current",
"description" :
"""A list of 802.1p port default priority Entries.""",
}, # table
"dot1pPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.3.1.1",
"status" : "current",
"linkage" : [
"dot1pPortIndex",
],
"description" :
"""A list of 802.1p port default priority priorities.""",
}, # row
"dot1pPortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""A port identifier that is in the range of 1 to ifNumber.""",
}, # column
"dot1pPortPriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""For ingress untagged packets, the per port 'Default Priority'
setting will be applied to packets of each port to provide
port-based traffic prioritization.
For ingress tagged packets, D-Link Smart Switches will refer
to their 802.1p information and prioritize them with 8
different priority queues. """,
}, # column
"qosDiffServ" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4",
}, # node
"qosDiffServEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Display the DSCP(Differentiated services) function Enabled or Disabled.
Notice : DiffServ Type is 2~7 bits in the TOS field. ex: If the DiffServ Type = 000011(3),
the value in TOS field is 00001100(12) """,
}, # scalar
"qosDiffServTypeGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2",
}, # node
"qosDiffServType00" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 0 : IP ToS value = 0""",
}, # scalar
"qosDiffServType01" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 01 : IP ToS value = 4""",
}, # scalar
"qosDiffServType02" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 02 : IP ToS value = 8""",
}, # scalar
"qosDiffServType03" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 03 : IP ToS value = 12""",
}, # scalar
"qosDiffServType04" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 04 : IP ToS value = 16""",
}, # scalar
"qosDiffServType05" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 05 : IP ToS value = 20""",
}, # scalar
"qosDiffServType06" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 06 : IP ToS value = 24""",
}, # scalar
"qosDiffServType07" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 07 : IP ToS value = 28""",
}, # scalar
"qosDiffServType08" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 08 : IP ToS value = 32""",
}, # scalar
"qosDiffServType09" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 09 : IP ToS value = 36""",
}, # scalar
"qosDiffServType10" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 10 : IP ToS value = 40""",
}, # scalar
"qosDiffServType11" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 11 : IP ToS value = 44""",
}, # scalar
"qosDiffServType12" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 12 : IP ToS value = 48""",
}, # scalar
"qosDiffServType13" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 13 : IP ToS value = 52""",
}, # scalar
"qosDiffServType14" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 14 : IP ToS value = 56""",
}, # scalar
"qosDiffServType15" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 15 : IP ToS value = 60""",
}, # scalar
"qosDiffServType16" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 16 : IP ToS value = 64""",
}, # scalar
"qosDiffServType17" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.18",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 17 : IP ToS value = 68""",
}, # scalar
"qosDiffServType18" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.19",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 18 : IP ToS value = 72""",
}, # scalar
"qosDiffServType19" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 19 : IP ToS value = 76""",
}, # scalar
"qosDiffServType20" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.21",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 20 : IP ToS value = 80""",
}, # scalar
"qosDiffServType21" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.22",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 21 : IP ToS value = 84""",
}, # scalar
"qosDiffServType22" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.23",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 22 : IP ToS value = 88""",
}, # scalar
"qosDiffServType23" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.24",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 23 : IP ToS value = 92""",
}, # scalar
"qosDiffServType24" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.25",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 24 : IP ToS value = 96""",
}, # scalar
"qosDiffServType25" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.26",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 25 : IP ToS value = 100""",
}, # scalar
"qosDiffServType26" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.27",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 26 : IP ToS value = 104""",
}, # scalar
"qosDiffServType27" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.28",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 27 : IP ToS value = 108""",
}, # scalar
"qosDiffServType28" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.29",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 28 : IP ToS value = 112""",
}, # scalar
"qosDiffServType29" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.30",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 29 : IP ToS value = 116""",
}, # scalar
"qosDiffServType30" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.31",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 30 : IP ToS value = 120""",
}, # scalar
"qosDiffServType31" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.32",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 31 : IP ToS value = 124""",
}, # scalar
"qosDiffServType32" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.33",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 32 : IP ToS value = 128""",
}, # scalar
"qosDiffServType33" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.34",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 33 : IP ToS value = 132""",
}, # scalar
"qosDiffServType34" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.35",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 34 : IP ToS value = 136""",
}, # scalar
"qosDiffServType35" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.36",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 35 : IP ToS value = 140""",
}, # scalar
"qosDiffServType36" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.37",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 36 : IP ToS value = 144""",
}, # scalar
"qosDiffServType37" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.38",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 37 : IP ToS value = 148""",
}, # scalar
"qosDiffServType38" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.39",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 38 : IP ToS value = 152""",
}, # scalar
"qosDiffServType39" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.40",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 39 : IP ToS value = 156""",
}, # scalar
"qosDiffServType40" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.41",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 40 : IP ToS value = 160""",
}, # scalar
"qosDiffServType41" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.42",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 41 : IP ToS value = 164""",
}, # scalar
"qosDiffServType42" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.1172.16.31.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 42 : IP ToS value = 168""",
}, # scalar
"qosDiffServType43" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.44",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 43 : IP ToS value = 172""",
}, # scalar
"qosDiffServType44" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.45",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 44 : IP ToS value = 176""",
}, # scalar
"qosDiffServType45" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.46",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 45 : IP ToS value = 180""",
}, # scalar
"qosDiffServType46" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.47",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 46 : IP ToS value = 184""",
}, # scalar
"qosDiffServType47" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.48",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 47 : IP ToS value = 188""",
}, # scalar
"qosDiffServType48" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.49",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 48 : IP ToS value = 192""",
}, # scalar
"qosDiffServType49" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.50",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 49 : IP ToS value = 196""",
}, # scalar
"qosDiffServType50" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.51",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 50 : IP ToS value = 200""",
}, # scalar
"qosDiffServType51" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.52",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 51 : IP ToS value = 204""",
}, # scalar
"qosDiffServType52" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.192.168.3.11.10.75.19.1.12.4.2.53",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 52 : IP ToS value = 208""",
}, # scalar
"qosDiffServType53" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.54",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 53 : IP ToS value = 212""",
}, # scalar
"qosDiffServType54" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.55",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 54 : IP ToS value = 216""",
}, # scalar
"qosDiffServType55" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.192.168.3.115.19.1.12.4.2.56",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 55 : IP ToS value = 220""",
}, # scalar
"qosDiffServType56" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.192.168.3.115.19.1.12.4.2.57",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 56 : IP ToS value = 224""",
}, # scalar
"qosDiffServType57" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.58",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 57 : IP ToS value = 228""",
}, # scalar
"qosDiffServType58" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.59",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 58 : IP ToS value = 232""",
}, # scalar
"qosDiffServType59" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.60",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 59 : IP ToS value = 236""",
}, # scalar
"qosDiffServType60" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.61",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 60 : IP ToS value = 240""",
}, # scalar
"qosDiffServType61" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.4.2.62",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 61 : IP ToS value = 244""",
}, # scalar
"qosDiffServType62" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.63",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 62 : IP ToS value = 248""",
}, # scalar
"qosDiffServType63" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.4.2.64",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""DiffServ Type 63 : IP ToS value = 252""",
}, # scalar
"qosTOS" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.5",
}, # node
"qosTOSEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.5.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Display the TOS(Type of services) function Enabled or Disabled.""",
}, # scalar
"qosTOSGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.5.2",
}, # node
"qosTOSType00" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.5.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 0""",
}, # scalar
"qosTOSType01" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.5.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 01""",
}, # scalar
"qosTOSType02" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.5.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 02""",
}, # scalar
"qosTOSType03" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.5.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 03""",
}, # scalar
"qosTOSType04" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.5.2.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 04""",
}, # scalar
"qosTOSType05" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.5.2.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 05""",
}, # scalar
"qosTOSType06" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.12.5.2.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 06""",
}, # scalar
"qosTOSType07" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.12.5.2.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""TOS 07""",
}, # scalar
"companyTrafficMgmt" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.13",
}, # node
"bandwidthCtrlSettings" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.13.1",
}, # node
"bandwidthCtrlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.13.1.2",
"status" : "current",
"description" :
"""A table to control the rate limiting parameters
either for the entire switch or for each interface in the switch.""",
}, # table
"bandwidthCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.13.1.2.1",
"status" : "current",
"linkage" : [
"bandwidthCtrlIndex",
],
"description" :
"""An entry appears in this table for each physical
interface in the switch.""",
}, # row
"bandwidthCtrlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.13.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index for which the configuration in this
entry applies.""",
}, # column
"bandwidthCtrlTxThreshold" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.13.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "64",
"max" : "1024000"
},
],
"range" : {
"min" : "0",
"max" : "1024000"
},
},
},
"access" : "readwrite",
"description" :
"""Configures interface Rate Limit (Packet that can be transferred
on a port at a particular second).
This object's value will take effect on the interface speed. Based
on the operating speed of the port, the rate limit will be applied.
This value can also be affected by the metering. A value of zero(0)
disable rate limiting i.e. sets the port to full speed. The value can
be set between 64~102400(Kbits per second) in FE port, 64~1024000
(Kbits per second) in GE port.""",
}, # column
"bandwidthCtrlRxThreshold" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.13.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "64",
"max" : "1024000"
},
],
"range" : {
"min" : "0",
"max" : "1024000"
},
},
},
"access" : "readwrite",
"description" :
"""Allows to configure the limiting value for the maximum number
of receive packets that can be transmitted per second over this
interface. Setting this object to the value zero disables rate
limiting for receive packets on this interface. The value that
can be set for this object is limited by the underlying hardware.
The value can be set between 64~102400(Kbits per second) in FE
port, 64~1024000(Kbits per second) in GE port.""",
}, # column
"broadcastStormCtrlSettings" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.13.3",
}, # node
"broadcastStormCtrlGlobalOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.13.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates storm control function is enabled or disabled
for device.
When you enable broadcast storm control function, D-Link Smart
Switches will allowed you to limit the number of broadcast packets
per second going through device.""",
}, # scalar
"broadcastStormCtrlLimitType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.13.3.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"broadcastonly" : {
"nodetype" : "namednumber",
"number" : "1"
},
"multicastAndbroadcast" : {
"nodetype" : "namednumber",
"number" : "2"
},
"dlfMulticastAndbroadcast" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates storm control function is control broadcast
packet or multicast packet or dlf packet.""",
}, # scalar
"broadcastStormCtrlThreshold" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.13.3.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "64",
"max" : "1024000"
},
],
"range" : {
"min" : "0",
"max" : "1024000"
},
},
},
"access" : "readwrite",
"default" : "0",
"description" :
"""Allows to configure the limiting value for the maximum number
of Kbits/sec that can be transmitted per second over this interface.
Setting this object to the value zero disables rate limiting on
this interface. The value that can be set for this object is
limited by the underlying hardware. The limit value must be between
64~102400(Kbits per second) in FE port, 64~1024000(Kbits per second)
in GE port.
(Notice : if the limit value is 0, it means unlimited.)""",
}, # scalar
"companySecurity" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14",
}, # node
"securityTrustedHost" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.1",
}, # node
"trustedHostStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""This object indicates trusted host function is enabled or disabled.
When trusted host function is enabled, D-Link Smart Switches will
only allow hosts which you trust to access and control the switch.
Your local host IP Addresses must be one of the IP Addresses to
avoid disconnection.""",
}, # scalar
"trustedHostTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.1.3",
"status" : "current",
"description" :
"""A table to configure trusted host for in the system.""",
}, # table
"trustedHostEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.1.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"trustedHostIPType",
"trustedHostIpAddr",
"trustedHostIpMask",
],
"description" :
"""Each entry in this table represents rules for particular
trusted host.""",
}, # row
"trustedHostIPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Type of IP interface.""",
}, # column
"trustedHostIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The IP address of host you allow to access to D-Link Smart
Switch.
Your local host IPv4/6 Addresses must be one of the IP Addresses
to avoid disconnection.""",
}, # column
"trustedHostIpMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Used to mask with IPv4/6 address, it allow you set a subnet as a
trusted host entry.""",
}, # column
"trustedHostRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Trusted Host Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy)
are available.
IPv4 Trust Host created example:
1.4.��IPv4 address��.4.��mask��
IPv6 Trust Host created example:
2.16.��IPv6 address��.1.��prefix��""",
}, # column
"securityPortSecurity" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.2",
}, # node
"portSecTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.2.1",
"status" : "current",
"description" :
"""A table to control port security features of the device.""",
}, # table
"portSecEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.2.1.1",
"status" : "current",
"linkage" : [
"portSecIndex",
],
"description" :
"""An entry appears in port security table for each interface
in the system.""",
}, # row
"portSecIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index for which the configuration in this
entry applies.""",
}, # column
"portSecState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable / disable port security admin state for the interface.
A given ports' dynamic MAC address learning will be stopped such
that the current source MAC addresses entered into the MAC address
forwarding table can not be changed once the port security admin
state is enabled.""",
}, # column
"portSecMLA" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "64"
},
],
"range" : {
"min" : "0",
"max" : "64"
},
},
},
"access" : "readwrite",
"description" :
"""Configures interface port security maximum learning address
numbers.
When given ports' admin state is enabled, allows forwarding
table learning address number. The number can be set 0 to 64.
Note: Set value 0 means cannot learn MAC address.""",
}, # column
"securityARPSpoofPrevent" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.3",
}, # node
"aRPSpoofPreventTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.3.1",
"status" : "current",
"description" :
"""A table to control ARP Spoofing prevention for the entire
switch or for each interface in the switch.""",
}, # table
"aRPSpoofPreventEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.3.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"aRPSpoofPreventIpAddr",
],
"description" :
"""An entry appears in this table for each interface
in the system.""",
}, # row
"aRPSpoofPreventIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""Specifies either the Network or Host address from which the switch
can be managed.
An address 0.0.0.0 indicates 'Any Manager'.""",
}, # column
"aRPSpoofPreventMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"default" : "0x000102030405",
"description" :
"""Ethernet Mac Address.""",
}, # column
"aRPSpoofPreventPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Specifies the port numbers through which the authorized manager can
access the switch.
By default the authorized manager is allowed to access the switch
through all the ports.
If a set of ports are configured in the 'PortList', the manager can
access the switch only through the configured ports.""",
}, # column
"aRPSpoofPreventRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.""",
}, # column
"securitySSL" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.5",
}, # node
"sslSecurityHttpStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.5.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object is for enabling or disabling secure HTTP in the system.""",
}, # scalar
"sslCiphers" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.5.2",
}, # node
"sslCipherSuiteList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.5.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"rsa-null-md5" : {
"nodetype" : "namednumber",
"number" : "0"
},
"rsa-null-sha" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rsa-des-sha" : {
"nodetype" : "namednumber",
"number" : "2"
},
"rsa-3des-sha" : {
"nodetype" : "namednumber",
"number" : "3"
},
"dh-rsa-des-sha" : {
"nodetype" : "namednumber",
"number" : "4"
},
"dh-rsa-3des-sha" : {
"nodetype" : "namednumber",
"number" : "5"
},
"rsa-exp1024-des-sha" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""This object is to configure the cipher-suites list.""",
}, # scalar
"securityDhcpServerScreen" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.7",
}, # node
"dhcpServerScreenEnablePortlist" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.7.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""To enable or disable DHCP Server Screening port list.""",
}, # scalar
"dhcpServerScreenTrustedServerTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.7.3",
"status" : "current",
"description" :
"""A table that contains the configuration objects for the
DHCP server screen server list.
An entry appears in this table for each port that may
authenticate access to itself.""",
}, # table
"dhcpServerScreenTrustedServerEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.7.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpServerScreenTrustedServerIndex",
],
"description" :
"""The configuration information for an DHCP server screen server.""",
}, # row
"dhcpServerScreenTrustedServerIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.7.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "5"
},
],
"range" : {
"min" : "1",
"max" : "5"
},
},
},
"access" : "readonly",
"description" :
"""A unique value for DHCP server screen server index.
Its value ranges between 1 and 5.""",
}, # column
"dhcpServerScreenTrustedServerAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.7.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The IP address of the DHCP server screen server
referred to in this table entry.""",
}, # column
"dhcpServerScreenIPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.7.3.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Type of IP interface.""",
}, # column
"dhcpServerScreenTrustedServerStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.7.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row in the
swAuthRadiusServerTable.
An entry in this table is not qualified for activation
until instances of all corresponding columns have been
initialized, either through default values, or through
Set operations. The dhcpServerScreenServerIndex objects
must be explicitly set.""",
}, # column
"securitySSH" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8",
}, # node
"sshSecurityStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object is for enabling or disabling ssh in the system.""",
}, # scalar
"sshMaxAuthFailAttempts" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "2",
"max" : "20"
},
],
"range" : {
"min" : "2",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the max auth fail retry attempt times.""",
}, # scalar
"sshSessionKeyRekeying" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"never" : {
"nodetype" : "namednumber",
"number" : "0"
},
"ten-min" : {
"nodetype" : "namednumber",
"number" : "1"
},
"thirty-min" : {
"nodetype" : "namednumber",
"number" : "2"
},
"sixty-min" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates one SSH session rekey time interval.""",
}, # scalar
"sshMaxSession" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates max SSH session number supported in system.""",
}, # scalar
"sshConnectionTimeout" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "120",
"max" : "600"
},
],
"range" : {
"min" : "120",
"max" : "600"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates SSH connection timeout value.""",
}, # scalar
"sshAuthenMethodPassWordAdmin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The object indicates authen method password is enabled or disabled.""",
}, # scalar
"sshAuthenMethodPubKeyAdmin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The object indicates authen method public-key is enabled or disabled.""",
}, # scalar
"sshAuthenMethodHostKeyAdmin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The object indicates authen method host-key is enabled or disabled.""",
}, # scalar
"sshCipherSuiteList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"tripleDESCBC" : {
"nodetype" : "namednumber",
"number" : "0"
},
},
},
"access" : "readonly",
"description" :
"""This object is to configure the cipher-suites list.""",
}, # scalar
"sshMacSuiteList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"hMAC-SHA1" : {
"nodetype" : "namednumber",
"number" : "0"
},
"hMAC-MD5" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""This object is to configure the MAC-list.""",
}, # scalar
"sshPublKeyRSAAdmin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The object indicates Public key generating algorithm RSA is enabled or disabled.""",
}, # scalar
"sshUserInfoTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.12",
"status" : "current",
"description" :
"""A table to configure SSH user auth in the system.""",
}, # table
"sshUserInfoEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.12.1",
"status" : "current",
"linkage" : [
"sshUserInfoID",
],
"description" :
"""An entry to configure user auth in the system.""",
}, # row
"sshUserInfoID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.12.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The ssh user ID associated with the SSH user Info. entry (ID number of SSH user).""",
}, # column
"sshUserInfoUserName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.12.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readonly",
"description" :
"""The ssh user name associated with the SSH user Info. entry (e.g., `admin, user').""",
}, # column
"sshUserInfoAuth" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.12.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"hostbased" : {
"nodetype" : "namednumber",
"number" : "1"
},
"password" : {
"nodetype" : "namednumber",
"number" : "2"
},
"publickey" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""The object indicates which auth used by the user.""",
}, # column
"sshUserInfoHostName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.12.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The ssh host name associated with the SSH user Info. entry (e.g., `DUT1, DUT2').""",
}, # column
"sshUserInfoHostIp" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.8.12.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""SSH HostBased IP Address of the system.
Set '0.0.0.0' to disable SSH hostBased IP address check.""",
}, # column
"sshUserInfoHostIpv6" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.8.12.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""SSH HostBased IPv6 Address of the system.
Set '0000:0000:0000:0000:0000:0000:0000:0000' or empty string
to disable SSH hostBased IPv6 address check.""",
}, # column
"securityTrafficSeg" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.9",
}, # node
"trafficSegStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.9.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable Status of Traffic Segmention.""",
}, # scalar
"trafficSegTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.9.2",
"status" : "current",
"description" :
"""A Port-channel is created through ifMain table.
After the creation of the port-channel, corresponding logical
interface will be created in the ifMain table.
This Port-channel table is indexed through Key values and allows to
configure link selection policy and the Mac address for
the port-channel. All other objects in this table displays
the details of the port-channel""",
}, # table
"trafficSegEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.9.2.1",
"status" : "current",
"linkage" : [
"trafficSegIfIndex",
],
"description" :
"""There is one entry in this table for each created
port-channel port""",
}, # row
"trafficSegIfIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.9.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The port index of Traffic Segmentation table.""",
}, # column
"trafficSegMemberList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.9.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Forwarding member port list of Traffic Segmentation port index.""",
}, # column
"securityIpMacPortBinding" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10",
}, # node
"impbSettingTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.10.1",
"status" : "current",
"description" :
"""A table to control IP-MAC-Port Binding Setting features of the device.""",
}, # table
"impbSettingEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.1.1",
"status" : "current",
"linkage" : [
"impbPortIndex",
],
"description" :
"""An entry appears in IP-MAC-Port Binding Setting table for each interface
in the system.""",
}, # row
"impbPortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Specifies the port numbers through which the authorized manager can
access the switch.
By default the authorized manager is allowed to access the switch
through all the ports.
If a set of ports are configured in the 'PortList', the manager can
access the switch only through the configured ports.""",
}, # column
"impbPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.10.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Disable / enable IP-MAC-Port Binding admin state for the interface.""",
}, # column
"impbInsIpPacPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.10.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Enable / disable IP-MAC-Port Binding also inspect IP packets state for the interface.""",
}, # column
"impbDHCPPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Disable / enable IP-MAC-Port Binding DHCP snooping state for the interface.""",
}, # column
"impbSmartTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.2",
"status" : "current",
"description" :
"""A table to control Smart IP-MAC-Port Binding features of the device.""",
}, # table
"impbSmartEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.2.1",
"status" : "current",
"linkage" : [
"impbSmartMacAddress",
"impbSmartPort",
"impbSmartIpAddress",
],
"description" :
"""An entry appears in Smart IP-MAC-Port Binding table for each interface
in the system.""",
}, # row
"impbSmartMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the smart IP-MAC-PORT Binding entry.""",
}, # column
"impbSmartPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the smart IP-MAC-PORT Binding entry.""",
}, # column
"impbSmartIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"default" : "0x00000000",
"description" :
"""The IP address associated of the smart IP-MAC-PORT Binding entry.""",
}, # column
"impbSmartVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The VLAN ID of the smart IP-MAC-PORT Binding entry.""",
}, # column
"impbSmartBinding" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.10.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Disable / enable IP-MAC-Port Binding for the interface.""",
}, # column
"impbWhiteListTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.3",
"status" : "current",
"description" :
"""A table to control Manual IP-MAC-Port Binding white list features of the device.""",
}, # table
"impbWhiteListEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"impbWhiteListIpAddress",
"impbWhiteListMacAddress",
],
"description" :
"""An entry appears in Manual IP-MAC-Port Binding white list table for each interface
in the system.""",
}, # row
"impbWhiteListIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"default" : "0x00000000",
"description" :
"""The IP address associated of the Manual IP-MAC-PORT Binding white list entry.""",
}, # column
"impbWhiteListMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the Manual IP-MAC-PORT Binding white list entry.""",
}, # column
"impbWhiteListPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.10.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The port number of the Manual IP-MAC-PORT Binding white list entry.""",
}, # column
"impbWhiteListRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.10.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of a row in impbWhiteListTable. By setting this object, new
entries can be created in impbWhiteListTable and existing entries can be
removed from impbWhiteListTable. It can be used as specified in the SNMP
v2 standard.""",
}, # column
"impbBlackListTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.4",
"status" : "current",
"description" :
"""A table to control IP-MAC-Port Binding black list of the device.""",
}, # table
"impbBlackListEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.4.1",
"status" : "current",
"linkage" : [
"impbBlackListMacAddress",
"impbBlackListVlanId",
"impbBlackListPort",
],
"description" :
"""An entry appears in Manual IP-MAC-Port Binding black list table for each interface
in the system.""",
}, # row
"impbBlackListMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the IP-MAC-PORT Binding black list entry.""",
}, # column
"impbBlackListVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The VLAN ID of the IP-MAC-PORT Binding black list entry.""",
}, # column
"impbBlackListPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the IP-MAC-PORT Binding black list entry.""",
}, # column
"impbBlackListIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.4.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The IP address associated of the IP-MAC-PORT Binding black list entry.""",
}, # column
"impbBlackListStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.4.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"deleted" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""nothing/delete IP-MAC-Port Binding for the interface.""",
}, # column
"impbAutoScanIpAddressFrom" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.10.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""The begin for IP address associated of the IP-MAC-PORT Binding auto scan entry.""",
}, # scalar
"impbAutoScanIpAddressTo" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.14.10.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""The end for IP address associated of the IP-MAC-PORT Binding auto scan entry.""",
}, # scalar
"impbAutoScanStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.14.10.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"scan" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Nothing / scan IP-MAC-Port Binding auto scan for the interface.""",
}, # scalar
"companyACLGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15",
}, # node
"aclProfile" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.1",
}, # node
"aclProfileTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.1.1",
"status" : "current",
"description" :
""" A table to ACL profile .""",
}, # table
"aclProfileEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.1.1.1",
"status" : "current",
"linkage" : [
"aclProfileNo",
],
"description" :
""" Each entry in this table is a ACL profile.
Index to the table is ACL profile ID. """,
}, # row
"aclProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"description" :
"""The ACL Profile ID. The ID 1 to 50 is user-defined ACL,
and the ID more than 50 is reserved for system-defined ACL.
The user only allow to create user-defined ACL ID.
And system-defined ACL is read only.""",
}, # column
"aclProfileName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "20"
},
],
"range" : {
"min" : "0",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""An administratively assigned string, which may be used
to identify the Profile.""",
}, # column
"aclProfileType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"l2" : {
"nodetype" : "namednumber",
"number" : "1"
},
"l3v4" : {
"nodetype" : "namednumber",
"number" : "2"
},
"l3v6" : {
"nodetype" : "namednumber",
"number" : "11"
},
"l3v4Ext" : {
"nodetype" : "namednumber",
"number" : "13"
},
},
},
"access" : "readwrite",
"description" :
"""The ACL Profile type, possible value are
l2 (1) - for MAC-based rule,
l3v4 (2) - for IPv4-based rule,
l3v4Ext (3) - for IPv4-Ext rule,
l3v6 (4) - for IPv6-based rule.
Note that only l2, l3 and l3v6 could be set by user,
other is reserved for system to show information.""",
}, # column
"aclProfileRuleCount" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The number of rules in this profile.""",
}, # column
"aclProfileStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.1.1.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
""" This object indicates the status of this entry, can only be set to
'createAndWait','active' and 'destroy'.
When the value of the entry status is 'createAndWait', it could be
set to 'active' only if the three values of aclProfileType,
aclProfileMask and ProtocolType are not conflicted.""",
}, # column
"aclL2Rule" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.2",
}, # node
"aclL2RuleTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.2.1",
"status" : "current",
"description" :
"""A table to configure L2 filter rules in the system.""",
}, # table
"aclL2RuleEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.2.1.1",
"status" : "current",
"linkage" : [
"aclL2ProfileID",
"aclL2AccessID",
],
"description" :
"""Each entry in this table is a L2 filter rule.
Index to the table is the L2 filter number and Profile ID.""",
}, # row
"aclL2AccessID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""L2 Filter rule ID.""",
}, # column
"aclL2ProfileID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"default" : "1",
"description" :
"""ACL Profile ID which this rule join.""",
}, # column
"aclL2RuleEtherType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "-1"
},
{
"min" : "1501",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The value in the Type/Len field of a frame that will
be matched to trigger this filter. The default value of
this object is '-1', which means the rule don't care this
condition.
The aclL2EtherFrameType should be specified as ether-type.""",
}, # column
"aclL2RuleDstMacAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""Destination MAC address to be matched with the packet. By Default, the
Destination Mac Address will be zero,which means the rule don't care this
condition.""",
}, # column
"aclL2RuleSrcMacAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""Source MAC address to be matched with the packet. By Default, the Source
Mac Address will be zero, which means the rule don't care this condition..
address""",
}, # column
"aclL2RuleVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "4094"
},
],
"range" : {
"min" : "-1",
"max" : "4094"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Vlan Id to be filtered. In case of Provider bridges, This Vlan Id will
be treated as customer Vlan Id. By Default, the value will be '-1',
which means the rule don't care this condition.""",
}, # column
"aclL2Rule1pPriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""802.1p priority to be matched with the packet. By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclL2RuleDstMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""The MAC address Mask work for Destination MAC address.""",
}, # column
"aclL2RuleSrcMacAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.2.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""The MAC address Mask work for Source MAC address.""",
}, # column
"aclL2RuleAction" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.2.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"allow" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "allow",
"description" :
"""Specifies the action to be taken on the packet if the filter
rule matches.
If the action is 'allow', the packet will be forwarded according
to the forwarding rules.
If the action is 'drop', the packet will be discarded.""",
}, # column
"aclL2RulePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.2.1.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Enter a priority value if you want to re-write the 802.1p user
priority of a packet to the value entered in the Priority field,
which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue.By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclL2RuleReplacePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.2.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable this option and manually enter the replacement value used
to re-write the 802.1p user priority value entered in the Priority
field, which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue. Otherwise, a packet
will have its incoming 802.1p user priority re-written to its original
value before being forwarded by the Switch.""",
}, # column
"aclL2RuleStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.2.1.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry. An entry is
created in this table when this object is SET to 'createAndWait'.
The entry in this table is used when the status of this object
is SET 'active'. The entry in this table is not used when this
object is SET 'notInService'. An entry created in this table is
be deleted when this object is SET 'destroy'.""",
}, # column
"aclL3v4Rule" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.3",
}, # node
"aclL3v4RuleTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.3.1",
"status" : "current",
"description" :
""" A table to configure L3 filter rules in the system.""",
}, # table
"aclL3v4RuleEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.3.1.1",
"status" : "current",
"linkage" : [
"aclL3v4RuleProfileNo",
"aclL3v4RuleAccessID",
],
"description" :
""" Each entry in this table is a L3 filter rule.
Index to the table is L3 filter number. """,
}, # row
"aclL3v4RuleAccessID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""L3 Filter rule ID.""",
}, # column
"aclL3v4RuleProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"description" :
"""The Profile ID which this rule join.""",
}, # column
"aclL3v4RuleDstIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""Destination IP address to be matched with the packet.
The default value will be zero, which means the rule
don't care this condition.""",
}, # column
"aclL3v4RuleSrcIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""Source IP address to be matched with the packet.
The default value will be zero, which means the
rule don't care this condition.""",
}, # column
"aclL3v4RuleDstIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.3.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0xffffffff",
"description" :
"""The IP subnet mask for Destination IP address.""",
}, # column
"aclL3v4RuleSrcIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.3.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0xffffffff",
"description" :
"""The IP subnet mask for Source IP address.""",
}, # column
"aclL3v4RuleAction" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.3.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"allow" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "allow",
"description" :
"""Specifies the action to be taken on the packet if the filter
rule matches.""",
}, # column
"aclL3v4RulePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.3.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Enter a priority value if you want to re-write the 802.1p user
priority of a packet to the value entered in the Priority field,
which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue.By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclL3v4RuleReplacePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.3.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable this option and manually enter the replacement value used
to re-write the 802.1p user priority value entered in the Priority
field, which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue. Otherwise, a packet
will have its incoming 802.1p user priority re-written to its original
value before being forwarded by the Switch.""",
}, # column
"aclL3v4RuleStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.3.1.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry. An entry is
created in this table when this object is SET to 'createAndWait'.
The entry in this table is used when the status of this object
is SET 'active'. The entry in this table is not used when this
object is SET 'notInService'. An entry created in this table is
be deleted when this object is SET 'destroy'.""",
}, # column
"aclL3v4ExtRule" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4",
}, # node
"aclL3v4ExtRuleTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1",
"status" : "current",
"description" :
""" A table to configure L3 filter rules in the system.""",
}, # table
"aclL3v4ExtRuleEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.4.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"aclL3v4ExtRuleProfileNo",
"aclL3v4ExtRuleAccessID",
],
"description" :
""" Each entry in this table is a L3 filter rule.
Index to the table is L3 filter number. """,
}, # row
"aclL3v4ExtRuleAccessID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""L3 Filter rule ID.""",
}, # column
"aclL3v4ExtRuleProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.4.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"description" :
"""The Profile ID which this rule join.""",
}, # column
"aclL3v4ExtRuleProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"igmp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tcp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"udp" : {
"nodetype" : "namednumber",
"number" : "17"
},
"protocolid" : {
"nodetype" : "namednumber",
"number" : "24"
},
},
},
"access" : "readwrite",
"default" : "none",
"description" :
""" The type of protocol to be checked against the packet.""",
}, # column
"aclL3v4ExtRuleICMPMessageType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.4.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The message type to be checked against the packet. If the
message type matches with the packet, then the packet will be
dropped / allowed based on the action set in aclL3RuleAction.
The default value is '-1',which means the rule don't care this
condition.
Some ICMP message types are:
echoReply(0),
destinationUnreachable(3),
sourceQuench(4),
redirect(5),
echoRequest(8),
timeExceeded(11),
parameterProblem(12),
timestampRequest(13),
timestampReply(14),
informationRequest(15),
informationReply(16),
addressMaskRequest(17),
addressMaskReply (18),""",
}, # column
"aclL3v4ExtRuleICMPMessageCode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.192.168.3.115.19.1.15.4.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The message code to be checked against the packet. If the
packet matches with the message code, then the packet will
be dropped / allowed based on the action set in aclL3RuleAction.
The default value is '-1', which means the rule don't care this
condition.
Some ICMP message codes are :
networkUnreachable(0),
hostUnreachable(1),
protocolUnreachable(2),
portUnreachable(3),
fragmentNeed(4),
sourceRouteFail(5),
destNetworkUnknown(6),
destHostUnknown(7),
srcHostIsolated(8),
destNetworkAdminProhibited(9),
destHostAdminProhibited(10),
networkUnreachableTOS(11),
hostUnreachableTOS(12),""",
}, # column
"aclL3v4ExtRuleDstIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""Destination IP address to be matched with the packet.
The default value will be zero, which means the rule
don't care this condition.""",
}, # column
"aclL3v4ExtRuleSrcIpAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0x00000000",
"description" :
"""Source IP address to be matched with the packet.
The default value will be zero, which means the
rule don't care this condition.""",
}, # column
"aclL3v4ExtRuleDstIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0xffffffff",
"description" :
"""The IP subnet mask for Destination IP address.""",
}, # column
"aclL3v4ExtRuleSrcIpAddrMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"default" : "0xffffffff",
"description" :
"""The IP subnet mask for Source IP address.""",
}, # column
"aclL3v4ExtRuleTcpUdpDstPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The TCP / UDP destination port. The default value is -1,
which means the rule don't care this condition.""",
}, # column
"aclL3v4ExtRuleTcpUdpSrcPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The TCP / UDP source port. The default value is -1,
which means the rule don't care this condition.""",
}, # column
"aclL3v4ExtRuleTcpUdpDstPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""The TCP / UDP Destination port Mask.""",
}, # column
"aclL3v4ExtRuleTcpUdpSrcPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.4.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""The TCP / UDP Source port Mask.""",
}, # column
"aclL3v4ExtRuleDscp" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.4.1.1.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "63"
},
],
"range" : {
"min" : "-1",
"max" : "63"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The IP Dscp value to be checked against the packet.
A default value is '-1', which means the rule don't
care this condition.
The aclL3RuleTos should be specified as dscp.""",
}, # column
"aclL3v4ExtRuleToS" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.21",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "15"
},
],
"range" : {
"min" : "-1",
"max" : "15"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The ToS value to be checked against the packet.
A default value is '-1', which means the rule don't
care this condition.
The cmAclL3RuleTos should be specified as dscp.""",
}, # column
"aclL3v4ExtRuleIgmpType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.22",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The IGMP Type to be checked against the packet.A default value is '-1',
which means the rule don't care this condition.""",
}, # column
"aclL3v4ExtRuleProtocolId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.26",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specifies the protocol id.
The aclL3RuleProtocol should be specified as protocol-id.""",
}, # column
"aclL3v4ExtRuleAction" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.4.1.1.31",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"allow" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "allow",
"description" :
"""Specifies the action to be taken on the packet if the filter
rule matches.""",
}, # column
"aclL3v4ExtRulePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.4.1.1.33",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Enter a priority value if you want to re-write the 802.1p user
priority of a packet to the value entered in the Priority field,
which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue.By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclL3v4ExtRuleReplacePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.4.1.1.34",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable this option and manually enter the replacement value used
to re-write the 802.1p user priority value entered in the Priority
field, which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue. Otherwise, a packet
will have its incoming 802.1p user priority re-written to its original
value before being forwarded by the Switch.""",
}, # column
"aclL3v4ExtRuleStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.4.1.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry. An entry is
created in this table when this object is SET to 'createAndWait'.
The entry in this table is used when the status of this object
is SET 'active'. The entry in this table is not used when this
object is SET 'notInService'. An entry created in this table is
be deleted when this object is SET 'destroy'.""",
}, # column
"aclL3v6Rule" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5",
}, # node
"aclL3v6RuleTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1",
"status" : "current",
"description" :
""" A table to configure L3 ipv6 filter rules in the system.""",
}, # table
"aclL3v6RuleEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1",
"status" : "current",
"linkage" : [
"aclL3v6RuleProfileNo",
"aclL3v6RuleAccessID",
],
"description" :
""" Each entry in this table is a L3 ipv6 filter rule.
Index to the table is L3 ipv6 filter number. """,
}, # row
"aclL3v6RuleAccessID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""L3 Filter rule ID.""",
}, # column
"aclL3v6RuleProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "50"
},
],
"range" : {
"min" : "1",
"max" : "50"
},
},
},
"access" : "readonly",
"description" :
"""The Profile ID which this rule join.""",
}, # column
"aclL3v6RuleTrafficClass" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The Traffic Class value to be checked against the packet.
A default value is '-1', which means the rule don't
care this condition.""",
}, # column
"aclL3v6RuleProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"tcp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"udp" : {
"nodetype" : "namednumber",
"number" : "17"
},
"protocolid" : {
"nodetype" : "namednumber",
"number" : "24"
},
"icmpv6" : {
"nodetype" : "namednumber",
"number" : "25"
},
},
},
"access" : "readwrite",
"default" : "none",
"description" :
""" The type of protocol to be checked against the packet.""",
}, # column
"aclL3v6RuleProtocolId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specifies the protocol id.
The aclL3v6RuleProtocol should be specified as protocol-id.""",
}, # column
"aclL3v6RuleTcpUdpDstPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The TCP / UDP destination port. The default value is -1,
which means the rule don't care this condition.""",
}, # column
"aclL3v6RuleTcpUdpSrcPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "65535"
},
],
"range" : {
"min" : "-1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""The TCP / UDP source port. The default value is -1,
which means the rule don't care this condition.""",
}, # column
"aclL3v6RuleTcpUdpDstPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""The TCP / UDP Destination port Mask.""",
}, # column
"aclL3v6RuleTcpUdpSrcPortMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""The TCP / UDP Source port Mask.""",
}, # column
"aclL3v6RuleICMPv6MessageType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The message type to be checked against the packet. If the
message type matches with the packet, then the packet will be
dropped / allowed based on the action set in aclL3RuleAction.
The default value is '-1',which means the rule don't care this
condition.
Some ICMP message types are:
echoReply(0),
destinationUnreachable(3),
sourceQuench(4),
redirect(5),
echoRequest(8),
timeExceeded(11),
parameterProblem(12),
timestampRequest(13),
timestampReply(14),
informationRequest(15),
informationReply(16),
addressMaskRequest(17),
addressMaskReply (18),""",
}, # column
"aclL3v6RuleICMPv6MessageCode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "255"
},
],
"range" : {
"min" : "-1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
""" The message code to be checked against the packet. If the
packet matches with the message code, then the packet will
be dropped / allowed based on the action set in aclL3RuleAction.
The default value is '-1', which means the rule don't care this
condition.
Some ICMP message codes are :
networkUnreachable(0),
hostUnreachable(1),
protocolUnreachable(2),
portUnreachable(3),
fragmentNeed(4),
sourceRouteFail(5),
destNetworkUnknown(6),
destHostUnknown(7),
srcHostIsolated(8),
destNetworkAdminProhibited(9),
destHostAdminProhibited(10),
networkUnreachableTOS(11),
hostUnreachableTOS(12),""",
}, # column
"aclL3v6RuleDstIpv6Addr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""Destination IPv6 address to be matched with the packet.""",
}, # column
"aclL3v6RuleSrcIpv6Addr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""Source IPv6 address to be matched with the packet.""",
}, # column
"aclL3v6RuleDstIpv6AddrPrefixLen" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"default" : "0",
"description" :
"""The prefix length for Destination IPv6 address.""",
}, # column
"aclL3v6RuleSrcIpv6AddrPrefixLen" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"default" : "0",
"description" :
"""The prefix length for Source IPv6 address.""",
}, # column
"aclL3v6RuleAction" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.90",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"allow" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "allow",
"description" :
"""Specifies the action to be taken on the packet if the filter
rule matches.""",
}, # column
"aclL3v6RulePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.92",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "-1",
"max" : "7"
},
],
"range" : {
"min" : "-1",
"max" : "7"
},
},
},
"access" : "readwrite",
"default" : "-1",
"description" :
"""Enter a priority value if you want to re-write the 802.1p user
priority of a packet to the value entered in the Priority field,
which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue.By Default, the value
will be '-1', which means the rule don't care this condition.""",
}, # column
"aclL3v6RuleReplacePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.5.1.1.93",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable this option and manually enter the replacement value used
to re-write the 802.1p user priority value entered in the Priority
field, which meets the criteria specified previously in this command,
before forwarding it on to the specified CoS queue. Otherwise, a packet
will have its incoming 802.1p user priority re-written to its original
value before being forwarded by the Switch.""",
}, # column
"aclL3v6RuleStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.5.1.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry. An entry is
created in this table when this object is SET to 'createAndWait'.
The entry in this table is used when the status of this object
is SET 'active'. The entry in this table is not used when this
object is SET 'notInService'. An entry created in this table is
be deleted when this object is SET 'destroy'.""",
}, # column
"aclPortBindGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.6",
}, # node
"aclPortGroupTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.6.1",
"status" : "current",
"description" :
"""A table to control the port group binding information of L2 Group,
L3v4 Group, and L3v6 Group""",
}, # table
"aclPortGroupEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.6.1.1",
"status" : "current",
"linkage" : [
"aclPortIndex",
],
"description" :
"""An entry appears in this table for each interface in the system.
Index to the table is the interface index of the port.""",
}, # row
"aclPortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.6.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""Interface index of the port for the configuration
in this entry applies.""",
}, # column
"aclPortL2ProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.6.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "50"
},
],
"range" : {
"min" : "0",
"max" : "50"
},
},
},
"access" : "readwrite",
"description" :
"""The L2 Profile ID which this port bind.
zero means not configured.""",
}, # column
"aclPortL3v4ProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.6.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "50"
},
],
"range" : {
"min" : "0",
"max" : "50"
},
},
},
"access" : "readwrite",
"description" :
"""The L3v4 Profile ID which this port bind.
zero means not configured.""",
}, # column
"aclPortL3v6ProfileNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.6.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "50"
},
],
"range" : {
"min" : "0",
"max" : "50"
},
},
},
"access" : "readwrite",
"description" :
"""The L3v6 Profile ID which this port bind.
zero means not configured.""",
}, # column
"aclHWResourceStatus" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.8",
}, # node
"aclHWResourceStatusTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.8.1",
"status" : "current",
"description" :
"""A table to display HW Resource Status.""",
}, # table
"aclHWResourceStatusEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.15.8.1.1",
"status" : "current",
"linkage" : [
"aclHWProfileIndex",
],
"description" :
"""An entry appears in this table for each interface in the system.
Index to the table is the HW profile index of the ACL.""",
}, # row
"aclHWProfileIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.8.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "6"
},
],
"range" : {
"min" : "1",
"max" : "6"
},
},
},
"access" : "readonly",
"description" :
"""HW profile index of the ACL for the configuration
in this entry applies.""",
}, # column
"aclAccessListNo" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.8.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The profile name in this HW profile index.""",
}, # column
"aclResourceEntryCount" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.15.8.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readonly",
"description" :
"""The number of entries in this HW profile index.""",
}, # column
"companySyslog" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.16",
}, # node
"syslogGeneralGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2",
}, # node
"syslogState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object is for enabling or disabling syslog alert features in
the system.
System Logs record and manage events, as well as report errors and
informational messages.""",
}, # scalar
"syslogTimeStampOption" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enable",
"description" :
"""This object is for enabling or disabling timestamp option.
When enabled, the messages (log and email alert messages) will
hold the time stamp information.
When disabled, the time stamp information will not be carried with
the messages sent to the log and mail servers.""",
}, # scalar
"syslogSrvSeverity" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"warning" : {
"nodetype" : "namednumber",
"number" : "4"
},
"info" : {
"nodetype" : "namednumber",
"number" : "6"
},
"all" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""Specifies the log level option to be set for a specific module.""",
}, # scalar
"syslogSrvFacility" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"local0" : {
"nodetype" : "namednumber",
"number" : "128"
},
"local1" : {
"nodetype" : "namednumber",
"number" : "136"
},
"local2" : {
"nodetype" : "namednumber",
"number" : "144"
},
"local3" : {
"nodetype" : "namednumber",
"number" : "152"
},
"local4" : {
"nodetype" : "namednumber",
"number" : "160"
},
"local5" : {
"nodetype" : "namednumber",
"number" : "168"
},
"local6" : {
"nodetype" : "namednumber",
"number" : "176"
},
"local7" : {
"nodetype" : "namednumber",
"number" : "184"
},
},
},
"access" : "readwrite",
"description" :
"""The Syslog standard facilities.
The facility to be used when sending Syslog messages to this server.""",
}, # scalar
"syslogSrvTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.5",
"status" : "current",
"description" :
"""A table containing entries of priority,server address type, server address,
port through which it can send and tranport type.""",
}, # table
"syslogSrvEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.5.1",
"create" : "true",
"status" : "current",
"linkage" : [
"syslogSrvIPType",
"syslogSrvIP",
],
"description" :
"""A table containing index as priority , server address type and server address.""",
}, # row
"syslogSrvIPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.5.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ipv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ipv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Specifies the Address type of server.Address type shall be ipv4 or ipv6.""",
}, # column
"syslogSrvIP" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""Specifies the ServerIP to which the syslog shall be forwarded.""",
}, # column
"syslogSrvPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.5.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "514",
"description" :
"""Specifies the Port through which it can send the syslog message.
By default the the port is 514""",
}, # column
"syslogInterfaceName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.16.2.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the syslogSrvIP is linklocal address.""",
}, # column
"syslogSrvRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.16.2.5.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The Status of the Server Entry.""",
}, # column
"companyLBD" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.17",
}, # node
"sysLBDStateEnable" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.17.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Loopback detection function.
The Loopback Detection function is used to detect the loop created
by a specific port while Spanning Tree Protocol (STP) is not
enabled in the network, especially when the down links are hubs
or unmanaged switchs.The Switch will automatically shutdown the
port and sends a log to the administrator.""",
}, # scalar
"sysLBDMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.17.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"port" : {
"nodetype" : "namednumber",
"number" : "1"
},
"vlan" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "port",
"description" :
"""Loopback detection function mode.""",
}, # scalar
"sysLBDInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.17.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "32767"
},
],
"range" : {
"min" : "1",
"max" : "32767"
},
},
},
"access" : "readwrite",
"default" : "2",
"description" :
"""Set a Loop detection Interval between 1 and 32767 seconds.
The default is 2 seconds.
This time interval to be used at counting time seconds to
resend the CTP packet automatically.""",
}, # scalar
"sysLBDRecoverTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.17.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "0"
},
{
"min" : "60",
"max" : "1000000"
},
],
"range" : {
"min" : "0",
"max" : "1000000"
},
},
},
"access" : "readwrite",
"default" : "60",
"description" :
"""This time interval to be used at counting time seconds to
recover the disabled port automatically.
The Loop Detection Recover Time can be set at 0 seconds,
or 60 to 1000000 seconds.
Entering 0 will disable the Loop Detection Recover Time.
The default is 60 seconds.""",
}, # scalar
"sysLBDCtrlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.17.5",
"status" : "current",
"description" :
"""A table to control Loopback detection features either for
the entire switch or for each interface in the switch.""",
}, # table
"sysLBDCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.17.5.1",
"status" : "current",
"linkage" : [
"sysLBDCtrlIndex",
],
"description" :
"""An entry appears in this table for each interface
in the system.""",
}, # row
"sysLBDCtrlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.17.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index of the port for which the configuration
in this entry applies.""",
}, # column
"sysLBDPortStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.17.5.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Provides control to per port enable or disable the loopback detection
function. Default is disabled.""",
}, # column
"sysLBDPortLoopStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.17.5.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"normal" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The loop status for this port.""",
}, # column
"sysLBDVlanLoopTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.17.6",
"status" : "current",
"description" :
"""A table to display Loopback detection features by vlan
mode .""",
}, # table
"sysLBDVlanLoopEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.17.6.1",
"status" : "current",
"linkage" : [
"sysLBDVlanLoopIndex",
],
"description" :
"""An entry appears in this table for each interface
in the system.""",
}, # row
"sysLBDVlanLoopIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.17.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Display port lists loop status by vlan.""",
}, # column
"sysLBDVlanLoopPorts" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.17.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""Display port lists loop status by vlan.""",
}, # column
"swLoopDetectEnabledVlanList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.17.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object indicates the VLANs that enabled LBD.
Note:
For the LBD enabled VLAN specification,
the value should be separated by ',' or '-'.
Such as: 1,4,7 or 1,4,7-9 .""",
}, # scalar
"companyMirror" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.18",
}, # node
"sysMirrorStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.18.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Port Mirroring function.
Default is disabled.
Port Mirroring is a method of monitoring network traffic that
forwards a copy of each incoming and/or outgoing packet from one
port of the Switch to another port where the packet can be studied.""",
}, # scalar
"sysMirrorTargetPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.18.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specifies the port to which the mirrored traffic in the system
is to be copied.""",
}, # scalar
"sysMirrorCtrlIngressMirroring" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.18.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Provides control to enable or disable mirroring of ingress
traffic over this interface to the mirrored-to port.""",
}, # scalar
"sysMirrorCtrlEgressMirroring" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.18.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Provides control to enable or disable mirroring of egress
traffic over this interface to the mirrored-to port.""",
}, # scalar
"companySNTPSetting" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20",
}, # node
"sysSNTPServerTable" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17",
}, # node
"sysSNTPTimeSeconds" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""This object is for setting the system time in seconds
from Epoch (00:00:00 UTC, January 1, 2009). Notice :
input value must larger than 1230768000 (00:00:00 UTC,
January 1, 2009) and smaller than 2145916799 (23:59:59
UTC, December 31, 2037).""",
}, # scalar
"sysSNTPFirstServer" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""SNTP First Server's IPv6 Address""",
}, # scalar
"sysSNTPFirstType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""SNTP First Server's IPv6 Address type.""",
}, # scalar
"sysSNTPFirstInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the sysSNTPFirstServer is linklocal address.""",
}, # scalar
"sysSNTPSecondServer" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""SNTP Second Server's IPv6 Address""",
}, # scalar
"sysSNTPSecondType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""SNTP First Server's IPv6 Address type.""",
}, # scalar
"sysSNTPSecondInterfaceName" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the sysSNTPSecondServer is linklocal address.""",
}, # scalar
"sysSNTPPollInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""SNTP Poll Interval In Seconds (30-99999) """,
}, # scalar
"sysSNTPState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sntp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"local" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable SNTP function in the system.""",
}, # scalar
"sysSNTPDSTOffset" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"offset30min" : {
"nodetype" : "namednumber",
"number" : "30"
},
"offset60min" : {
"nodetype" : "namednumber",
"number" : "60"
},
"offset90min" : {
"nodetype" : "namednumber",
"number" : "90"
},
"offset120min" : {
"nodetype" : "namednumber",
"number" : "120"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for Daylight Saving Time Offset
In (30/60/90/120) Minutes.""",
}, # scalar
"sysSNTPGMTMinutes" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specifies the Time Zone Offset from GMT in +/- Minutes. (+780 ~ -720)""",
}, # scalar
"sysSNTPDSTStartMon" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start month of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTStartDay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start day of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTStartHour" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start hour of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTStartMin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The start minute of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTEndMon" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.16",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end month of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTEndDay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end day of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTEndHour" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.20.17.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end hour of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTEndMin" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.19",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The end minute of Daylight Saving Time.""",
}, # scalar
"sysSNTPDSTState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.20.17.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"annual" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for Annual(1) or Disabled(2) DST state in the system.""",
}, # scalar
"companyVoiceVlan" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21",
}, # node
"voicevlanSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.1",
}, # node
"voiceVlanMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Voice VLAN is a feature that allows you to automatically place
the voice traffic from IP phone to an assigned VLAN to enhance
the VoIP service.
This object is for enabling or disabling Voice Vlan function
in the system.
If the Vlan mode is in Asymmetric VLAN mode, Voice VLAN can not
be enabled.""",
}, # scalar
"voiceVlanId" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The ID of VLAN that you want the voice traffic to be in.
It must be a exist vlan id.""",
}, # scalar
"voiceVlanTimeout" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""A period of time in hour to remove a port from voice VLAN
if the port is an automatic VLAN member.
The Timeout range is 1~120 hours.
Default aging time is 1 hour.""",
}, # scalar
"voiceVlanPriority" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""The 802.1p priority levels of the traffic in the Voice VLAN.""",
}, # scalar
"voicevlanPortControlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.1.6",
"status" : "current",
"description" :
"""A table that contains Voice Vlan Port Control
configuration information.""",
}, # table
"voicevlanPortControlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.1.6.1",
"status" : "current",
"linkage" : [
"voicevlanPortControlIndex",
],
"description" :
"""A list of Voice Vlan Control configuration
parameters for each Port on this device.""",
}, # row
"voicevlanPortControlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.1.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The voice vlan port index.""",
}, # column
"voicevlanPortAutoDetection" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.1.6.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling Voice Vlan Auto
Detection in the port.
If the auto detection is enable, switch will add this port
to the voice VLAN automatically if it detects the device OUI
matches the Telephony OUI.
If the port is a static member of voice vlan or a LA member,
it can not enable voice vlan auto detection.""",
}, # column
"voicevlanPortManuTagMode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.1.6.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"tag" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untag" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""User assign per port tag/untag mode.""",
}, # column
"voicevlanPortCurrentTagMode" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.1.6.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"tag" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untag" : {
"nodetype" : "namednumber",
"number" : "2"
},
"none" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Per port current tag/untag mode.""",
}, # column
"voicevlanPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.1.6.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"manual" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
"none" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates Voice vlan state to this Port.
manual - this port is a static member of voice vlan.
dynamic - this port is a dynamic member of voice vlan.
none - this port is not a member of voice vlan.""",
}, # column
"voicevlanOUI" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.2",
}, # node
"voicevlanOUITable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.2.1",
"status" : "current",
"description" :
"""A voice vlan OUI entry containing the description and mac.""",
}, # table
"voicevlanOUIEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.2.1.1",
"status" : "current",
"linkage" : [
"voicevlanOUITelephonyOUI",
],
"description" :
"""A voice vlan OUI entry containing the description and mac.""",
}, # row
"voicevlanOUITelephonyOUI" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""An Organizationally Unique Identifier (OUI) is a 24-bit number
that is purchased from the IEEE Registration Authority. This identifier
uniquely identifies a vendor, manufacturer, or other organization.
This object indicates the voice traffic's OUI that user created.""",
}, # column
"voicevlanOUIDescription" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""The Description for the OUI.""",
}, # column
"voicevlanOUIMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""Voice vlan OUI Mask. Always be FF:FF:FF:00:00:00.""",
}, # column
"voicevlanOUIStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
To create a new entry, you must set the voicevlanOUIStatus
to be CreateAndGo, then this entry will turn to be Active.""",
}, # column
"voicevlanDevice" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.3",
}, # node
"voicevlanDeviceTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.3.1",
"status" : "current",
"description" :
"""A voice vlan Device entry containing the description and mac.""",
}, # table
"voicevlanDeviceEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.3.1.1",
"status" : "current",
"linkage" : [
"voicevlanDeviceIndexMac",
],
"description" :
"""A voice vlan Device entry containing the description and mac.""",
}, # row
"voicevlanDeviceIndexMac" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""An Mac Address is a 24-bit number that is purchased from the
IEEE Registration Authority. This identifier uniquely identifies
a vendor, manufacturer, or other organization. This object
indicates the voice traffic's Mac that voice device created.""",
}, # column
"voicevlanDevicePort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port is learning by voice device.""",
}, # column
"voicevlanDevicePriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.21.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The priority value for voice device.""",
}, # column
"voicevlanDeviceTagType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"tag" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untag" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The tag type for voice device.""",
}, # column
"voicevlanDeviceStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.21.3.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"active" : {
"nodetype" : "namednumber",
"number" : "1"
},
"destroy" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
You can delete this object.""",
}, # column
"companyPoEGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22",
}, # node
"sysPoEPortSettingTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1",
"status" : "current",
"description" :
"""A table of objects that display and control the power
characteristics of power Ethernet ports on a Power Source
Entity (PSE) device.""",
}, # table
"sysPoEPortSettingEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.22.1.1",
"status" : "current",
"linkage" : [
"poeportgroup",
"poeportid",
],
"description" :
"""A set of objects that display and control the power
characteristics of a power Ethernet PSE port.""",
}, # row
"poeportgroup" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This object is the PoE port group index.""",
}, # column
"poeportid" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This object is the PoE Port ID Index.""",
}, # column
"poePortSettingState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.22.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable PoE function on this port.""",
}, # column
"poePortTimeBaseSchduleID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.22.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "24"
},
],
"range" : {
"min" : "0",
"max" : "24"
},
},
},
"access" : "readwrite",
"description" :
"""Enable timebase schedule function and join with this schedule ID on this port.
Setting 0 means disable timebase schedule function on this port.""",
}, # column
"poePortSettingPriority" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"low" : {
"nodetype" : "namednumber",
"number" : "1"
},
"normal" : {
"nodetype" : "namednumber",
"number" : "2"
},
"high" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Configures PoE port priority.""",
}, # column
"poePortSettingPowerLimit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"class1" : {
"nodetype" : "namednumber",
"number" : "2"
},
"class2" : {
"nodetype" : "namednumber",
"number" : "3"
},
"class3" : {
"nodetype" : "namednumber",
"number" : "4"
},
"class4" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Configures PoE port power limit.""",
}, # column
"poePortSettingUserDefineState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.22.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable manual configuring max power on this port.""",
}, # column
"poePortSettingUserDefine" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.22.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object manually configures max power value(e.g., `1, 2.2, 21.8') on this port.
The per-port power limit must be a multiple of 0.2.
If the user define state is not enabled,
the value is the zero-length string.""",
}, # column
"poePortPower" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port power(W)(e.g., `0.0, 2.3, 21.8').
If the PoE port tatus is POWER OFF, the value is 0.0.""",
}, # column
"poePortVoltage" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.22.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port voltage(V)(e.g., `0.0, 2.3, 21.8').
If the PoE port tatus is POWER OFF, the value is 0.0.""",
}, # column
"poePortCurrent" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.22.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "5"
},
],
"range" : {
"min" : "1",
"max" : "5"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port current(mA)(e.g., `0.0, 22.3, 120.8').
If the PoE port tatus is POWER OFF, the value is 0.0.""",
}, # column
"poePortClassification" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.22.1.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port power classification(e.g., `NA, Class 2, 20.2(User Defined)').
If the PoE port tatus is POWER OFF, the value is NA.""",
}, # column
"poePortDelayPowerDetect" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable Delay Power Detect function on this port.""",
}, # column
"poePortLegacyPDDetect" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable Legacy PD Detect function on this port.""",
}, # column
"poePortStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.1.1.99",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE port powering status(e.g., `POWER OFF, POWER ON').""",
}, # column
"poeSystemSettingPowerThreshold" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""This object configures available system power budget (e.g., `50.2').""",
}, # scalar
"poeSystemSettingDisconnectMethod" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"denyNextPort" : {
"nodetype" : "namednumber",
"number" : "1"
},
"denyLowPriorityPort" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object configures PoE power denied rule while system
entering in guard band mode.""",
}, # scalar
"pethPsePortPowerBudget" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE system power budget (e.g., `50.2').""",
}, # scalar
"pethPsePortPowerConsumption" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE total power consumption (e.g., `3.3, 15.4').""",
}, # scalar
"pethPsePortPowerRemainder" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays PoE power remainder (e.g., `60.2').""",
}, # scalar
"pethPsePortPowerRatioOfSystemPower" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "4"
},
],
"range" : {
"min" : "1",
"max" : "4"
},
},
},
"access" : "readonly",
"description" :
"""This object displays power ratio of system power in unit of percentage(e.g., `4.2').""",
}, # scalar
"poeLedMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.22.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Port led mode indicator. 1: Link/Act/Speed mode; 2: PoE mode.""",
}, # scalar
"companyAuthGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.192.168.3.115.19.1.23",
}, # node
"swAuthenCtrl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.1",
}, # node
"swAuthStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable Static 802.1x.""",
}, # scalar
"authProtocol" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"authProtocolRadiusEap" : {
"nodetype" : "namednumber",
"number" : "1"
},
"authProtocolLocal" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "authProtocolRadiusEap",
"description" :
"""The authentication method used to authenticate users.""",
}, # scalar
"swAuthCtrlPktFwdMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable 802.1x packet forward while 802.1x module is disabled.""",
}, # scalar
"swAuthPortAccessCtrl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2",
}, # node
"swAuthPortAccessControlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2.1",
"status" : "current",
"description" :
"""A table that contains the configuration objects for the
Authenticator PAE associated with each port.
An entry appears in this table for each port that may
authenticate access to itself.""",
}, # table
"swAuthPortAccessControlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2.1.1",
"status" : "current",
"linkage" : [
"swAuthAuthConfigPortNumber",
],
"description" :
"""The configuration information for an Authenticator Port.""",
}, # row
"swAuthAuthConfigPortNumber" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""A unique value for each port that correlates to port index.
Its value ranges between 1 and the value of port number.""",
}, # column
"swAuthAuthQuietPeriod" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "60",
"description" :
"""The value, in seconds, of the quietPeriod constant
currently in use by the Authenticator PAE state
machine.""",
"reference>" :
"""9.4.1, quietPeriod.""",
}, # column
"swAuthAuthSuppTimeout" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "12",
"description" :
"""The value, in seconds, of the suppTimeout constant
currently in use by the Backend Authentication state
machine.""",
"reference>" :
"""9.4.1, suppTimeout.""",
}, # column
"swAuthAuthServerTimeout" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "16",
"description" :
"""The value, in seconds, of the serverTimeout constant
currently in use by the Backend Authentication state
machine.""",
"reference>" :
"""9.4.1, serverTimeout.""",
}, # column
"swAuthAuthMaxReq" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"default" : "2",
"description" :
"""The value of the maxReq constant currently in use by
the Backend Authentication state machine.""",
"reference>" :
"""9.4.1, maxReq.""",
}, # column
"swAuthAuthTxPeriod" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "24",
"description" :
"""The value, in seconds, of the txPeriod constant
currently in use by the Authenticator PAE state
machine.""",
"reference>" :
"""9.4.1, txPeriod.""",
}, # column
"swAuthAuthReAuthPeriod" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "3600",
"description" :
"""The value, in seconds, of the reAuthPeriod constant
currently in use by the Reauthentication Timer state
machine.""",
"reference>" :
"""9.4.1, reAuthPerio.""",
}, # column
"swAuthAuthReAuthentication" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The enable/disable control used by the Reauthentication
Timer state machine (8.5.5.1).""",
"reference>" :
"""9.4.1, reAuthEnable.""",
}, # column
"swAuthAuthConfigPortControl" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"forceUnauthorized" : {
"nodetype" : "namednumber",
"number" : "1"
},
"auto" : {
"nodetype" : "namednumber",
"number" : "2"
},
"forceAuthorized" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""The current value of the controlled Port
control parameter for the Port.""",
"reference>" :
"""9.4.1, AuthControlledPortControl.""",
}, # column
"swAuthAuthCapability" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"authenticator" : {
"nodetype" : "namednumber",
"number" : "1"
},
"none" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The current value of the controlled Port
control parameter for the Port.""",
"reference>" :
"""AuthCapability.""",
}, # column
"swAuthAuthDirection" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.2.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"both" : {
"nodetype" : "namednumber",
"number" : "0"
},
"in" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""The current value of the controlled Port
control parameter for the Port.""",
"reference>" :
"""AuthDirection.""",
}, # column
"swAuthUser" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.3",
}, # node
"swAuthUserTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.3.1",
"status" : "current",
"description" :
"""A table that contains the configuration objects for the
Authenticator PAE associated with each port.
An entry appears in this table for each port that may
authenticate access to itself.""",
}, # table
"swAuthUserEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.3.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"swAuthUserName",
],
"description" :
"""The configuration information for an Authenticator Port.""",
}, # row
"swAuthUserName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readonly",
"description" :
"""The unique index value of a row in this table.
This object is used to set 802.1X Local user name,
The following characters are allowed to input:
semicolon, question mark, space, and double quotation mark.""",
}, # column
"swAuthUserPassword" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.23.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used to set 802.1X Local user Password,
The following characters are allowed to input:
semicolon, question mark, space, and double quotation mark.""",
}, # column
"swAuthUserStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row in the swAuthUserTable.
An entry in this table is not qualified for activation
until instances of all corresponding columns have been
initialized, either through default values, or through
Set operations. The swAuthUserName objects must be
explicitly set.""",
}, # column
"swAuthRadiusServer" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "172.16.58.3.4.1.171.10.75.19.1.23.4",
}, # node
"swAuthRadiusServerTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "172.16.58.3.4.1.171.10.75.19.1.23.4.2",
"status" : "current",
"description" :
"""A table that contains the configuration objects for the
Authenticator PAE associated with each port.
An entry appears in this table for each port that may
authenticate access to itself.""",
}, # table
"swAuthRadiusServerEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"swAuthRadiusServerIndex",
],
"description" :
"""The configuration information for an Authenticator Port.""",
}, # row
"swAuthRadiusServerIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "3"
},
],
"range" : {
"min" : "1",
"max" : "3"
},
},
},
"access" : "readonly",
"description" :
"""A unique value for Authentication RADIUS Server index.
Its value ranges between 1 and 3.""",
}, # column
"swAuthRadiusIPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "iPv4",
"description" :
"""The IP address of the RADIUS server IP type
referred to in this table entry.""",
}, # column
"swAuthRadiusServerAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readwrite",
"description" :
"""The IP address of the RADIUS server
referred to in this table entry.""",
}, # column
"swAuthRadiusServerInterfaceName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the swAuthRadiusServerAddress is linklocal address.""",
}, # column
"swAuthRadiusServerAuthenticationPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "1812",
"description" :
"""The value is for setting UDP Port.""",
}, # column
"swAuthRadiusServerAccountingPort" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "1813",
"description" :
"""The value is for setting UDP Port.""",
}, # column
"swAuthRadiusServerTimeout" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "255"
},
],
"range" : {
"min" : "1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "5",
"description" :
"""The value is for setting UDP Port.""",
}, # column
"swAuthRadiusServerRetransmit" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "255"
},
],
"range" : {
"min" : "1",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "2",
"description" :
"""The value is for setting UDP Port.""",
}, # column
"swAuthRadiusServerKey" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used to set 802.1X Radius Server Key,
The following characters are allowed to input:
semicolon, question mark, space, and double quotation mark.""",
}, # column
"swAuthRadiusServerStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.23.4.2.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row in the
swAuthRadiusServerTable.
An entry in this table is not qualified for activation
until instances of all corresponding columns have been
initialized, either through default values, or through
Set operations. The swAuthRadiusServerIndex objects
must be explicitly set.""",
}, # column
"companyLLDPSetting" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24",
}, # node
"dlinklldpState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""This object is used for enabling or disabling LLDP in the system.""",
}, # scalar
"dlinklldpMsgHoldMultiplier" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "2",
"max" : "10"
},
],
"range" : {
"min" : "2",
"max" : "10"
},
},
},
"access" : "readwrite",
"description" :
"""The time-to-live value expressed as a multiple of the
lldpMessageTxInterval object.The actual time-to-live value
used in LLDP frames, transmitted on behalf of this LLDP agent,
can be expressed by the following formula: TTL = min(65535,
(lldpMessageTxInterval * lldpMessageTxHoldMultiplier))""",
}, # scalar
"dlinklldpMsgTxInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "5",
"max" : "32768"
},
],
"range" : {
"min" : "5",
"max" : "32768"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used for LLDP packet update frequency.
The timer in units of seconds.""",
}, # scalar
"dlinklldpReinitDelay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used for LLDP Reinitialization Delay.
The timer in units of seconds.""",
}, # scalar
"dlinklldpTxDelay" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "8192"
},
],
"range" : {
"min" : "1",
"max" : "8192"
},
},
},
"access" : "readwrite",
"description" :
"""The lldpTxDelay indicates the delay (in units
of seconds) between successive LLDP frame transmissions
initiated by value/status changes in the LLDP local systems
MIB. The recommended value for the lldpTxDelay is set by the
following formula:
1 <= lldpTxDelay <= (0.25 * lldpMessageTxInterval).""",
}, # scalar
"dlinklldpConfigManAddrTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.7",
"status" : "current",
"description" :
"""The table that controls selection of LLDP management address
TLV instances to be transmitted on individual ports.""",
}, # table
"dlinklldpConfigManAddrEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.7.1",
"status" : "current",
"linkage" : [
"dlinklldpLocManAddrSubtype",
"dlinklldpLocManAddr",
],
"description" :
"""LLDP configuration information that specifies the set
of ports (represented as a PortList) on which the local
system management address instance will be transmitted.
This configuration object augments the lldpLocManAddrEntry,
therefore it is only present along with the management
address instance contained in the associated
lldpLocManAddrEntry entry.
Each active lldpConfigManAddrEntry must be restored from
non-volatile and re-created (along with the corresponding
lldpLocManAddrEntry) after a re-initialization of the
management system.""",
}, # row
"dlinklldpLocManAddrSubtype" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.7.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
},
"access" : "readonly",
"description" :
"""The type of management address identifier encoding used in
the associated 'lldpLocManagmentAddr' object.""",
"reference>" :
"""IEEE 802.1AB-2005 9.5.9.3""",
}, # column
"dlinklldpLocManAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.7.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "LldpManAddress"},
},
"access" : "readonly",
"description" :
"""The string value used to identify the management address
component associated with the local system. The purpose of
this address is to contact the management entity.""",
"reference>" :
"""IEEE 802.1AB-2005 9.5.9.4""",
}, # column
"dlinklldpConfigManAddrPortsTxEnable" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.7.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"default" : "",
"description" :
"""A set of ports that are identified by a PortList, in which
each port is represented as a bit. The corresponding local
system management address instance will be transmitted on the
member ports of the lldpManAddrPortsTxEnable.
The default value for lldpConfigManAddrPortsTxEnable object
is empty binary string, which means no ports are specified
for advertising indicated management address instance.""",
"reference>" :
"""IEEE 802.1AB-2005 10.2.1.1""",
}, # column
"lldpMEDPortControlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.8",
"status" : "current",
"description" :
"""A table that contains LLDP-MED control,
A row appears in this table for each physical port.""",
}, # table
"lldpMEDPortControlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.8.1",
"status" : "current",
"linkage" : [
"lldpMEDPortControlIndex",
],
"description" :
"""A list of LLDP-MED for PoE Port Settings
parameters for each Port on this device.""",
}, # row
"lldpMEDPortControlIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.8.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The Control Index of the LLDP-MED Power PSE TLV port.""",
}, # column
"lldpMEDPortState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.8.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling LLDP-MED
Power PSE TLV Setting in the system.""",
}, # column
"dlinklldpAntiRoguePortControl" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""When LLDP anti-rogue port control is enabled , this identifies the
port control status of each port.
The default setting is disable.""",
}, # scalar
"dlinklldpRemOrgDefInfoTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.10",
"status" : "current",
"description" :
"""This table contains one or more rows per physical network
connection which advertises the organizationally defined
information.
Note that this table contains one or more rows of
organizationally defined information that is not recognized
by the local agent.
If the local system is capable of recognizing any
organizationally defined information, appropriate extension
MIBs from the organization should be used for information
retrieval.""",
}, # table
"dlinklldpRemOrgDefInfoEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.10.1",
"status" : "current",
"linkage" : [
"dlinklldpAntiRoguePortIndex",
],
"description" :
"""Information about the unrecognized organizationally
defined information advertised by the remote system.
The lldpAntiRoguePortIndex is index to this table.""",
}, # row
"dlinklldpAntiRoguePortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.10.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
},
"access" : "readonly",
"description" :
"""The Control Index of the LLDP Anti-Rogue port.""",
}, # column
"dlinklldpAntiRoguePortStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.10.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"authenticationDisabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"authenticationEnabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"authenticationSuccessful" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The value represents each port's authentication status.
0: Authentication disabled.
1: Authentication enabled but not passed.
2: Authentication successful.""",
}, # column
"dlinklldpRemOrgDefInfoOUI" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.24.10.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "3",
"max" : "3"
},
],
"range" : {
"min" : "3",
"max" : "3"
},
},
},
"access" : "readonly",
"description" :
"""The Organizationally Unique Identifier (OUI), as defined
in IEEE std 802-2001, is a 24 bit (three octets) globally
unique assigned number referenced by various standards,
of the information received from the remote system.""",
"reference>" :
"""IEEE 802.1AB-2005 9.5.1.3""",
}, # column
"dlinklldpAntiRoguePassword" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.24.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""This object is used for Anti-Rogue Password setting.
The default LLDP Anti-Rogue password is '<PASSWORD>'.""",
}, # scalar
"companySNMPV3" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25",
}, # node
"snmpGlobalState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling SNMP Community function.""",
}, # scalar
"snmpV3User" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.2",
}, # node
"snmpV3UserTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.2.1",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3UserEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3UserName",
"snmpV3UserVersion",
],
"description" :
"""""",
}, # row
"snmpV3UserName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""A human readable string representing the name of
the user.
This is the (User-based Security) Model dependent
security ID.""",
}, # column
"snmpV3UserVersion" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""A human readable string representing the name of
the user.
This is the (User-based Security) Model dependent
security ID.""",
}, # column
"snmpV3UserGroupName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The name of the group to which this entry (e.g., the
combination of securityModel and securityName)
belongs.
This groupName is used as index into the
vacmAccessTable to select an access control policy.
However, a value in this table does not imply that an
instance with the value exists in table vacmAccesTable.""",
}, # column
"snmpV3UserAuthProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"md5" : {
"nodetype" : "namednumber",
"number" : "2"
},
"sha" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""An indication of whether messages sent on behalf of
this user to/from the SNMP engine identified by
usmUserEngineID, can be authenticated, and if so,
the type of authentication protocol which is used.
An instance of this object is created concurrently
with the creation of any other object instance for
the same user (i.e., as part of the processing of
the set operation which creates the first object
instance in the same conceptual row).
If an initial set operation (i.e. at row creation time)
tries to set a value for an unknown or unsupported
protocol, then a 'wrongValue' error must be returned.
The value will be overwritten/set when a set operation
is performed on the corresponding instance of
UserCloneFrom.
Once instantiated, the value of such an instance of
this object can only be changed via a set operation to
the value of the NoAuthProtocol.
If a set operation tries to change the value of an
existing instance of this object to any value other
than NoAuthProtocol, then an 'inconsistentValue'
error must be returned.
If a set operation tries to set the value to the
NoAuthProtocol while the UserPrivProtocol value
in the same row is not equal to NoPrivProtocol,
then an 'inconsistentValue' error must be returned.
That means that an SNMP command generator application
must first ensure that the UserPrivProtocol is set
to the NoPrivProtocol value before it can set
the UserAuthProtocol value to NoAuthProtocol.""",
}, # column
"snmpV3UserAuthProtocolPassword" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpV3UserPrivProtocol" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"des" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""An indication of whether messages sent on behalf of
this user to/from the SNMP engine identified by
usmUserEngineID, can be protected from disclosure,
and if so, the type of privacy protocol which is used.
An instance of this object is created concurrently
with the creation of any other object instance for
the same user (i.e., as part of the processing of
the set operation which creates the first object
instance in the same conceptual row).
If an initial set operation (i.e. at row creation time)
tries to set a value for an unknown or unsupported
protocol, then a 'wrongValue' error must be returned.
The value will be overwritten/set when a set operation
is performed on the corresponding instance of
usmUserCloneFrom.
Once instantiated, the value of such an instance of
this object can only be changed via a set operation to
the value of the NoPrivProtocol.
If a set operation tries to change the value of an
existing instance of this object to any value other
than NoPrivProtocol, then an 'inconsistentValue'
error must be returned.
Note that if any privacy protocol is used, then you
must also use an authentication protocol. In other
words, if usmUserPrivProtocol is set to anything else
than NoPrivProtocol, then the corresponding instance
of usmUserAuthProtocol cannot have a value of
usmNoAuthProtocol. If it does, then an
'inconsistentValue' error must be returned.""",
}, # column
"snmpV3UserPrivProtocolPassword" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpV3UserStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row.
Until instances of all corresponding columns are
appropriately configured, the value of the
corresponding instance of the usmUserStatus column
is 'notReady'.
In particular, a newly created row for a user who
employs authentication, cannot be made active until the
corresponding usmUserCloneFrom and usmUserAuthKeyChange
have been set.
Further, a newly created row for a user who also
employs privacy, cannot be made active until the
usmUserPrivKeyChange has been set.
The RowStatus TC [RFC2579] requires that this
DESCRIPTION clause states under which circumstances
other objects in this row can be modified:
The value of this object has no effect on whether
other objects in this conceptual row can be modified,
except for usmUserOwnAuthKeyChange and
usmUserOwnPrivKeyChange. For these 2 objects, the
value of usmUserStatus MUST be active.""",
}, # column
"snmpV3Group" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.3",
}, # node
"snmpV3GroupTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.3.1",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3GroupEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.3.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3GroupName",
"snmpV3GroupSecurityModel",
"snmpV3GroupSecurityLevel",
],
"description" :
"""""",
}, # row
"snmpV3GroupName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The name of the group to which this entry (e.g., the
combination of securityModel and securityName)
belongs.
This groupName is used as index into the
vacmAccessTable to select an access control policy.
However, a value in this table does not imply that an
instance with the value exists in table vacmAccesTable.""",
}, # column
"snmpV3GroupSecurityModel" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""In order to gain the access rights allowed by this
conceptual row, this securityModel must be in use.""",
}, # column
"snmpV3GroupSecurityLevel" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpSecurityLevel"},
},
"access" : "readonly",
"description" :
"""The minimum level of security required in order to
gain the access rights allowed by this conceptual
row. A securityLevel of noAuthNoPriv is less than
authNoPriv which in turn is less than authPriv.
If multiple entries are equally indexed except for
this vacmAccessSecurityLevel index, then the entry
which has the highest value for
vacmAccessSecurityLevel is selected.""",
}, # column
"snmpV3GroupReadViewName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The value of an instance of this object identifies
the MIB view of the SNMP context to which this
conceptual row authorizes read access.
The identified MIB view is that one for which the
vacmViewTreeFamilyViewName has the same value as the
instance of this object; if the value is the empty
string or if there is no active MIB view having this
value of vacmViewTreeFamilyViewName, then no access
is granted.""",
}, # column
"snmpV3GroupWriteViewName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.3.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The value of an instance of this object identifies
the MIB view of the SNMP context to which this
conceptual row authorizes write access.
The identified MIB view is that one for which the
vacmViewTreeFamilyViewName has the same value as the
instance of this object; if the value is the empty
string or if there is no active MIB view having this
value of vacmViewTreeFamilyViewName, then no access
is granted.""",
}, # column
"snmpV3GroupNotifyViewName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.3.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The value of an instance of this object identifies
the MIB view of the SNMP context to which this
conceptual row authorizes access for notifications.
The identified MIB view is that one for which the
vacmViewTreeFamilyViewName has the same value as the
instance of this object; if the value is the empty
string or if there is no active MIB view having this
value of vacmViewTreeFamilyViewName, then no access
is granted.""",
}, # column
"snmpV3GroupStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.3.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row.
The RowStatus TC [RFC2579] requires that this
DESCRIPTION clause states under which circumstances
other objects in this row can be modified:
The value of this object has no effect on whether
other objects in this conceptual row can be modified.""",
}, # column
"snmpV3ViewTree" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.4",
}, # node
"snmpV3ViewTreeTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.4.1",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3ViewTreeEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.4.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3viewTreeName",
"snmpV3viewTreeSubtree",
],
"description" :
"""""",
}, # row
"snmpV3viewTreeName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.4.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""The human readable name for a family of view subtrees.""",
}, # column
"snmpV3viewTreeSubtree" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.4.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readonly",
"description" :
"""The MIB subtree which when combined with the
corresponding instance of vacmViewTreeFamilyMask
defines a family of view subtrees.""",
}, # column
"snmpV3viewTreeMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.4.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "16"
},
],
"range" : {
"min" : "0",
"max" : "16"
},
},
},
"access" : "readwrite",
"description" :
"""The bit mask which, in combination with the
corresponding instance of vacmViewTreeFamilySubtree,
defines a family of view subtrees.
Each bit of this bit mask corresponds to a
sub-identifier of vacmViewTreeFamilySubtree, with the
most significant bit of the i-th octet of this octet
string value (extended if necessary, see below)
corresponding to the (8*i - 7)-th sub-identifier, and
the least significant bit of the i-th octet of this
octet string corresponding to the (8*i)-th
sub-identifier, where i is in the range 1 through 16.
Each bit of this bit mask specifies whether or not
the corresponding sub-identifiers must match when
determining if an OBJECT IDENTIFIER is in this
family of view subtrees; a '1' indicates that an
exact match must occur; a '0' indicates 'wild card',
i.e., any sub-identifier value matches.
Thus, the OBJECT IDENTIFIER X of an object instance
is contained in a family of view subtrees if, for
each sub-identifier of the value of
vacmViewTreeFamilySubtree, either:
the i-th bit of vacmViewTreeFamilyMask is 0, or
the i-th sub-identifier of X is equal to the i-th
sub-identifier of the value of
vacmViewTreeFamilySubtree.
If the value of this bit mask is M bits long and
there are more than M sub-identifiers in the
corresponding instance of vacmViewTreeFamilySubtree,
then the bit mask is extended with 1's to be the
required length.
Note that when the value of this object is the
zero-length string, this extension rule results in
a mask of all-1's being used (i.e., no 'wild card'),
and the family of view subtrees is the one view
subtree uniquely identified by the corresponding
instance of vacmViewTreeFamilySubtree.
Note that masks of length greater than zero length
do not need to be supported. In this case this
object is made read-only.""",
}, # column
"snmpV3viewTreeType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.4.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"included" : {
"nodetype" : "namednumber",
"number" : "1"
},
"excluded" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates whether the corresponding instances of
vacmViewTreeFamilySubtree and vacmViewTreeFamilyMask
define a family of view subtrees which is included in
or excluded from the MIB view.""",
}, # column
"snmpV3viewTreeStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.4.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row.
The RowStatus TC [RFC2579] requires that this
DESCRIPTION clause states under which circumstances
other objects in this row can be modified:
The value of this object has no effect on whether
other objects in this conceptual row can be modified.""",
}, # column
"snmpV3Community" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.5",
}, # node
"snmpV3CommunityTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.5.1",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3CommunityEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.5.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3CommunityName",
],
"description" :
"""""",
}, # row
"snmpV3CommunityName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readonly",
"description" :
"""The unique index value of a row in this table.""",
}, # column
"snmpV3CommunityPolicy" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.5.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""A human readable string representing the corresponding
value of snmpCommunityName in a Security Model
independent format.""",
}, # column
"snmpV3CommunityStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.5.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this conceptual row in the
snmpCommunityTable.
An entry in this table is not qualified for activation
until instances of all corresponding columns have been
initialized, either through default values, or through
Set operations. The snmpCommunityName and
snmpCommunitySecurityName objects must be explicitly set.
There is no restriction on setting columns in this table
when the value of snmpCommunityStatus is active(1).""",
}, # column
"snmpV3Host" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.6",
}, # node
"snmpV3HostTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.6.2",
"status" : "current",
"description" :
"""""",
}, # table
"snmpV3HostEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.6.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpV3HostAddress",
"snmpV3IPType",
],
"description" :
"""""",
}, # row
"snmpV3HostAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.6.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""This object contains a transport address. The format of
this address depends on the value of the
snmpTargetAddrTDomain object. And this object is unique
identifier associated with this snmpNotifyEntry.""",
}, # column
"snmpV3IPType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.6.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"iPv4" : {
"nodetype" : "namednumber",
"number" : "1"
},
"iPv6" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Type of IP interface.""",
}, # column
"snmpV3HostCommunityName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.6.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMP-FRAMEWORK-MIB",
"type" : "SnmpAdminString",
},
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The locally arbitrary.""",
}, # column
"snmpV3HostVersion" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.6.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
"v3NoAuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "3"
},
"v3AuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "4"
},
"v3AuthPriv" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""The Level of Security to be used when generating
SNMP messages using this entry.""",
}, # column
"snmpV3HostInterfaceName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.6.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""Specifies the interface name when the syslogSrvIP is linklocal address.""",
}, # column
"snmpV3HostStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.6.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpV3EngineID" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpEngineID"},
},
"access" : "readwrite",
"description" :
"""An SNMP engine's administratively-unique identifier.
In a simple agent, this value is always that agent's
own snmpEngineID value.
The value can also take the value of the snmpEngineID
of a remote SNMP engine with which this user can
communicate.""",
}, # scalar
"snmpV3Trap" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.8",
}, # node
"snmpV3TrapSNMPAuthentication" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.8.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling SNMP login fail
event trap in the system.""",
}, # scalar
"snmpV3TrapBootup" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.8.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling devie Bootup event
trap in the system.""",
}, # scalar
"snmpV3TrapPortLinkUpDown" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.8.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling Port link up / link down
event trap in the system.""",
}, # scalar
"snmpV3TrapRSTPStateChange" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.8.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling RSTP topology change
event trap in the system.""",
}, # scalar
"snmpV3TrapFirmUpgrade" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.8.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling Firmware upgrade
suess or fail event trap in the system.""",
}, # scalar
"snmpV3TrapPoePowerOnOff" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.8.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling PoE power
on /off event in the system.""",
}, # scalar
"snmpV3TrapPoePowerError" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.25.8.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling PoE power
error event in the system.
There are four(short circuit, over load, power denied,
and thermal shutdown) error types in this event.""",
}, # scalar
"snmpV3TrapOverMaxPowerBudget" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.8.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling PoE over
max power budget event in the system.""",
}, # scalar
"snmpV3TrapLBD" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.25.8.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"companyAutoSurveillanceVlan" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.26",
}, # node
"autoSurveillanceVlanSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.26.1",
}, # node
"autoSurveillanceVlanMode" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.26.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling Auto Surveillance Vlan function
in the system.
If the Vlan mode is in Asymmetric VLAN mode, Auto Surveillance VLAN can not
be enabled.""",
}, # scalar
"autoSurveillanceVlanId" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.26.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The ID of VLAN that you want the surveillance traffic to be in.
It must be a exist vlan id.""",
}, # scalar
"autoSurveillanceVlanPriority" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.26.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""The 802.1p priority levels of the traffic in the Auto Surveillance VLAN.""",
}, # scalar
"autoSurveillanceVlanTaggedUplinkDownlinkPort" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.26.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Auto Surveillance vlan uplink ports can't auto learning OUI.""",
}, # scalar
"autoSurveillanceVlanOUI" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.26.2",
}, # node
"autoSurveillanceVlanOUITable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.26.2.1",
"status" : "current",
"description" :
"""A Auto Surveillance vlan OUI entry containing the description and mac.""",
}, # table
"autoSurveillanceVlanOUIEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.26.2.1.1",
"status" : "current",
"linkage" : [
"autoSurveillanceVlanOUISurveillanceOUI",
],
"description" :
"""A Auto Surveillance vlan OUI entry containing the description and mac.""",
}, # row
"autoSurveillanceVlanOUISurveillanceOUI" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.26.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""An Organizationally Unique Identifier (OUI) is a 24-bit number
that is purchased from the IEEE Registration Authority. This identifier
uniquely identifies a vendor, manufacturer, or other organization.
This object indicates the surveillance traffic's OUI that user created.""",
}, # column
"autoSurveillanceVlanOUIDescription" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.26.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""The Description for the OUI.""",
}, # column
"autoSurveillanceVlanOUIMask" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.26.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readwrite",
"description" :
"""Auto Surveillance vlan OUI Mask.
The default OUI Mask is FF:FF:FF:F0:00:00. And default OUI Mask is read-only.
In user define OUI's Mask is FF:FF:FF:00:00:00, in user define MAC's Mask is FF:FF:FF:FF:FF:FF.""",
}, # column
"autoSurveillanceVlanOUIComponentType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.26.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"video_Management_Server" : {
"nodetype" : "namednumber",
"number" : "0"
},
"vMS_Client" : {
"nodetype" : "namednumber",
"number" : "1"
},
"video_Encoder" : {
"nodetype" : "namednumber",
"number" : "2"
},
"network_Storage" : {
"nodetype" : "namednumber",
"number" : "3"
},
"other_IP_Surveillance_Devices" : {
"nodetype" : "namednumber",
"number" : "4"
},
"d-Link_Surveillance_Device" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the Component Type of this entry.
To create a new entry, you must set the autoSurveillanceVlanOUIComponentType
to be CreateAndGo, then this entry will turn to be Active.""",
}, # column
"autoSurveillanceVlanOUIStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.26.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
To create a new entry, you must set the autoSurveillanceVlanOUIStatus
to be CreateAndGo, then this entry will turn to be Active.""",
}, # column
"companyTraps" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.27",
}, # node
"traps" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0",
}, # node
"companyMulticastFilter" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.28",
}, # node
"mcastFilterPortTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.28.1",
"status" : "current",
"description" :
"""A table to control multicast filtering modes.""",
}, # table
"mcastFilterPortEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.28.1.1",
"status" : "current",
"linkage" : [
"mcastFilterPortIndex",
],
"description" :
"""An entry appears in this table for each interface in the mcastFiltertem.
Index to the table is the interface index of the port.""",
}, # row
"mcastFilterPortIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.28.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Interface index of the port for which the configuration
in this entry applies.""",
}, # column
"mcastFilterPortType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.28.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"forward-unregistered-groups" : {
"nodetype" : "namednumber",
"number" : "1"
},
"filter-unregistered-groups" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Configures the multicast filtering modes as below :
forward - This will instruct the Switch to forward a multicast
packet whose destination is an unregistered multicast
group residing within the range of ports specified above.
filter - This will instruct the Switch to filter any multicast
packets whose destination is an unregistered multicast
group residing within the range of ports specified above.""",
}, # column
"companyGreenSetting" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31",
}, # node
"dlinkGreenLEDShutoff" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.1",
}, # node
"dlinkGreenLEDShutoffPortList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Provides control to disable LED port.""",
}, # scalar
"dlinkGreenLEDShutoffState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Green disable LED function.
Default is disabled.""",
}, # scalar
"dlinkGreenLEDShutoffTimeProfile1" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenLEDShutoffTimeProfile2" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenPortShutoff" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.2",
}, # node
"dlinkGreenPortShutoffPortList" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""Provides control to disable LED port.""",
}, # scalar
"dlinkGreenPortShutoffState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.31.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Green disable LED function.
Default is disabled.""",
}, # scalar
"dlinkGreenPortShutoffTimeProfile1" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.31.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenPortShutoffTimeProfile2" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.31.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenSystemHibernation" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.31.4",
}, # node
"dlinkGreenSystemHibernationState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.4.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Green disable LED function.
Default is disabled.""",
}, # scalar
"dlinkGreenSystemHibernationTimeProfile1" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.31.4.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkGreenSystemHibernationTimeProfile2" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.31.4.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The time profile name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # scalar
"dlinkPowerSavingGlobalSetting" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.31.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enable/Disable Power Saving global setting.
Default is disabled.""",
}, # scalar
"companyTimeRangeMgmt" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32",
}, # node
"swTimeRangeSettingTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1",
"status" : "current",
"description" :
"""A table to configure time Range in the system.""",
}, # table
"swTimeRangeSettingEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"swTimeRangeIndex",
],
"description" :
"""A schedule entry to configure time Range in the system.""",
}, # row
"swTimeRangeIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "52"
},
],
"range" : {
"min" : "1",
"max" : "52"
},
},
},
"access" : "readonly",
"description" :
"""The Time Range identifier. The maximum number of Schedule entry is
the number of ports supported PoE function.
The value must be between 1 and 52.""",
}, # column
"swTimeRangeName" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "1",
"max" : "20"
},
],
"range" : {
"min" : "1",
"max" : "20"
},
},
},
"access" : "readwrite",
"description" :
"""The Schedule name associated with the Schedule entry (e.g., `abc, bbb').""",
}, # column
"swTimeRangeDate" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Enable/Disable date range checking while executing time base PoE.""",
}, # column
"swTimeRangeStartYear" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"y2009" : {
"nodetype" : "namednumber",
"number" : "2009"
},
"y2010" : {
"nodetype" : "namednumber",
"number" : "2010"
},
"y2011" : {
"nodetype" : "namednumber",
"number" : "2011"
},
"y2012" : {
"nodetype" : "namednumber",
"number" : "2012"
},
"y2013" : {
"nodetype" : "namednumber",
"number" : "2013"
},
"y2014" : {
"nodetype" : "namednumber",
"number" : "2014"
},
"y2015" : {
"nodetype" : "namednumber",
"number" : "2015"
},
"y2016" : {
"nodetype" : "namednumber",
"number" : "2016"
},
"y2017" : {
"nodetype" : "namednumber",
"number" : "2017"
},
"y2018" : {
"nodetype" : "namednumber",
"number" : "2018"
},
"y2019" : {
"nodetype" : "namednumber",
"number" : "2019"
},
"y2020" : {
"nodetype" : "namednumber",
"number" : "2020"
},
"y2021" : {
"nodetype" : "namednumber",
"number" : "2021"
},
"y2022" : {
"nodetype" : "namednumber",
"number" : "2022"
},
"y2023" : {
"nodetype" : "namednumber",
"number" : "2023"
},
"y2024" : {
"nodetype" : "namednumber",
"number" : "2024"
},
"y2025" : {
"nodetype" : "namednumber",
"number" : "2025"
},
"y2026" : {
"nodetype" : "namednumber",
"number" : "2026"
},
"y2027" : {
"nodetype" : "namednumber",
"number" : "2027"
},
"y2028" : {
"nodetype" : "namednumber",
"number" : "2028"
},
"y2029" : {
"nodetype" : "namednumber",
"number" : "2029"
},
"y2030" : {
"nodetype" : "namednumber",
"number" : "2030"
},
"y2031" : {
"nodetype" : "namednumber",
"number" : "2031"
},
"y2032" : {
"nodetype" : "namednumber",
"number" : "2032"
},
"y2033" : {
"nodetype" : "namednumber",
"number" : "2033"
},
"y2034" : {
"nodetype" : "namednumber",
"number" : "2034"
},
"y2035" : {
"nodetype" : "namednumber",
"number" : "2035"
},
"y2036" : {
"nodetype" : "namednumber",
"number" : "2036"
},
"y2037" : {
"nodetype" : "namednumber",
"number" : "2037"
},
},
},
"access" : "readwrite",
"description" :
"""Start year of the Schedule entry.""",
}, # column
"swTimeRangeStartMonth" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Start month of the Schedule entry.""",
}, # column
"swTimeRangeStartDay" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
},
},
"access" : "readwrite",
"description" :
"""Start day of the Schedule entry.
The value must be from 1 to 31.""",
}, # column
"swTimeRangeStartHour" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "23"
},
],
"range" : {
"min" : "0",
"max" : "23"
},
},
},
"access" : "readwrite",
"description" :
"""Start hour of the Schedule entry.
The value must be from 0 to 23.""",
}, # column
"swTimeRangeStartMinute" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "59"
},
],
"range" : {
"min" : "0",
"max" : "59"
},
},
},
"access" : "readwrite",
"description" :
"""Start minute of the Schedule entry.
The value must be from 0 to 59.""",
}, # column
"swTimeRangeEndYear" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"y2009" : {
"nodetype" : "namednumber",
"number" : "2009"
},
"y2010" : {
"nodetype" : "namednumber",
"number" : "2010"
},
"y2011" : {
"nodetype" : "namednumber",
"number" : "2011"
},
"y2012" : {
"nodetype" : "namednumber",
"number" : "2012"
},
"y2013" : {
"nodetype" : "namednumber",
"number" : "2013"
},
"y2014" : {
"nodetype" : "namednumber",
"number" : "2014"
},
"y2015" : {
"nodetype" : "namednumber",
"number" : "2015"
},
"y2016" : {
"nodetype" : "namednumber",
"number" : "2016"
},
"y2017" : {
"nodetype" : "namednumber",
"number" : "2017"
},
"y2018" : {
"nodetype" : "namednumber",
"number" : "2018"
},
"y2019" : {
"nodetype" : "namednumber",
"number" : "2019"
},
"y2020" : {
"nodetype" : "namednumber",
"number" : "2020"
},
"y2021" : {
"nodetype" : "namednumber",
"number" : "2021"
},
"y2022" : {
"nodetype" : "namednumber",
"number" : "2022"
},
"y2023" : {
"nodetype" : "namednumber",
"number" : "2023"
},
"y2024" : {
"nodetype" : "namednumber",
"number" : "2024"
},
"y2025" : {
"nodetype" : "namednumber",
"number" : "2025"
},
"y2026" : {
"nodetype" : "namednumber",
"number" : "2026"
},
"y2027" : {
"nodetype" : "namednumber",
"number" : "2027"
},
"y2028" : {
"nodetype" : "namednumber",
"number" : "2028"
},
"y2029" : {
"nodetype" : "namednumber",
"number" : "2029"
},
"y2030" : {
"nodetype" : "namednumber",
"number" : "2030"
},
"y2031" : {
"nodetype" : "namednumber",
"number" : "2031"
},
"y2032" : {
"nodetype" : "namednumber",
"number" : "2032"
},
"y2033" : {
"nodetype" : "namednumber",
"number" : "2033"
},
"y2034" : {
"nodetype" : "namednumber",
"number" : "2034"
},
"y2035" : {
"nodetype" : "namednumber",
"number" : "2035"
},
"y2036" : {
"nodetype" : "namednumber",
"number" : "2036"
},
"y2037" : {
"nodetype" : "namednumber",
"number" : "2037"
},
},
},
"access" : "readwrite",
"description" :
"""End year of the Schedule entry.""",
}, # column
"swTimeRangeEndMonth" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""End month of the Schedule entry.""",
}, # column
"swTimeRangeEndDay" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "31"
},
],
"range" : {
"min" : "1",
"max" : "31"
},
},
},
"access" : "readwrite",
"description" :
"""End day of the Schedule entry.
The value must be from 1 to 31.""",
}, # column
"swTimeRangeEndHour" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "23"
},
],
"range" : {
"min" : "0",
"max" : "23"
},
},
},
"access" : "readwrite",
"description" :
"""End hour of the Schedule entry.
The value must be from 0 to 23.""",
}, # column
"swTimeRangeEndMinute" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.13",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "59"
},
],
"range" : {
"min" : "0",
"max" : "59"
},
},
},
"access" : "readwrite",
"description" :
"""End minute of the Schedule entry.
The value must be from 0 to 59.""",
}, # column
"swTimeRangeMonday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Monday.""",
}, # column
"swTimeRangeTuesday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Tuesday.""",
}, # column
"swTimeRangeWednesday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Wednesday.""",
}, # column
"swTimeRangeThursday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.17",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Thursday.""",
}, # column
"swTimeRangeFriday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.18",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Friday.""",
}, # column
"swTimeRangeSaturday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.32.1.1.19",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Saturday.""",
}, # column
"swTimeRangeSunday" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.20",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disable",
"description" :
"""Enable/Disble scheduling Sunday.""",
}, # column
"swTimeRangeRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.32.1.1.21",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Time Range Information Table. Only a subset
of the rowstatus variables (active, notinservice, createAndWait, destroy)
are available.""",
}, # column
"companyStaticMcast" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.35",
}, # node
"staticMcastTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.35.1",
"status" : "current",
"description" :
"""A list of the Static MACs""",
}, # table
"staticMcastEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.35.1.1",
"status" : "current",
"linkage" : [
"staticMcastVlanID",
"staticMcastMac",
"staticMcastEgressPorts",
],
"description" :
"""A Static MAC entry containing the mac and forwarding port.""",
}, # row
"staticMcastVlanID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.35.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The VLAN ID of the static MAC entry.""",
}, # column
"staticMcastMac" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.35.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the static MAC entry.""",
}, # column
"staticMcastEgressPorts" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.35.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""The set of ports to which frames received from a
specific port and destined for a specific Multicast or
Broadcast MAC address must be forwarded, regardless of
any dynamic information e.g. from GMRP. A port may not
be added in this set if it is already a member of the
set of ports in dot1qStaticMulticastForbiddenEgressPorts.
The default value of this object is a string of ones of
appropriate length.""",
"reference>" :
"""IEEE 802.1Q/D11 Section 192.168.3.11, 172.16.17.32.3""",
}, # column
"staticMcastStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.35.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Static Mcast Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy)
are available.""",
}, # column
"companyCableDiagnostic" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37",
}, # node
"cableDiagTriggerIndex" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Trigger an interface index to do cable diagnostic.""",
}, # scalar
"cableDiagPair1TestResult" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.37.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"open" : {
"nodetype" : "namednumber",
"number" : "1"
},
"short" : {
"nodetype" : "namednumber",
"number" : "2"
},
"open-short" : {
"nodetype" : "namednumber",
"number" : "3"
},
"crosstalk" : {
"nodetype" : "namednumber",
"number" : "4"
},
"mismatch" : {
"nodetype" : "namednumber",
"number" : "5"
},
"linedriver" : {
"nodetype" : "namednumber",
"number" : "6"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 1 test result.""",
}, # scalar
"cableDiagPair1FaultDistance" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Cable Diagnostics pair 1 fault distance.""",
}, # scalar
"cableDiagPair2TestResult" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"open" : {
"nodetype" : "namednumber",
"number" : "1"
},
"short" : {
"nodetype" : "namednumber",
"number" : "2"
},
"open-short" : {
"nodetype" : "namednumber",
"number" : "3"
},
"crosstalk" : {
"nodetype" : "namednumber",
"number" : "4"
},
"mismatch" : {
"nodetype" : "namednumber",
"number" : "5"
},
"linedriver" : {
"nodetype" : "namednumber",
"number" : "6"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 2 test result.""",
}, # scalar
"cableDiagPair2FaultDistance" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 2 fault distance.""",
}, # scalar
"cableDiagPair3TestResult" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"open" : {
"nodetype" : "namednumber",
"number" : "1"
},
"short" : {
"nodetype" : "namednumber",
"number" : "2"
},
"open-short" : {
"nodetype" : "namednumber",
"number" : "3"
},
"crosstalk" : {
"nodetype" : "namednumber",
"number" : "4"
},
"mismatch" : {
"nodetype" : "namednumber",
"number" : "5"
},
"linedriver" : {
"nodetype" : "namednumber",
"number" : "6"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 3 test result.""",
}, # scalar
"cableDiagPair3FaultDistance" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 3 fault distance.""",
}, # scalar
"cableDiagPair4TestResult" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ok" : {
"nodetype" : "namednumber",
"number" : "0"
},
"open" : {
"nodetype" : "namednumber",
"number" : "1"
},
"short" : {
"nodetype" : "namednumber",
"number" : "2"
},
"open-short" : {
"nodetype" : "namednumber",
"number" : "3"
},
"crosstalk" : {
"nodetype" : "namednumber",
"number" : "4"
},
"mismatch" : {
"nodetype" : "namednumber",
"number" : "5"
},
"linedriver" : {
"nodetype" : "namednumber",
"number" : "6"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 4 test result.""",
}, # scalar
"cableDiagPair4FaultDistance" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Cable diagnostics pair 4 fault distance.""",
}, # scalar
"cableDiagLengthinRange" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.37.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"less50" : {
"nodetype" : "namednumber",
"number" : "1"
},
"from50to80" : {
"nodetype" : "namednumber",
"number" : "2"
},
"from80to100" : {
"nodetype" : "namednumber",
"number" : "3"
},
"from100to140" : {
"nodetype" : "namednumber",
"number" : "4"
},
"notAvailable" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readonly",
"description" :
"""Cable diagnostics length when link up in speed 1G.
(Display in range)""",
}, # scalar
"companyRMON" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47",
}, # node
"rmonGlobalState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object is for enabling or disabling RMON function.""",
}, # scalar
"rmonStatistics" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.2",
}, # node
"rmonStatsTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.2.1",
"status" : "current",
"description" :
"""A list of Ethernet statistics entries.""",
}, # table
"rmonStatsEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"rmonStatsIndex",
],
"description" :
"""A collection of statistics kept for a particular
Ethernet interface. As an example, an instance of the
etherStatsPkts object might be named etherStatsPkts.1""",
}, # row
"rmonStatsIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The value of this object uniquely identifies this
etherStats entry.""",
}, # column
"rmonStatsDataSource" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readwrite",
"description" :
"""This object identifies the source of the data that
this etherStats entry is configured to analyze. This
source can be any ethernet interface on this device.
In order to identify a particular interface, this object
shall identify the instance of the ifIndex object,
defined in RFC 2233 [17], for the desired interface.
For example, if an entry were to receive data from
interface #1, this object would be set to ifIndex.1.
The statistics in this group reflect all packets
on the local network segment attached to the identified
interface.
An agent may or may not be able to tell if fundamental
changes to the media of the interface have occurred and
necessitate an invalidation of this entry. For example, a
hot-pluggable ethernet card could be pulled out and replaced
by a token-ring card. In such a case, if the agent has such
knowledge of the change, it is recommended that it
invalidate this entry.
This object may not be modified if the associated
etherStatsStatus object is equal to valid(1).""",
}, # column
"rmonStatsOwner" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The entity that configured this entry and is therefore
using the resources assigned to it.""",
}, # column
"rmonStatsStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "RmonStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this etherStats entry.""",
}, # column
"rmonHistory" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.3",
}, # node
"rmonHistoryTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.3.1",
"status" : "current",
"description" :
"""A list of history control entries.""",
}, # table
"rmonHistoryEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.3.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"rmonHistoryIndex",
],
"description" :
"""A list of parameters that set up a periodic sampling of
statistics. As an example, an instance of the
historyControlInterval object might be named
historyControlInterval.2""",
}, # row
"rmonHistoryIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""An index that uniquely identifies an entry in the
historyControl table. Each such entry defines a
set of samples at a particular interval for an
interface on the device.""",
}, # column
"rmonHistoryDataSource" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readwrite",
"description" :
"""This object identifies the source of the data for
which historical data was collected and
placed in a media-specific table on behalf of this
historyControlEntry. This source can be any
interface on this device. In order to identify
a particular interface, this object shall identify
the instance of the ifIndex object, defined
in RFC 2233 [17], for the desired interface.
For example, if an entry were to receive data from
interface #1, this object would be set to ifIndex.1.
The statistics in this group reflect all packets
on the local network segment attached to the identified
interface.
An agent may or may not be able to tell if fundamental
changes to the media of the interface have occurred and
necessitate an invalidation of this entry. For example, a
hot-pluggable ethernet card could be pulled out and replaced
by a token-ring card. In such a case, if the agent has such
knowledge of the change, it is recommended that it
invalidate this entry.
This object may not be modified if the associated
historyControlStatus object is equal to valid(1).""",
}, # column
"rmonHistoryBucketsRequested" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"default" : "50",
"description" :
"""The requested number of discrete time intervals
over which data is to be saved in the part of the
media-specific table associated with this
historyControlEntry.
When this object is created or modified, the probe
should set historyControlBucketsGranted as closely to
this object as is possible for the particular probe
implementation and available resources.""",
}, # column
"rmonHistoryInterval" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.3.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "3600"
},
],
"range" : {
"min" : "1",
"max" : "3600"
},
},
},
"access" : "readwrite",
"default" : "1800",
"units" : "Seconds",
"description" :
"""The interval in seconds over which the data is
sampled for each bucket in the part of the
media-specific table associated with this
historyControlEntry. This interval can
be set to any number of seconds between 1 and
3600 (1 hour).
Because the counters in a bucket may overflow at their
maximum value with no indication, a prudent manager will
take into account the possibility of overflow in any of
the associated counters. It is important to consider the
minimum time in which any counter could overflow on a
particular media type and set the historyControlInterval
object to a value less than this interval. This is
typically most important for the 'octets' counter in any
media-specific table. For example, on an Ethernet
network, the etherHistoryOctets counter could overflow
in about one hour at the Ethernet's maximum
utilization.
This object may not be modified if the associated
historyControlStatus object is equal to valid(1).""",
}, # column
"rmonHistoryOwner" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.3.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The entity that configured this entry and is therefore
using the resources assigned to it.""",
}, # column
"rmonHistoryStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.3.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "RmonStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this historyControl entry.
Each instance of the media-specific table associated
with this historyControlEntry will be deleted by the agent
if this historyControlEntry is not equal to valid(1).""",
}, # column
"rmonAlarm" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.4",
}, # node
"rmonAlarmTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.4.1",
"status" : "current",
"description" :
"""A list of alarm entries.""",
}, # table
"rmonAlarmEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.4.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"rmonAlarmIndex",
],
"description" :
"""A list of parameters that set up a periodic checking
for alarm conditions. For example, an instance of the
alarmValue object might be named alarmValue.8""",
}, # row
"rmonAlarmIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.4.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""An index that uniquely identifies an entry in the
alarm table. Each such entry defines a
diagnostic sample at a particular interval
for an object on the device.""",
}, # column
"rmonAlarmInterval" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.4.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"units" : "Seconds",
"description" :
"""The interval in seconds over which the data is
sampled and compared with the rising and falling
thresholds. When setting this variable, care
should be taken in the case of deltaValue
sampling - the interval should be set short enough
that the sampled variable is very unlikely to
increase or decrease by more than 2^31 - 1 during
a single sampling interval.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmVariable" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.4.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readwrite",
"description" :
"""The object identifier of the particular variable to be
sampled. Only variables that resolve to an ASN.1 primitive
type of INTEGER (INTEGER, Integer32, Counter32, Counter64,
Gauge, or TimeTicks) may be sampled.
Because SNMP access control is articulated entirely
in terms of the contents of MIB views, no access
control mechanism exists that can restrict the value of
this object to identify only those objects that exist
in a particular MIB view. Because there is thus no
acceptable means of restricting the read access that
could be obtained through the alarm mechanism, the
probe must only grant write access to this object in
those views that have read access to all objects on
the probe.
During a set operation, if the supplied variable name is
not available in the selected MIB view, a badValue error
must be returned. If at any time the variable name of
an established alarmEntry is no longer available in the
selected MIB view, the probe must change the status of
this alarmEntry to invalid(4).
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmSampleType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.4.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"absoluteValue" : {
"nodetype" : "namednumber",
"number" : "1"
},
"deltaValue" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The method of sampling the selected variable and
calculating the value to be compared against the
thresholds. If the value of this object is
absoluteValue(1), the value of the selected variable
will be compared directly with the thresholds at the
end of the sampling interval. If the value of this
object is deltaValue(2), the value of the selected
variable at the last sample will be subtracted from
the current value, and the difference compared with
the thresholds.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmRisingThreshold" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.4.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""A threshold for the sampled statistic. When the current
sampled value is greater than or equal to this threshold,
and the value at the last sampling interval was less than
this threshold, a single event will be generated.
A single event will also be generated if the first
sample after this entry becomes valid is greater than or
equal to this threshold and the associated
alarmStartupAlarm is equal to risingAlarm(1) or
risingOrFallingAlarm(3).
After a rising event is generated, another such event
will not be generated until the sampled value
falls below this threshold and reaches the
alarmFallingThreshold.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmFallingThreshold" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.4.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""A threshold for the sampled statistic. When the current
sampled value is less than or equal to this threshold,
and the value at the last sampling interval was greater than
this threshold, a single event will be generated.
A single event will also be generated if the first
sample after this entry becomes valid is less than or
equal to this threshold and the associated
alarmStartupAlarm is equal to fallingAlarm(2) or
risingOrFallingAlarm(3).
After a falling event is generated, another such event
will not be generated until the sampled value
rises above this threshold and reaches the
alarmRisingThreshold.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmRisingEventIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.4.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The index of the eventEntry that is
used when a rising threshold is crossed. The
eventEntry identified by a particular value of
this index is the same as identified by the same value
of the eventIndex object. If there is no
corresponding entry in the eventTable, then
no association exists. In particular, if this value
is zero, no associated event will be generated, as
zero is not a valid event index.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmFallingEventIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.4.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The index of the eventEntry that is
used when a falling threshold is crossed. The
eventEntry identified by a particular value of
this index is the same as identified by the same value
of the eventIndex object. If there is no
corresponding entry in the eventTable, then
no association exists. In particular, if this value
is zero, no associated event will be generated, as
zero is not a valid event index.
This object may not be modified if the associated
alarmStatus object is equal to valid(1).""",
}, # column
"rmonAlarmOwner" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.4.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The entity that configured this entry and is therefore
using the resources assigned to it.""",
}, # column
"rmonAlarmStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.4.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "RmonStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this alarm entry.""",
}, # column
"rmonEvent" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.5",
}, # node
"rmonEventTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.5.1",
"status" : "current",
"description" :
"""A list of events to be generated.""",
}, # table
"rmonEventEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.5.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"rmonEventIndex",
],
"description" :
"""A set of parameters that describe an event to be generated
when certain conditions are met. As an example, an instance
of the eventLastTimeSent object might be named
eventLastTimeSent.6""",
}, # row
"rmonEventIndex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""An index that uniquely identifies an entry in the
event table. Each such entry defines one event that
is to be generated when the appropriate conditions
occur.""",
}, # column
"rmonEventDescription" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.5.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "127"
},
],
"range" : {
"min" : "0",
"max" : "127"
},
},
},
"access" : "readwrite",
"description" :
"""A comment describing this event entry.""",
}, # column
"rmonEventType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.5.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"log" : {
"nodetype" : "namednumber",
"number" : "2"
},
"snmptrap" : {
"nodetype" : "namednumber",
"number" : "3"
},
"logandtrap" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""The type of notification that the probe will make
about this event. In the case of log, an entry is
made in the log table for each event. In the case of
snmp-trap, an SNMP trap is sent to one or more
management stations.""",
}, # column
"rmonEventCommunity" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.5.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""If an SNMP trap is to be sent, it will be sent to
the SNMP community specified by this octet string.""",
}, # column
"rmonEventOwner" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.47.5.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""The entity that configured this entry and is therefore
using the resources assigned to it.
If this object contains a string starting with 'monitor'
and has associated entries in the log table, all connected
management stations should retrieve those log entries,
as they may have significance to all management stations
connected to this device""",
}, # column
"rmonEventStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.47.5.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "RmonStatus"},
},
"access" : "readwrite",
"description" :
"""The status of this event entry.
If this object is not equal to valid(1), all associated
log entries shall be deleted by the agent.""",
}, # column
"companyNeighbor" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.50",
}, # node
"neighborTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.50.1",
"status" : "current",
"description" :
"""A list of the Neighbor Cache Table.""",
}, # table
"neighborEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.50.1.1",
"status" : "current",
"linkage" : [
"neighborIfindex",
"neighborIPv6Addr",
"neighborMACAddr",
],
"description" :
"""A Neighbor cache entry containing the ifindex and ipv6 addr.""",
}, # row
"neighborIfindex" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.50.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index of the Neighbor entry.""",
}, # column
"neighborIPv6Addr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.50.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""Allows the entry of an IP address that will be a Neighbor entry into
the Neighbor Cache Table.""",
}, # column
"neighborMACAddr" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.50.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""The MAC address associated of the Neighbor entry.""",
}, # column
"neighborType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.50.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The type associated of the Neighbor entry.""",
}, # column
"neighborCacheState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.50.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"reachable" : {
"nodetype" : "namednumber",
"number" : "2"
},
"incomplete" : {
"nodetype" : "namednumber",
"number" : "3"
},
"stale" : {
"nodetype" : "namednumber",
"number" : "4"
},
"delay" : {
"nodetype" : "namednumber",
"number" : "5"
},
"probe" : {
"nodetype" : "namednumber",
"number" : "6"
},
"notinservice" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""The type associated of the Neighbor entry.""",
}, # column
"neighborRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.50.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""The status of an entry in the Neighbor Cache Table. Only a subset
of the rowstatus variables (active, createAndGo, destroy) are available.""",
}, # column
"companydot3azEEE" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.52",
}, # node
"dot3azEEEset" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.52.1",
}, # node
"dot3azTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.52.1.1",
"status" : "current",
"description" :
"""A table to control IEEE802.3az EEE settings features of the device.""",
}, # table
"dot3azEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.52.1.1.1",
"status" : "current",
"linkage" : [
"portD3Index",
],
"description" :
"""An entry appears in IEEE802.3az EEE table for each interface
in the system.""",
}, # row
"portD3Index" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.52.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The interface index for which the configuration in this
entry applies.""",
}, # column
"portD3State" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.52.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
"notsupported" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Enable / disable port IEEE802.3az EEE admin state for the interface.
A given ports' dynamic MAC address learning will be stopped such
that the current source MAC addresses entered into the MAC address
forwarding table can not be changed once the port security admin
state is enabled.""",
}, # column
"companyDHCPRelay" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.61",
}, # node
"dhcpRelayControl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.61.1",
}, # node
"dhcpRelayState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP relay function is enabled or disabled.""",
}, # scalar
"dhcpRelayHopCount" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.61.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "16"
},
],
"range" : {
"min" : "1",
"max" : "16"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the maximum number of router hops that the packets can cross.""",
}, # scalar
"dhcpRelayTimeThreshold" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.61.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the minimum time in seconds within which the switch must relay the DHCP request.
If this time is exceeded, the switch will drop the DHCP packet.""",
}, # scalar
"dhcpRelayManagement" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2",
}, # node
"dhcpRelayInterfaceSettingsTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.1",
"status" : "current",
"description" :
"""This table indicates the IP address as a destination to forward (relay) DHCP packets to.""",
}, # table
"dhcpRelayInterfaceSettingsEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpRelayInterface",
"dhcpRelayServerIP",
],
"description" :
"""A list of information indicates the IP address as a destination to forward (relay) DHCP packets to.""",
}, # row
"dhcpRelayInterface" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "12"
},
],
"range" : {
"min" : "0",
"max" : "12"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the name of the IP interface.""",
}, # column
"dhcpRelayServerIP" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""This object indicates the DHCP server IP address.""",
}, # column
"dhcpRelayInterfaceSettingsRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
Only a subset of the rowstatus variables (active, createAndGo, destroy) are available.""",
}, # column
"dhcpRelayManagementOption82" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.61.2.2",
}, # node
"dhcpRelayOption82State" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.2.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates DHCP relay option 82 function always enabled.""",
}, # scalar
"dhcpRelayOption82CheckState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.2.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP relay option 82 Check function is enabled or disabled.""",
}, # scalar
"dhcpRelayOption82Policy" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.2.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"replace" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
"keep" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP relay option 82 policy.""",
}, # scalar
"dhcpRelayOption82RemoteIDType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.2.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"default" : {
"nodetype" : "namednumber",
"number" : "1"
},
"userdefined" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the type of remote ID.
If the type is default, the remote ID will be the MAC address of the device, otherwise,
the remote ID can be defined by writing to the swDHCPRelayOption82RemoteID object.""",
}, # scalar
"dhcpRelayOption82RemoteID" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.61.2.2.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object displays the current remote ID of the device.
If swDHCPRelayOption82RemoteIDType is set to default, the value will be the MAC address of the device,
and this object cannot be modified.
If swDHCPRelayOption82RemoteIDType is set to user-defined, a new value can be written to this object.""",
}, # scalar
"companyDHCPLocalRelay" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.62",
}, # node
"dhcpLocalRelayGlobalState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.62.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP local relay function of VLAN is enabled or disabled.""",
}, # scalar
"dhcpLocalRelayTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.62.2",
"status" : "current",
"description" :
"""This table indicates the IP address as a destination to forward (local relay) DHCP packets to.""",
}, # table
"dhcpLocalRelayEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.62.2.1",
"status" : "current",
"linkage" : [
"dhcpLocalRelaySettingsVLANID",
],
"description" :
"""A list of information indicates the IP address as a destination to forward (local relay) DHCP packets to.""",
}, # row
"dhcpLocalRelaySettingsVLANID" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.62.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""This object displays the current VLAN ID of the device.""",
}, # column
"dhcpLocalRelaySettingsState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.62.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCP local relay function of VLAN is enabled or disabled.""",
}, # column
"companyDHCPv6Relay" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.63",
}, # node
"dhcpv6RelayControl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.63.1",
}, # node
"dhcpv6RelayState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.63.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCPv6 relay function is enabled or disabled.""",
}, # scalar
"dhcpv6RelayHopCount" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.63.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the maximum number of router hops that the DHCPv6 packets can cross.""",
}, # scalar
"dhcpv6RelayManagement" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.63.2",
}, # node
"dhcpv6RelayInterfaceSettingsTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.63.2.1",
"status" : "current",
"description" :
"""This table indicates the IP address as a destination to forward (relay) DHCP packets to.""",
}, # table
"dhcpv6RelayInterfaceSettingsEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "172.16.58.3.4.1.171.10.75.19.1.63.2.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpv6RelayInterface",
"dhcpv6RelayServerIP",
],
"description" :
"""A list of information indicates the IP address as a destination to forward (relay) DHCP packets to.""",
}, # row
"dhcpv6RelayInterface" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "172.16.58.3.4.1.171.10.75.19.1.63.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "12"
},
],
"range" : {
"min" : "0",
"max" : "12"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the maximum number of router hops that the DHCPv6 packets can cross.""",
}, # column
"dhcpv6RelayServerIP" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.63.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "Ipv6Address"},
},
"access" : "readonly",
"description" :
"""This object indicates the DHCP server IP address.""",
}, # column
"dhcpv6RelayInterfaceSettingsRowStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.63.2.1.1.99",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of this entry.
Only a subset of the rowstatus variables (active, createAndGo, destroy) are available.""",
}, # column
"dhcpv6RelayOption37" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.63.3",
}, # node
"dhcpv6RelayOption37State" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.63.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCPv6 relay option 37 function is enabled or disabled.""",
}, # scalar
"dhcpv6RelayOption37CheckState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.63.3.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates DHCPv6 relay option 37 Check function is enabled or disabled.""",
}, # scalar
"dhcpv6RelayOption37RemoteIDType" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.63.3.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"default" : {
"nodetype" : "namednumber",
"number" : "0"
},
"cid_with_user_define" : {
"nodetype" : "namednumber",
"number" : "1"
},
"user_define" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the type of remote ID.""",
}, # scalar
"dhcpv6RelayOption37RemoteID" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.63.3.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""This object displays the current remote ID of the device.
If RemoteIDType is set to default, the value will be the MAC address of the device,
and this object cannot be modified.
If RemoteIDType is set to user-defined, a new value can be written to this object.""",
}, # scalar
"companyMldsGroup" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88",
}, # node
"mldsSystem" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.1",
}, # node
"mldsStatus" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enables or disables MLD snooping in the system.
When set to 'enabled', the MLDS module starts
protocol operations.
When set to 'disabled', the MLDS module stops performing
protocol operations.""",
}, # scalar
"mldsRouterPortPurgeInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readwrite",
"default" : "260",
"description" :
"""This is the interval (in seconds) after which a learnt
router port entry will be purged. For each router port learnt,
this timer runs for 'RouterPortPurgeInterval' seconds.When the
timer expires, the learnt router port entry is purged. However
if control messages are received from the router before the
timer expiry, then the timer is restarted.""",
}, # scalar
"mldsHostPortPurgeInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "130",
"max" : "153025"
},
],
"range" : {
"min" : "130",
"max" : "153025"
},
},
},
"access" : "readwrite",
"default" : "260",
"description" :
"""This is the interval (in seconds) after which a learnt
port entry will be purged. For each port on which report
has been received this timer runs for 'PortPurgeInterval'
seconds. This timer will be restarted whenever a report
message is received from a host on the specific port. If
the timer expires, then , the learnt port entry will
be purged from the multicast group.""",
}, # scalar
"mldsRobustnessValue" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "2",
"max" : "255"
},
],
"range" : {
"min" : "2",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "2",
"description" :
"""When the switch receives leave message on a port, it
sends group specific query to check if there are any other
interested receivers for the group. This attribute defines
the maximum number of queries sent by the switch before deleting
the port from the group membership information in the forwarding
database. If the maximum retry count exceeds 'mldsRobustnessValue',
then the port will be deleted from the multicast group membership
information in the forwarding database and received leave message
will be forwarded onto the router ports if there are no
interested receivers for the group.""",
}, # scalar
"mldsGrpQueryInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "25"
},
],
"range" : {
"min" : "1",
"max" : "25"
},
},
},
"access" : "readwrite",
"default" : "1",
"description" :
"""The value of this attribute defines the time period with which
the switch will send group specific queries on a port to check
if there is any intersted receivers. The switch will send
'mldsRobustnessValue' queries before removing the port from the
group membership information in the forwarding database.""",
}, # scalar
"mldsQueryInterval" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readwrite",
"default" : "125",
"description" :
"""This is the interval (in seconds) for which the switch
sends general queries when it is configured as a querier for
VLANs.""",
}, # scalar
"mldsQueryMaxResponseTime" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "10",
"max" : "25"
},
],
"range" : {
"min" : "10",
"max" : "25"
},
},
},
"access" : "readwrite",
"default" : "10",
"description" :
"""The maximum query response time advertised in MLDv1 general
queries on this interface.""",
}, # scalar
"mldsVlan" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.3",
}, # node
"mldsVlanRouterTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.3",
"status" : "current",
"description" :
"""This table contains the list of ports through which
a router, in a particular VLAN is reachable.""",
}, # table
"mldsVlanRouterEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.3.3.1",
"status" : "current",
"linkage" : [
"mldsVlanRouterVlanId",
],
"description" :
"""Contains the VLAN ID and list of ports on which
routers are present in the VLAN.""",
}, # row
"mldsVlanRouterVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.3.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""VLAN ID of the ports through which router is reachable.""",
}, # column
"mldsVlanRouterPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""List of ports on which routers are present.
These router ports are learnt through control messages
received from routers, and can also be configured
statically.""",
}, # column
"mldsVlanFilterTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.4",
"status" : "current",
"description" :
"""This table contains configuration of snooping
on specific Vlans. This Table is valid only when VLAN is
enabled in the system.""",
}, # table
"mldsVlanFilterEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.3.4.1",
"status" : "current",
"linkage" : [
"mldsVlanFilterVlanId",
],
"description" :
"""Contains snooping status , version and fast leave
configuration for a specific VLAN.""",
}, # row
"mldsVlanFilterVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""Index of MldsVlanFilterEntry. This object indicates the VLAN ID for which
the snooping configurations in MldsVlanFilterEntry is to be done.""",
}, # column
"mldsVlanSnoopStatus" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "enabled",
"description" :
"""This object allows you to enable/disable MLDS function on a specific VLAN.""",
}, # column
"mldsVlanQuerier" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"default" : "disabled",
"description" :
"""Indicates whether the switch is configured as a querier in the VLAN""",
}, # column
"mldsVlanCfgQuerier" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""The snooping switch can be configured as a querier via this object
to send out MLD general queries when IGMP routers are not present in the VLAN.
When set to 'enabled', the switch will generate general queries.""",
}, # column
"mldsVlanQueryInterval" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.4.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "60",
"max" : "600"
},
],
"range" : {
"min" : "60",
"max" : "600"
},
},
},
"access" : "readonly",
"default" : "125",
"description" :
"""This is the interval (in seconds) for which the switch
sends general queries when it is configured as a querier for
the VLAN. A switch should be configured as a querier for a VLAN
only when there is no queriers in the network.""",
}, # column
"mldsVlanRtrPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.3.4.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""List of ports which are configured statically as router ports""",
}, # column
"mldsVlanFastLeave" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.3.4.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"default" : "disabled",
"description" :
"""Enables or disables fast leave for the VLAN. When it is
'disabled',on reception of a leave message, the switch checks
if they are any interested receivers for the group by sending
a group specific query before removing the port from the
forwarding table. If set to 'enabled', the switch does not
send a group specific query and immediately removes the port
from the forwarding table.""",
}, # column
"mldsVlanMulticastGroupTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.5",
"status" : "current",
"description" :
"""This table contains MAC based multicast forwarding
information.""",
}, # table
"mldsVlanMulticastGroupEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.3.5.1",
"status" : "current",
"linkage" : [
"mldsVlanMulticastGroupVlanId",
"mldsVlanMulticastGroupIpAddress",
],
"description" :
"""This table contains VLAN ID, multicast group MAC address and the
list of ports onto which the multicast data packets for group
should be forwarded.""",
}, # row
"mldsVlanMulticastGroupVlanId" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.5.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""VLAN ID pertaining to the Multicast forwarding entry""",
}, # column
"mldsVlanMulticastGroupIpAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.88.3.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
},
"access" : "readonly",
"description" :
"""Multicast group IP address. This object indicates that a
multicast group address was learned in the switch and be represented
as IP address format.""",
}, # column
"mldsVlanMulticastGroupMacAddress" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""Multicast group MAC address. This object indicates that a
multicast group address was learned in the switch and be represented
as MAC address format.""",
}, # column
"mldsVlanMulticastGroupPortList" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.88.3.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"DES-1210-28P_CX", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""List of ports onto which the multicast data
packets destined for this group will be forwarded.""",
}, # column
"companyDoSCtrl" : {
"nodetype" : "node",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.99",
}, # node
"doSCtrlState" : {
"nodetype" : "scalar",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.99.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of the DoS prevention type.""",
}, # scalar
"doSCtrlTable" : {
"nodetype" : "table",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.99.2",
"status" : "current",
"description" :
"""A table that holds the DoS prevention settings of the device.""",
}, # table
"doSCtrlEntry" : {
"nodetype" : "row",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.99.2.1",
"status" : "current",
"linkage" : [
"doSCtrlType",
],
"description" :
"""A list of DoS prevention settings of the device.""",
}, # row
"doSCtrlType" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.99.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"landattack" : {
"nodetype" : "namednumber",
"number" : "1"
},
"blatattack" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tcpnullscan" : {
"nodetype" : "namednumber",
"number" : "4"
},
"tcpxmascan" : {
"nodetype" : "namednumber",
"number" : "5"
},
"tcpsynfin" : {
"nodetype" : "namednumber",
"number" : "6"
},
"tcpsynsrcportless1024" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""This object indicates the DoS prevention type.""",
}, # column
"doSCtrlDisplayState" : {
"nodetype" : "column",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.99.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""This object indicates the status of the DoS prevention type.""",
}, # column
}, # nodes
"notifications" : {
"topologyChange" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.4",
"status" : "current",
"objects" : {
"ifIndex" : {
"nodetype" : "object",
"module" : "IF-MIB"
},
},
"description" :
"""AST_TOPOLOGY_CHG_TRAP_VAL.""",
}, # notification
"firmwareUpgradeSuccess" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.8",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_SUCC.""",
}, # notification
"firmwareUpgradeFailure" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.27.0.9",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_FAIL.""",
}, # notification
"firmwareIllegalFile" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.27.0.10",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_FAIL2.""",
}, # notification
"firmwareTransferError" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.1.171.10.75.19.1.27.0.11",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_FAIL1.""",
}, # notification
"firmwareChecksumError" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.12",
"status" : "current",
"objects" : {
},
"description" :
"""SNMP_FIRMUPGRADE_FAIL3.""",
}, # notification
"poePowerOn" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.13",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power On.""",
}, # notification
"poePowerOff" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.14",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power Off.""",
}, # notification
"poeShortCircuit" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.15",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power Short Circuit.""",
}, # notification
"poeOverLoad" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.16",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power Over Load.""",
}, # notification
"poePowerDenied" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.17",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Power Denied.""",
}, # notification
"poeThermalShutdown" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.18",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Thermal Shutdown.""",
}, # notification
"poeOverMaxPowerBudget" : {
"nodetype" : "notification",
"moduleName" : "DES-1210-28P_CX",
"oid" : "1.3.6.1.4.172.16.58.3.19.1.27.0.19",
"status" : "current",
"objects" : {
},
"description" :
"""PoE Over Max Power Budget.""",
}, # notification
}, # notifications
}
|
alexanderfefelov/nav-add-ons
|
snmp/nav/mibs/zyxel_es_2024_a.py
|
<filename>snmp/nav/mibs/zyxel_es_2024_a.py
from nav.mibs.mibretriever import MibRetriever
from nav.mibs.snmp_add_on import SnmpAddOn
from nav.smidumps import get_mib
from twisted.internet import defer
import inspect
class ZyXEL_ES_2024_A_Mib(MibRetriever, SnmpAddOn):
mib = get_mib('ZyXEL_390TX3C0_mib')
def get_cpu_loadavg(self):
self._logger.debug(here(self))
return defer.succeed(None)
@defer.inlineCallbacks
def get_cpu_utilization(self):
self._logger.debug(here(self))
result = {}
utilization = yield self.get_next('sysMgmtCPUUsage')
result['cpu'] = utilization
defer.returnValue(result)
@defer.inlineCallbacks
def get_memory_usage(self):
self._logger.debug(here(self))
result = {}
columns = yield self.retrieve_columns([
'sysMemoryPoolName',
'sysMemoryPoolTotal',
'sysMemoryPoolUsed'
])
if columns:
for _, item in columns.items():
pool_name = str(item.get('sysMemoryPoolName'))
total = int(item.get('sysMemoryPoolTotal'))
used = int(item.get('sysMemoryPoolUsed'))
free = total - used
result[pool_name] = (used, free)
defer.returnValue(result)
here = lambda this: 'here: {}:{} {}.{}'.format(inspect.stack()[1].filename, inspect.stack()[1].lineno, type(this).__name__, inspect.stack()[1].function)
|
SohamChattopadhyayEE/Medical-image-segmentation
|
main.py
|
import argparse
import logging
import os
import sys
import numpy as np
import torch
import torch.nn as nn
from torch import optim
from tqdm import tqdm
from torch.utils.tensorboard import SummaryWriter
from torch.utils.data import DataLoader, random_split
import util.evaluation.*
import util.predict_image.*
import util.dice_coeff.*
import util.data_view.*
from data.dataset import BasicDataset
from models import R2UNet.R2U_Net as seg_model
import warnings
warnings.filterwarnings("ignore")
model_name = ["UNet", "AtttentionUNet", "R2U_Net", "R2AttentionUNet"]
segmentation_model = model_name[2]
dir_img_train = '/content/drive/MyDrive/Brain Segmentation/train/Inputs'
dir_mask_train = '/content/drive/MyDrive/Brain Segmentation/train/Outputs'
dir_img_val = '/content/drive/MyDrive/Brain Segmentation/val/Inputs'
dir_mask_val = '/content/drive/MyDrive/Brain Segmentation/val/Outputs'
dir_checkpoint = '/content/drive/MyDrive/Brain Segmentation'
batch_size = 30
num_epoch = 200
num_channels = 3
num_classes = 1
lr = 0.0001
img_scale = 1
mask_threshold = 0.5
dataset_train = BasicDataset(dir_img_train, dir_mask_train, img_scale, mask_suffix='_mask')
dataset_val = BasicDataset(dir_img_val, dir_mask_val, img_scale, mask_suffix='_mask')
train_loader = DataLoader(dataset_train, batch_size=batch_size, shuffle=True)#, num_workers=8, pin_memory=True)
val_loader = DataLoader(dataset_val, batch_size=batch_size, shuffle=False)#, num_workers=8, pin_memory=True, drop_last=True)
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
if segmentation_model == "UNet":
net = seg_model(n_channels = num_channels, n_classes = num_classes)
else:
net = seg_model(img_ch=num_channels,output_ch=num_classes)
net = net.to(device=device)
optimizer = optim.RMSprop(net.parameters(), lr=lr, weight_decay=1e-8, momentum=0.9)
#optimizer = optim.Adam(net.parameters(), lr=lr)
if net.n_classes > 1:
criterion = nn.CrossEntropyLoss()
else:
criterion = nn.BCEWithLogitsLoss()
criterion = DiceCoeff()
iou = IoU(num_classes = 2)
for epoch in range(num_epoch):
net.train()
train_loss = 0.0
miou = total = 0
print('Epoch: ', epoch)
for itr, data in enumerate(train_loader):
#print('Training data: ', itr)
optimizer.zero_grad()
image, mask = data['image'], data['mask']
mask_type = torch.float32 if net.n_classes == 1 else torch.long
image = image.to(device=device, dtype = torch.float32)
original_mask = mask.to(device=device, dtype = mask_type)
pred_mask = net(image)
#loss = criterion(pred_mask, original_mask)
loss = dice_coeff(pred_mask, original_mask)
loss.backward()
optimizer.step()
train_loss += loss.item()
total += mask.size(0)
iou.add(pred_mask, original_mask)
_, miou_temp = iou.value()
miou += miou_temp
print('Train loss: ', train_loss/len(dataset_train))
print('mIoU: ', miou*100/total)
fn = '/content/drive/MyDrive/Brain Segmentation/train/Inputs/TCGA_DU_6405_19851005_58.tif'
fn_mask = '/content/drive/MyDrive/Brain Segmentation/train/Outputs/TCGA_DU_6405_19851005_58_mask.tif'
img = Image.open(fn)
img_mask = Image.open(fn_mask)
mask = predict_img(net=net,
full_img=img,
scale_factor=img_scale,
out_threshold=mask_threshold,
device=device)
plot_img_and_mask(img_mask, mask)
net.eval()
with torch.no_grad():
val_loss = 0.0
for iter, val_data in enumerate(val_loader):
#print('Validation data: ', iter)
image, mask = val_data['image'], val_data['mask']
mask_type = torch.float32 if net.n_classes == 1 else torch.long
image = image.to(device=device, dtype = torch.float32)
original_mask = mask.to(device=device, dtype = mask_type)
pred_mask = net(image)
#loss = criterion(pred_mask, original_mask)
loss = dice_coeff(pred_mask, original_mask)
val_loss += loss.item()
print('validation loss: ', val_loss/len(dataset_val))
fn = '/content/drive/MyDrive/Brain Segmentation/test/Inputs/TCGA_HT_A61B_19991127_69.tif'
fn_mask = '/content/drive/MyDrive/Brain Segmentation/test/Outputs/TCGA_HT_A61B_19991127_69_mask.tif'
img = Image.open(fn)
img_mask = Image.open(fn_mask)
mask = predict_img(net=net,
full_img=img,
scale_factor=img_scale,
out_threshold=mask_threshold,
device=device)
plot_img_and_mask(img_mask, mask)
|
SohamChattopadhyayEE/Medical-image-segmentation
|
util/predict_image.py
|
<reponame>SohamChattopadhyayEE/Medical-image-segmentation
import argparse
import logging
import os
import numpy as np
import torch
import torch.nn.functional as F
from PIL import Image
from torchvision import transforms
def predict_img(net,
full_img,
device,
scale_factor=1,
out_threshold=0.5):
net.eval()
img = torch.from_numpy(BasicDataset.preprocess(full_img, scale_factor))
img = img.unsqueeze(0)
img = img.to(device=device, dtype=torch.float32)
with torch.no_grad():
output = net(img)
if net.n_classes > 1:
probs = F.softmax(output, dim=1)
else:
probs = torch.sigmoid(output)
probs = probs.squeeze(0)
tf = transforms.Compose(
[
transforms.ToPILImage(),
transforms.Resize(full_img.size[1]),
transforms.ToTensor()
]
)
probs = tf(probs.cpu())
full_mask = probs.squeeze().cpu().numpy()
return full_mask > out_threshold
|
nhancv/nc-rd-student
|
15062018_ltphy/FaceRecognition/Face_Recognition/KNN/convertToGray.py
|
<filename>15062018_ltphy/FaceRecognition/Face_Recognition/KNN/convertToGray.py<gh_stars>0
from PIL import Image
import face_recognition
import os
import numpy
count = 1
for file in os.listdir("dataset"):
for image_file in os.listdir("dataset/"+file+"/"):
full_file_path = os.path.join("dataset/"+file+"/", image_file)
image = Image.open(open(full_file_path,'rb'))
pil_image = image.convert('L') #convert to gray scale
pil_image = pil_image.rotate(-90)#
newPath = "result/" + str(file)
if not os.path.exists(newPath):
os.makedirs(newPath)
pil_image.save("result/" + str(file) + '/' + str(count) + ".jpg")
count = count + 1
count = 1
|
GAONNR/github-stats-screenshots-crawler
|
auto_downloader.py
|
<reponame>GAONNR/github-stats-screenshots-crawler
import os
import glob
import argparse
import subprocess
import pandas as pd
from git import Repo
from options import CREDENTIAL
class cd:
"""Context manager for changing the current working directory"""
def __init__(self, newPath):
self.newPath = os.path.expanduser(newPath)
def __enter__(self):
self.savedPath = os.getcwd()
os.chdir(self.newPath)
def __exit__(self, etype, value, traceback):
os.chdir(self.savedPath)
def git_clone(url):
git_url = ('//%s@github.<EMAIL>/' %
CREDENTIAL['id']).join(url.split('//github.com/'))
repo_name = url.split('/')[-1]
Repo.clone_from(git_url, './repos/%s' % repo_name)
print('Cloned %s.' % repo_name)
def _main(args):
df = pd.read_csv('url_list.csv')
if not args.script_only:
for url in df['URL']:
git_clone(url.strip())
for reponame in glob.glob('./repos/*/'):
with cd(reponame):
subprocess.call(['bash', '../../git_commit_log.sh'])
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--script_only', action='store_true')
args = parser.parse_args()
_main(args)
|
GAONNR/github-stats-screenshots-crawler
|
crawl.py
|
<reponame>GAONNR/github-stats-screenshots-crawler<filename>crawl.py
import argparse
import time
import pandas as pd
import selenium
from selenium import webdriver
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
from options import CREDENTIAL
parser = argparse.ArgumentParser()
parser.add_argument('--no_permission', action='store_true')
parser.add_argument('--timeout', type=int, default=10)
ARGS = parser.parse_args()
def get_number_from_page(driver, selector):
try:
return int(WebDriverWait(driver, ARGS.timeout)
.until(
EC.presence_of_element_located(
(By.CSS_SELECTOR, selector)))
.get_attribute('innerText'))
except TimeoutException:
try:
return int(WebDriverWait(driver, ARGS.timeout * 12)
.until(
EC.presence_of_element_located(
(By.CSS_SELECTOR, selector)))
.get_attribute('innerText'))
except TimeoutException:
return 1
except ValueError:
time.sleep(2)
return int(WebDriverWait(driver, ARGS.timeout)
.until(
EC.presence_of_element_located(
(By.CSS_SELECTOR, selector)))
.get_attribute('innerText'))
class Stat:
def __init__(self):
self.watches = 0
self.stars = 0
self.forks = 0
self.issues = 0
self.commits = 0
self.branches = 0
self.releases = 0
self.contributors = 0
self.clones = 0
self.visitors = 0
self.visitors_unique = 0
def __update_from_main(self, driver, url):
print('Getting stats from main...')
driver.get(url)
self.watches = get_number_from_page(
driver, 'ul.pagehead-actions li:nth-child(1) a.social-count')
self.stars = get_number_from_page(
driver, 'ul.pagehead-actions li:nth-child(2) a.social-count')
self.forks = get_number_from_page(
driver, 'ul.pagehead-actions li:nth-child(3) a.social-count')
self.commits = get_number_from_page(
driver, '.js-details-container.Details ul.list-style-none span strong')
self.branches = get_number_from_page(
driver, '.file-navigation .flex-self-center a:nth-child(1) strong')
if len(driver.find_elements_by_css_selector('.BorderGrid .BorderGrid-row:nth-child(2) h2.h4 span.Counter')) > 0:
self.releases = get_number_from_page(
driver, '.BorderGrid .BorderGrid-row:nth-child(2) h2.h4 span.Counter')
if len(driver.find_elements_by_css_selector('.BorderGrid .BorderGrid-row')) < 5:
self.contributors = 1
else:
self.contributors = get_number_from_page(
driver, '.BorderGrid .BorderGrid-row:nth-last-child(2) h2.h4 span.Counter')
def __update_from_issues(self, driver, url):
print('Getting stats from issues...')
driver.get(url)
try:
open_issues = int(WebDriverWait(driver, ARGS.timeout)
.until(
EC.presence_of_element_located(
(By.CSS_SELECTOR,
'#js-issues-toolbar .table-list-header-toggle a:nth-child(1)')))
.get_attribute('innerText').strip().split('Open')[0])
closed_issues = int(WebDriverWait(driver, ARGS.timeout)
.until(
EC.presence_of_element_located(
(By.CSS_SELECTOR,
'#js-issues-toolbar .table-list-header-toggle a:nth-child(2)')))
.get_attribute('innerText').strip().split('Closed')[0])
self.issues = open_issues + closed_issues
except selenium.common.exceptions.TimeoutException:
self.issues = 0
def __update_from_traffic(self, driver, url):
print('Getting stats from traffic...')
driver.get(url)
try:
self.clones = get_number_from_page(
driver, '#js-clones-graph span.clones')
except ValueError:
self.clones = 0
try:
self.visitors = get_number_from_page(
driver, '#js-visitors-graph span.visits')
except ValueError:
self.visitors = 0
try:
self.visitors_unique = get_number_from_page(
driver, '#js-visitors-graph span.uniques')
except ValueError:
self.visitors_unique = 0
def update(self, driver, url):
fname_base = url.split('/')[-1]
# Watches / Stars / Forks / Commits / Branches / Releases / Contributors
self.__update_from_main(driver, url)
get_fullpage_shot(driver, '%s.png' % fname_base)
self.__update_from_issues(driver, '%s/issues' % url)
get_fullpage_shot(driver, '%s_open_issues.png' % fname_base)
driver.get('%s/issues?q=is%%3Aissue+is%%3Aclosed' % url)
get_fullpage_shot(driver, '%s_closed_issues.png' % fname_base)
def update_perm(self, driver, url):
fname_base = url.split('/')[-1]
self.__update_from_traffic(driver, '%s/graphs/traffic' % url)
get_fullpage_shot(driver, '%s_traffic.png' % fname_base)
def prepare_for_github_credentials(timeout):
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--start-maximized')
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.implicitly_wait(timeout)
print('Github login processing...')
driver.get('https://github.com/login')
driver.find_element_by_id('login_field').send_keys(CREDENTIAL['id'])
driver.find_element_by_id('password').send_keys(CREDENTIAL['pw'])
driver.find_element_by_name('commit').click()
print('Done.')
return driver
def get_fullpage_shot(driver, fname):
body = driver.find_element_by_tag_name('body')
window_height = body.size['height']
driver.set_window_size(1920, window_height) # the trick
driver.save_screenshot('screenshots/%s' % fname)
def get_repo_stat(driver, url, no_perm):
print('Accessing %s...' % url)
repo_stat = Stat()
repo_stat.update(driver, url)
if not no_perm:
repo_stat.update_perm(driver, url)
print('Done.')
return repo_stat
def __main():
driver = prepare_for_github_credentials(ARGS.timeout)
df = pd.read_csv('url_list.csv')
res = [get_repo_stat(driver, url.strip(), ARGS.no_permission)
for url in df['URL']]
driver.quit()
df['Watches'] = [stat.watches for stat in res]
df['Stars'] = [stat.stars for stat in res]
df['Forks'] = [stat.forks for stat in res]
df['Issues'] = [stat.issues for stat in res]
df['Commits'] = [stat.commits for stat in res]
df['Branches'] = [stat.branches for stat in res]
df['Releases'] = [stat.releases for stat in res]
df['Contributors'] = [stat.contributors for stat in res]
df['Clones'] = [stat.clones for stat in res]
df['Visitors'] = [stat.visitors for stat in res]
df['Visitors(unique)'] = [stat.visitors_unique for stat in res]
df.to_csv('result.csv')
if __name__ == '__main__':
__main()
|
GAONNR/github-stats-screenshots-crawler
|
make_pdf.py
|
import selenium
import pandas as pd
from pylatex import (Document, Section, Figure, Command)
from pylatex.utils import NoEscape
from tqdm import tqdm
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support.ui import WebDriverWait
from options import CREDENTIAL
FNAME_RULE = [
'%s/%s.png',
'%s/%s_open_issues.png',
'%s/%s_closed_issues.png',
'%s/%s_traffic.png'
]
IMAGEPATH = '../screenshots'
LATEX_OPTION = {'tmargin': '1cm', 'lmargin': '3cm'}
def get_license(driver, license_url):
driver.get(license_url)
try:
raw_lines = driver.find_elements_by_css_selector(
'div.blob-wrapper tbody tr td:nth-child(2)')
lines = [el.text.strip() for el in raw_lines]
return ' \n'.join(lines).replace(' \n \n', 'SUPERSUPER').replace(' \n', ' ').replace('SUPERSUPER', '\n')
except:
return 'None'
def generate_pdf(driver, url, fname_base):
license_url = '%s/blob/master/LICENSE' % url
license_txt = get_license(driver, license_url)
doc = Document(geometry_options=LATEX_OPTION)
doc.preamble.append(Command('title', fname_base))
doc.append(NoEscape('\\maketitle'))
with doc.create(Section('LICENSE')):
doc.append(license_txt)
with doc.create(Section('Web pages')):
for fname_rule in FNAME_RULE:
fname = fname_rule % (IMAGEPATH, fname_base)
with doc.create(Figure(position='!htbp')) as fig:
fig.add_image(fname, width=NoEscape('\\textwidth'))
doc.generate_pdf('pdfs/%s' % fname_base,
clean_tex=False, compiler='pdflatex')
def prepare_for_github_credentials():
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--start-maximized')
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.implicitly_wait(10)
print('Github login processing...')
driver.get('https://github.com/login')
driver.find_element_by_id('login_field').send_keys(CREDENTIAL['id'])
driver.find_element_by_id('password').send_keys(CREDENTIAL['pw'])
driver.find_element_by_name('commit').click()
print('Done.')
return driver
def __main():
driver = prepare_for_github_credentials()
df = pd.read_csv('url_list.csv')
for url in tqdm(df['URL']):
fname_base = url.split('/')[-1]
generate_pdf(driver, url, fname_base)
if __name__ == '__main__':
__main()
|
jantenhove/home-assistant
|
homeassistant/components/wwlln/config_flow.py
|
"""Config flow to configure the WWLLN integration."""
import voluptuous as vol
from homeassistant import config_entries
from homeassistant.helpers import config_validation as cv
from homeassistant.const import (
CONF_LATITUDE, CONF_LONGITUDE, CONF_RADIUS, CONF_UNIT_SYSTEM,
CONF_UNIT_SYSTEM_IMPERIAL, CONF_UNIT_SYSTEM_METRIC)
from homeassistant.core import callback
from .const import CONF_WINDOW, DEFAULT_RADIUS, DEFAULT_WINDOW, DOMAIN
@callback
def configured_instances(hass):
"""Return a set of configured WWLLN instances."""
return set(
'{0}, {1}'.format(
entry.data[CONF_LATITUDE], entry.data[CONF_LONGITUDE])
for entry in hass.config_entries.async_entries(DOMAIN)
)
@config_entries.HANDLERS.register(DOMAIN)
class WWLLNFlowHandler(config_entries.ConfigFlow):
"""Handle a WWLLN config flow."""
VERSION = 1
CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL
async def _show_form(self, errors=None):
"""Show the form to the user."""
data_schema = vol.Schema({
vol.Optional(CONF_LATITUDE, default=self.hass.config.latitude):
cv.latitude,
vol.Optional(CONF_LONGITUDE, default=self.hass.config.longitude):
cv.longitude,
vol.Optional(CONF_RADIUS, default=DEFAULT_RADIUS): cv.positive_int,
})
return self.async_show_form(
step_id="user", data_schema=data_schema, errors=errors or {})
async def async_step_import(self, import_config):
"""Import a config entry from configuration.yaml."""
return await self.async_step_user(import_config)
async def async_step_user(self, user_input=None):
"""Handle the start of the config flow."""
if not user_input:
return await self._show_form()
identifier = '{0}, {1}'.format(
user_input[CONF_LATITUDE], user_input[CONF_LONGITUDE])
if identifier in configured_instances(self.hass):
return await self._show_form({'base': 'identifier_exists'})
if self.hass.config.units.name == CONF_UNIT_SYSTEM_IMPERIAL:
user_input[CONF_UNIT_SYSTEM] = CONF_UNIT_SYSTEM_IMPERIAL
else:
user_input[CONF_UNIT_SYSTEM] = CONF_UNIT_SYSTEM_METRIC
# To simplify things, we don't allow users of the config flow to
# input a window; instead, we make a sane assumption to use the
# default (stored as seconds, since timedelta's aren't
# JSON-serializable):
if CONF_WINDOW not in user_input:
user_input[CONF_WINDOW] = DEFAULT_WINDOW.total_seconds()
return self.async_create_entry(title=identifier, data=user_input)
|
jantenhove/home-assistant
|
tests/components/wwlln/test_config_flow.py
|
<reponame>jantenhove/home-assistant
"""Define tests for the WWLLN config flow."""
from homeassistant import data_entry_flow
from homeassistant.components.wwlln import CONF_WINDOW, DOMAIN, config_flow
from homeassistant.const import (
CONF_LATITUDE, CONF_LONGITUDE, CONF_RADIUS, CONF_UNIT_SYSTEM)
from tests.common import MockConfigEntry
async def test_duplicate_error(hass):
"""Test that errors are shown when duplicates are added."""
conf = {
CONF_LATITUDE: 39.128712,
CONF_LONGITUDE: -104.9812612,
CONF_RADIUS: 25,
}
MockConfigEntry(domain=DOMAIN, data=conf).add_to_hass(hass)
flow = config_flow.WWLLNFlowHandler()
flow.hass = hass
result = await flow.async_step_user(user_input=conf)
assert result['errors'] == {'base': 'identifier_exists'}
async def test_show_form(hass):
"""Test that the form is served with no input."""
flow = config_flow.WWLLNFlowHandler()
flow.hass = hass
result = await flow.async_step_user(user_input=None)
assert result['type'] == data_entry_flow.RESULT_TYPE_FORM
assert result['step_id'] == 'user'
async def test_step_import(hass):
"""Test that the import step works."""
conf = {
CONF_LATITUDE: 39.128712,
CONF_LONGITUDE: -104.9812612,
CONF_RADIUS: 25,
CONF_UNIT_SYSTEM: 'metric',
CONF_WINDOW: 600.0,
}
flow = config_flow.WWLLNFlowHandler()
flow.hass = hass
result = await flow.async_step_import(import_config=conf)
assert result['type'] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
assert result['title'] == '39.128712, -104.9812612'
assert result['data'] == {
CONF_LATITUDE: 39.128712,
CONF_LONGITUDE: -104.9812612,
CONF_RADIUS: 25,
CONF_UNIT_SYSTEM: 'metric',
CONF_WINDOW: 600.0,
}
async def test_step_user(hass):
"""Test that the user step works."""
conf = {
CONF_LATITUDE: 39.128712,
CONF_LONGITUDE: -104.9812612,
CONF_RADIUS: 25,
}
flow = config_flow.WWLLNFlowHandler()
flow.hass = hass
result = await flow.async_step_user(user_input=conf)
assert result['type'] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
assert result['title'] == '39.128712, -104.9812612'
assert result['data'] == {
CONF_LATITUDE: 39.128712,
CONF_LONGITUDE: -104.9812612,
CONF_RADIUS: 25,
CONF_UNIT_SYSTEM: 'metric',
CONF_WINDOW: 600.0,
}
async def test_custom_window(hass):
"""Test that a custom window is stored correctly."""
conf = {
CONF_LATITUDE: 39.128712,
CONF_LONGITUDE: -104.9812612,
CONF_RADIUS: 25,
CONF_WINDOW: 300
}
flow = config_flow.WWLLNFlowHandler()
flow.hass = hass
result = await flow.async_step_user(user_input=conf)
assert result['type'] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
assert result['title'] == '39.128712, -104.9812612'
assert result['data'] == {
CONF_LATITUDE: 39.128712,
CONF_LONGITUDE: -104.9812612,
CONF_RADIUS: 25,
CONF_UNIT_SYSTEM: 'metric',
CONF_WINDOW: 300,
}
|
jantenhove/home-assistant
|
homeassistant/components/climate/const.py
|
<gh_stars>1-10
"""Provides the constants needed for component."""
# All activity disabled / Device is off/standby
HVAC_MODE_OFF = 'off'
# Heating
HVAC_MODE_HEAT = 'heat'
# Cooling
HVAC_MODE_COOL = 'cool'
# The device supports heating/cooling to a range
HVAC_MODE_HEAT_COOL = 'heat_cool'
# The temperature is set based on a schedule, learned behavior, AI or some
# other related mechanism. User is not able to adjust the temperature
HVAC_MODE_AUTO = 'auto'
# Device is in Dry/Humidity mode
HVAC_MODE_DRY = 'dry'
# Only the fan is on, not fan and another mode like cool
HVAC_MODE_FAN_ONLY = 'fan_only'
HVAC_MODES = [
HVAC_MODE_OFF,
HVAC_MODE_HEAT,
HVAC_MODE_COOL,
HVAC_MODE_HEAT_COOL,
HVAC_MODE_AUTO,
HVAC_MODE_DRY,
HVAC_MODE_FAN_ONLY,
]
# Device is running an energy-saving mode
PRESET_ECO = 'eco'
# Device is in away mode
PRESET_AWAY = 'away'
# Device turn all valve full up
PRESET_BOOST = 'boost'
# Device is in comfort mode
PRESET_COMFORT = 'comfort'
# Device is in home mode
PRESET_HOME = 'home'
# Device is prepared for sleep
PRESET_SLEEP = 'sleep'
# Device is reacting to activity (e.g. movement sensors)
PRESET_ACTIVITY = 'activity'
# Possible fan state
FAN_ON = "on"
FAN_OFF = "off"
FAN_AUTO = "auto"
FAN_LOW = "low"
FAN_MEDIUM = "medium"
FAN_HIGH = "high"
FAN_MIDDLE = "middle"
FAN_FOCUS = "focus"
FAN_DIFFUSE = "diffuse"
# Possible swing state
SWING_OFF = "off"
SWING_BOTH = "both"
SWING_VERTICAL = "vertical"
SWING_HORIZONTAL = "horizontal"
# This are support current states of HVAC
CURRENT_HVAC_OFF = 'off'
CURRENT_HVAC_HEAT = 'heating'
CURRENT_HVAC_COOL = 'cooling'
CURRENT_HVAC_DRY = 'drying'
CURRENT_HVAC_IDLE = 'idle'
CURRENT_HVAC_FAN = 'fan'
ATTR_AUX_HEAT = 'aux_heat'
ATTR_CURRENT_HUMIDITY = 'current_humidity'
ATTR_CURRENT_TEMPERATURE = 'current_temperature'
ATTR_FAN_MODES = 'fan_modes'
ATTR_FAN_MODE = 'fan_mode'
ATTR_PRESET_MODE = 'preset_mode'
ATTR_PRESET_MODES = 'preset_modes'
ATTR_HUMIDITY = 'humidity'
ATTR_MAX_HUMIDITY = 'max_humidity'
ATTR_MIN_HUMIDITY = 'min_humidity'
ATTR_MAX_TEMP = 'max_temp'
ATTR_MIN_TEMP = 'min_temp'
ATTR_HVAC_ACTIONS = 'hvac_action'
ATTR_HVAC_MODES = 'hvac_modes'
ATTR_HVAC_MODE = 'hvac_mode'
ATTR_SWING_MODES = 'swing_modes'
ATTR_SWING_MODE = 'swing_mode'
ATTR_TARGET_TEMP_HIGH = 'target_temp_high'
ATTR_TARGET_TEMP_LOW = 'target_temp_low'
ATTR_TARGET_TEMP_STEP = 'target_temp_step'
DEFAULT_MIN_TEMP = 7
DEFAULT_MAX_TEMP = 35
DEFAULT_MIN_HUMITIDY = 30
DEFAULT_MAX_HUMIDITY = 99
DOMAIN = 'climate'
SERVICE_SET_AUX_HEAT = 'set_aux_heat'
SERVICE_SET_FAN_MODE = 'set_fan_mode'
SERVICE_SET_PRESET_MODE = 'set_preset_mode'
SERVICE_SET_HUMIDITY = 'set_humidity'
SERVICE_SET_HVAC_MODE = 'set_hvac_mode'
SERVICE_SET_SWING_MODE = 'set_swing_mode'
SERVICE_SET_TEMPERATURE = 'set_temperature'
SUPPORT_TARGET_TEMPERATURE = 1
SUPPORT_TARGET_TEMPERATURE_RANGE = 2
SUPPORT_TARGET_HUMIDITY = 4
SUPPORT_FAN_MODE = 8
SUPPORT_PRESET_MODE = 16
SUPPORT_SWING_MODE = 32
SUPPORT_AUX_HEAT = 64
|
Tabitha2912/PersonalWeb
|
6.3/Scraping.py
|
<gh_stars>0
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
from datetime import datetime
import urllib.request
import json
s = Service("D:/Kuliah/Semester 2/Proyek 1/Pertemuan 6/Tugas 6.3/msedgedriver.exe")
driver = webdriver.Edge(service=s)
driver.get("https://editorial.rottentomatoes.com/guide/best-disney-movies-to-watch-now/")
# now = datetime.now()
# tgl = now.strftime("%m/%d/%Y, %H:%M:%S")
# movie=[]
# i=1
content=driver.find_elements(By.CLASS_NAME, "row.countdown-item")
for movielist in content:
print(movielist.text.split("\n"))
for img in movielist.find_elements(By.TAG_NAME,"img"):
print(img.get_attribute("src"))
# urllib.request.urlretrieve(img.get_attribute("src"), str(i)+".png")
#i = i+1
# movie.append(
# {"Ranking":movielist.text.split("\n")[2].split("#",1)[1],
# "Title":movielist.text.split("\n")[0].split(" (",1)[0],
# "Release_Date":movielist.text.split("\n")[0].split(" (", 1)[1].split(")")[0],
# "Percent_Rate":movielist.text.split("\n")[1],
# "Director":movielist.text.split("\n")[6].split("Directed By: ",1)[1],
# "Scraping_Date":tgl,
# "Image": img.get_attribute("src")
# }
# )
# hasil_scraping = open("hasilscraping.json", "w")
# json.dump(movie, hasil_scraping, indent = 6)
# hasil_scraping.close()
driver.quit()
|
Tabitha2912/PersonalWeb
|
6.2/Scrapper.py
|
<filename>6.2/Scrapper.py
#Import package requests dan BeautifulSoup
import requests
from bs4 import BeautifulSoup
# Request ke website
page = requests.get("https://www.republika.co.id/");
# Extract konten menjadi objek BeautifulSoup
obj = BeautifulSoup(page.text, 'html.parser');
print('Menampilkan objek html')
print('======================')
print(obj)
print('\nMenampilkan title browser dengan tag')
print('======================================')
print(obj.title)
print('\nMenampilkan title browser tanpa tag')
print('======================================')
print(obj.title.text)
print('\nMenampilkan semua tag h2')
print('======================================')
print(obj.find_all('h2'));
print('\nMenampilkan semua teks h2')
print('======================================')
for headline in obj.find_all('h2'):
print(headline.text)
print('\nMenampilkan headline berdasarkan div class')
print('============================================')
print(obj.find_all('div', class_='bungkus_txt_headline_center'))
print('\nMenampilkan semua teks headline')
print('============================================')
for headline in obj.find_all('div', class_='bungkus_txt_headline_center'):
print(headline.find('h2').text)
print('\nMenyimpan headline pada file text')
print('===================================')
f = (open('D:\\Kuliah\\Semester 2\\Proyek 1\\Pertemuan 6\\Scraping\\headline.txt', 'w'))
for headline in obj.find_all('div', class_='bungkus_txt_headline_center'):
f.write(headline.find('h2').text)
f.write('\n')
f.close()
print('\nMenyimpan headline pada file json')
print('===================================')
#Import package json
import json;
# Deklarasi list kosong
data=[]
#Lokasi file json
f = (open('C:\\xampp2\\htdocs\\Scraping\\headline.json', 'w'))
for headline in obj.find_all('div', class_='bungkus_txt_headline_center'):
data.append({"judul":headline.find('h2').text, "kategori":headline.find('h1').text})
jdumps = json.dumps(data)
f.writelines(jdumps)
f.close()
from datetime import datetime
now = datetime.now()
tgl = now.strftime("%m/%d/%Y, %H:%M:%S")
dataTerkini=[]
f = (open('C:\\xampp2\\htdocs\\Scraping\\terkini.json', 'w'))
for terkini in obj.find_all('div', class_='teaser_conten1_center'):
dataTerkini.append({"judul":terkini.find('h2').text, "kategori":terkini.find('h1').text, "tanggal":terkini.find('div',class_='date').text, "waktu":tgl})
jdumps = json.dumps(dataTerkini)
f.writelines(jdumps)
f.close()
|
bit-bots/karma
|
karma/api/views.py
|
from datetime import timedelta
from django.core.exceptions import ObjectDoesNotExist
from django.db.models import Q, Sum, F
from django.db.models.functions import TruncDate
from django.utils.timezone import now
from rest_framework import mixins, viewsets
from rest_framework.decorators import action
from rest_framework.response import Response
from rest_framework.status import HTTP_400_BAD_REQUEST
from karma.api.serializers import KarmaSerializer, ProjectSerializer, HighscoreSerializer
from karma.karma.models import KarmaPoints, Project
class KarmaViewSet(viewsets.GenericViewSet,
mixins.CreateModelMixin,
mixins.ListModelMixin):
serializer_class = KarmaSerializer
def get_queryset(self):
if 'project' in self.request.query_params:
try:
project = Project.objects.get(Q(name=self.request.query_params['project']) & (
Q(user=self.request.user) | Q(group__in=self.request.user.groups.all())))
except ObjectDoesNotExist:
return None
return KarmaPoints.objects.filter(project=project)
return KarmaPoints.objects.filter(Q(project__user=self.request.user) | Q(project__group__in=self.request.user.groups.all()))
@action(detail=False)
def by_day(self, request):
"""Group information by day and user"""
queryset = self.get_queryset()
if queryset:
points = queryset.annotate(date=TruncDate('time'), username=F('user__username')).values('username', 'date').order_by('date').annotate(Sum('points'))
return Response(points)
return Response(status=404)
class ProjectViewSet(viewsets.GenericViewSet,
mixins.ListModelMixin):
serializer_class = ProjectSerializer
def get_queryset(self):
return Project.objects.filter(Q(user=self.request.user) | Q(group__in=self.request.user.groups.all()))
class HighscoreViewSet(viewsets.GenericViewSet,
mixins.ListModelMixin):
serializer_class = HighscoreSerializer
def list(self, request, *args, **kwargs):
try:
project = Project.objects.get(Q(name=self.request.query_params['project']) & (
Q(user=self.request.user) | Q(group__in=self.request.user.groups.all())))
except ObjectDoesNotExist:
return Response({'project': ['Project does not exist']}, status=HTTP_400_BAD_REQUEST)
days = self.request.query_params['days']
try:
days = int(days)
except ValueError:
return Response({'days': ['Days must be a number']})
userpoints = KarmaPoints.objects. \
filter(project=project, time__gte=now() - timedelta(days=days)). \
values('user__username'). \
annotate(points=Sum('points')). \
order_by('-points')
serializer = self.get_serializer(userpoints)
return Response(serializer.data)
|
bit-bots/karma
|
karma/karma/urls.py
|
from django.conf.urls import url
from .views import *
urlpatterns = [
url(r'^$', index, name='karma_index'),
url(r'^personal$', personal_page, name='karma_personal'),
url(r'^add_project$', add_project, name='karma_add_project'),
url(r'^add_categories$', add_categories, name='karma_add_categories'),
url(r'^category/([\d]+)$', category_overview, name='karma_category_overview'),
url(r'^project/([\d]+)$', project_overview, name='karma_project_overview'),
url(r'^project_highscore/([\d]+)/([\d]+)$', project_highscore, name='karma_project_highscore'),
url(r'^project/([\d]+)/([a-zA-Z0-9\.]+)$', project_user, name='karma_project_user'),
url(r'^api/project/([\d]+)/active_count/days/([a-zA-Z0-9]+)$', api_project_user_count, name='karma_api_project_user_count'),
url(r'^api/project/([\d]+)/active_points/$', api_project_activity_points, name='karma_api_project_activity_count'),
url(r'^personal/edit/(\d+)/$', personal_page, name="edit_points"),
url(r'^project/rules/$', karma_rules, name="karma_rules"),
]
|
bit-bots/karma
|
karma/calibration/views.py
|
from datetime import timedelta, date
import random
import statistics
from django.conf import settings
from django.contrib import messages
from django.contrib.auth.decorators import login_required
from django.db.models import Sum
from django.http import HttpResponseBadRequest, HttpResponse
from django.shortcuts import render
from rest_framework.status import HTTP_400_BAD_REQUEST
from karma.karma.models import KarmaPoints, Project
from karma.calibration.forms import CalibrationForm
from karma.calibration.models import Calibration
@login_required
def calibration(request):
if request.method == 'POST':
form = CalibrationForm(request.POST)
if form.is_valid():
c = form.save(commit=False)
c.user = request.user
c.save()
messages.success(request, 'Calibration submitted successfully')
else:
raise HttpResponseBadRequest()
range_start = date.today() - timedelta(days=365)
range_end = date.today()
start = range_start + random.random() * (range_end - range_start)
end = start + timedelta(days=7)
project = Project.objects.get(id=settings.CALIBRATION_PROJECT)
week_entries = KarmaPoints.objects. \
filter(project=project, time__gte=start, time__lte=end + timedelta(days=1))
week_points = week_entries. \
values('user__username'). \
annotate(points=Sum('points')).order_by('-points')
week_persons = len(week_points)
day_entries = KarmaPoints.objects. \
filter(project=project, time__day=end.day, time__month=end.month, time__year=end.year)
day_points = day_entries. \
values('user__username'). \
annotate(points=Sum('points')). \
order_by('-points')
day_persons = len(day_points)
form = CalibrationForm({'start_day': start, 'end_day': end})
return render(request, 'calibration/calibration.html', {
'form': form,
'week_points': week_points,
'week_persons': week_persons,
'week_entries': week_entries.count(),
'week_sum': week_entries.aggregate(Sum('points'))['points__sum'] or 0,
'day_points': day_points,
'day_persons': day_persons,
'day_entries': day_entries.count(),
'day_sum': day_entries.aggregate(Sum('points'))['points__sum'] or 0,
'start_day': start,
'end_day': end,
})
@login_required
def calibration_data(request):
data = Calibration.objects.all()
csv = ['week_points_sum,week_user_count,week_mean,week_median,week_stddev,day_points_sum,day_user_count,day_mean,day_median,day_stddev,calibration']
for entry in data:
start = entry.start_day
end = entry.end_day
project = Project.objects.get(id=settings.CALIBRATION_PROJECT)
week_entries = KarmaPoints.objects. \
filter(project=project, time__gte=start, time__lte=end + timedelta(days=1))
week_points = week_entries. \
values('user__username'). \
annotate(points=Sum('points')).order_by('-points')
week_points = [e['points'] for e in week_points]
week_persons = len(week_points)
if week_points:
wmean = statistics.mean(week_points)
wmedian = statistics.median(week_points)
wpoints = sum(week_points)
else:
wmean = wmedian = wpoints = 0
if len(week_points) > 1:
wstdev = statistics.stdev(week_points)
else:
wstdev = 0
day_entries = KarmaPoints.objects. \
filter(project=project, time__day=end.day, time__month=end.month, time__year=end.year)
day_points = day_entries. \
values('user__username'). \
annotate(points=Sum('points')). \
order_by('-points')
day_points = [e['points'] for e in day_points]
day_persons = len(day_points)
if day_points:
dmean = statistics.mean(day_points)
dmedian = statistics.median(day_points)
dpoints = sum(day_points)
else:
dmean = dmedian = dpoints = 0
if len(day_points) > 1:
dstdev = statistics.stdev(day_points)
else:
dstdev = 0
percentage = entry.percent / 100
csv.append(','.join([str(x) for x in [wpoints, week_persons, wmean, wmedian, wstdev, dpoints, day_persons, dmean, dmedian, dstdev, percentage]]))
return HttpResponse('\n'.join(csv), content_type='text/csv')
|
bit-bots/karma
|
karma_cli/src/karma_cli.py
|
#! /usr/bin/python3
import argparse
import datetime
import yaml
import getpass
import os
import requests
import numexpr
from sys import exit
class COLORS:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
def print_error(error):
print(COLORS.FAIL + COLORS.BOLD + error + COLORS.ENDC)
parser = argparse.ArgumentParser(description="Command Line Interface for 'Karma - Real Internet Points'")
subparsers = parser.add_subparsers(title="command", description="command which shall be performed", dest="command")
parser_add = subparsers.add_parser("add", help="add karma to your account")
parser_add.add_argument("points", type=str, help="number of karma points to add")
parser_add.add_argument("-p", "--project", default="", dest="project", help="project to which karma is added",
required=False)
parser_add.add_argument("-c", "--category", default="", dest="category", help="category to which karma is added",
required=False)
parser_add.add_argument("-t", "--time", default="", dest="time", help="time at which to add karma", required=False)
parser_add.add_argument("-d", "--description", default="", dest="description", help="description of what you have done",
required=False)
parser_get = subparsers.add_parser("get", help="get karma of an account or category over a duration")
parser_get.add_argument("-p", "--project", nargs="?", default="", dest="project", help="which project's karma score",
required=False)
parser_get.add_argument("-c", "--category", nargs="?", default="", dest="category", help="category of karma score",
required=False)
parser_get.add_argument("-d", "--days", nargs="?", default="", dest="days", help="days of karma score",
required=False)
parser_login = subparsers.add_parser("login",
help="login to your account and create a token for authentication, do this first")
parser_config = subparsers.add_parser("config", help="configure defaults")
parser_config.add_argument("-p", "--project", default=False, action="store_true", help="set the default project",
required=False)
parser_config.add_argument("-c", "--category", default=False, action="store_true", help="set the default category",
required=False)
parser_config.add_argument("-d", "--delete", default=False, action="store_true",
help="delete default category and project", required=False)
parser_hs = subparsers.add_parser("highscore", help="get the highscore")
parser_hs.add_argument("days", type=int, help="days of the highscore")
parser_hs.add_argument("-p", "--project", nargs="?", default="", dest="project", help="which project's karma score",
required=False)
parser_hs.add_argument("-s", "--sum", dest="sum", action="store_true")
args = parser.parse_args()
if not args.command:
# Highscore of 14 days (used for weekly) is default action
args.command = "highscore"
args.days = 14
args.project = ''
args.sum = False
base_url = "https://karma.bit-bots.de/api/"
config_dir = os.getenv("XDG_CONFIG_HOME", os.path.expanduser("~/.config"))
config_path = os.path.join(config_dir, "karma")
config = {}
try:
f = open(config_path, mode='r')
config = yaml.load(f, Loader=yaml.Loader)
f.close()
except FileNotFoundError:
if args.command != "login":
print("Please login before any other command")
exit(1)
def write_config():
try:
f = open(config_path, "w+")
yaml.dump(config, f)
f.close()
except Exception as ex:
print(ex)
exit(1)
def check_projects_or_categories(user_selection, available_selections, name, check_default=True):
available = False
selected_name = None
if user_selection in available_selections:
available = True
selected_name = args.project
elif user_selection != "":
print("The " + name + " you have chosen is not available.")
if not available:
if "default_" + name in config and check_default:
return config["default_" + name]
print("Available " + name + ":")
for n, proj in enumerate(available_selections):
print(COLORS.OKBLUE + COLORS.BOLD + "[{}] ".format(n) + COLORS.ENDC + proj)
selected = input("Select a " + name + COLORS.OKBLUE
+ COLORS.BOLD + " [0..{}]".format(len(available_selections) - 1)
+ COLORS.ENDC + ": ")
try:
selected = int(selected)
except ValueError as ex:
print_error("Invalid input")
exit(1)
if not selected >= 0 or not selected < len(available_selections):
print_error("Input out of range")
exit(1)
selected_name = available_selections[selected]
return selected_name
def get_time():
date_time_obj = None
if args.time != "":
try:
date_time_obj = datetime.datetime.strptime(args.time, '%Y-%m-%d %H:%M')
except ValueError:
try:
entered_time = datetime.datetime.strptime(args.time, '%d %H:%M')
date_time_obj = datetime.datetime.now().replace(hour=entered_time.hour,
minute=entered_time.minute,
day=entered_time.day)
except ValueError:
try:
entered_time = datetime.datetime.strptime(args.time, '%H:%M')
date_time_obj = datetime.datetime.now().replace(hour=entered_time.hour,
minute=entered_time.minute)
except ValueError:
print_error("Datetime format not available \n"
+ "available formats: '%Y-%m-%d %H:%M', '%H:%M', '%d %H:%M'")
exit(1)
else:
karma_min = datetime.timedelta(minutes=args.points)
date_time_obj = datetime.datetime.now() - karma_min
return date_time_obj
def get_available_projects_and_categories():
resp = requests.get(base_url + "projects/",
headers={'Authorization': f"Token {config['token']}"})
if resp.status_code == 200:
d = resp.json()
return {project['name']: project['categories'] for project in d}
else:
print_error("Failed to get projects for user")
if args.command == "login":
user = input("Enter Username: ")
password = <PASSWORD>("Enter Password: ")
resp = requests.post(base_url + "auth/", data={"username": user, "password": password})
if resp.status_code == 200:
config['token'] = resp.json()['token']
write_config()
print(f"{COLORS.BOLD}{COLORS.OKGREEN}Login Successful{COLORS.ENDC}")
else:
print_error("Login not successful:")
print_error(f"Server returned {resp.status_code}")
print(COLORS.FAIL + resp.text + COLORS.ENDC)
elif args.command == "add":
try:
args.points = int(numexpr.evaluate(args.points))
except:
print(f"{COLORS.FAIL}Invalid math expression!{COLORS.ENDC}")
exit(1)
projects_and_categories = get_available_projects_and_categories()
projects = list(projects_and_categories.keys())
project = check_projects_or_categories(args.project, projects, "project")
categories = projects_and_categories[project]
category = check_projects_or_categories(args.category, categories, "category")
time = get_time()
if args.description == "":
description = input("Enter a description of what you have done: ")
else:
description = args.description
yes = input(f"Project: {project} || Category: {category} || Datetime: {time.strftime('%y-%m-%d %H:%M')} || "
f"Karma: {args.points} || Description: {description} {COLORS.BOLD} {COLORS.OKBLUE}[Y/n] {COLORS.ENDC}")
if yes == "" or yes == "y" or yes == "Y":
resp = requests.post(base_url + "karma/",
headers={'Authorization': f"Token {config['token']}"},
data={"project": project, "category": category, "time": time.isoformat(),
"description": description, "points": args.points})
if resp.status_code == 201:
print(f"{COLORS.OKGREEN}{COLORS.BOLD}Karma has been added successfully{COLORS.ENDC}")
else:
print_error("Failed to add karma")
print_error(f"Server returned {resp.status_code}")
else:
print_error("Aborted adding karma")
elif args.command == "get":
print_error("not implemented yet :D")
"""resp.json()
project = check_projects_or_categories(args.project, get_available_projects(), "project")
if args.category != "":
category = check_projects_or_categories(args.category, get_available_categories(), "category")
else:
category = ""
resp = requests.get("https://karma.bit-bots.de/api/karma/",
headers={'token': config['token']}, params={"project": project})
"""
elif args.command == "config":
if args.delete:
try:
del config['default_project']
print(f"{COLORS.BOLD}{COLORS.OKGREEN}Deleted default project settings.{COLORS.ENDC}")
except KeyError:
print("No default project setting found")
try:
del config['default_category']
print(f"{COLORS.BOLD}{COLORS.OKGREEN}Deleted default project settings.{COLORS.ENDC}")
except KeyError:
print("No default category setting found")
write_config()
exit(0)
projects_and_categories = get_available_projects_and_categories()
if args.project:
projects = list(projects_and_categories.keys())
config["default_project"] = check_projects_or_categories(args.project, projects, "project",
check_default=False)
if args.category:
categories = projects_and_categories[config["default_project"]]
config["default_category"] = check_projects_or_categories(args.category, categories, "category",
check_default=False)
write_config()
elif args.command == "highscore":
projects_and_categories = get_available_projects_and_categories()
projects = list(projects_and_categories.keys())
project = check_projects_or_categories(args.project, projects, "project")
resp = requests.get(base_url + "highscore/",
headers={'Authorization': f"Token {config['token']}"},
params={"project": project, "days": args.days})
resp_dict = resp.json()
karma_sorted = [(k, resp_dict[k]) for k in sorted(resp_dict, key=resp_dict.get, reverse=True)]
if args.sum:
s = 0
for _, v in karma_sorted:
s += v
print(f"{s:,} Karma was collected in the last {args.days} days")
else:
max_name = max(len(name) for name, value in karma_sorted)
max_value = max(len(str(value)) for name, value in karma_sorted)
for name, value in karma_sorted:
print("* " + name + " " * (max_name + max_value + 1 - len(name) - len(str(value))) + str(value))
|
bit-bots/karma
|
karma/calibration/urls.py
|
<filename>karma/calibration/urls.py
from django.urls import path
from . import views
app_name = 'calibration'
urlpatterns = [
path('', views.calibration, name='calibration'),
path('data', views.calibration_data, name='calibration_data')
]
|
bit-bots/karma
|
karma/karma/migrations/0004_auto_20171204_1643.py
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.8 on 2017-12-04 16:43
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('karma', '0003_project_karma_rules'),
]
operations = [
migrations.AlterField(
model_name='karmapoints',
name='points',
field=models.IntegerField(),
),
]
|
bit-bots/karma
|
karma/api/serializers.py
|
<filename>karma/api/serializers.py<gh_stars>1-10
from django.core.exceptions import ObjectDoesNotExist
from django.db.models import QuerySet
from rest_framework import serializers
from rest_framework.exceptions import ValidationError
from karma.karma.models import KarmaPoints, Project, Category
class KarmaSerializer(serializers.ModelSerializer):
class Meta:
model = KarmaPoints
fields = ('user', 'time', 'points', 'description', 'project', 'category')
user = serializers.ReadOnlyField(source='user.username')
project = serializers.CharField(source='project.name')
category = serializers.CharField(source='category.name')
def validate(self, attrs):
try:
attrs['project'] = Project.objects.get(name=attrs['project']['name'])
except ObjectDoesNotExist:
raise ValidationError('Project does not exist')
try:
attrs['category'] = Category.objects.get(name=attrs['category']['name'], project=attrs['project'])
except ObjectDoesNotExist:
raise ValidationError('Category does not exist')
attrs['user'] = self.context['request'].user
user_is_owner = attrs['user'] == attrs['project'].user
user_in_project_group = attrs['project'].group is not None and attrs['user'].groups.filter(
name=attrs['project'].group.name).exists()
if not (user_is_owner or user_in_project_group):
raise ValidationError('Project does not exist')
return attrs
class CategoryField(serializers.RelatedField):
def to_representation(self, value):
return value.name
class ProjectSerializer(serializers.ModelSerializer):
class Meta:
model = Project
fields = ('name', 'categories')
categories = CategoryField(many=True, read_only=True)
class HighscoreSerializer(serializers.Serializer):
def to_representation(self, instance: QuerySet):
return instance.values_list('user__username', 'points')
def validate(self, attrs):
print(attrs)
return attrs
|
bit-bots/karma
|
karma/karma/forms.py
|
<filename>karma/karma/forms.py
from django.forms import ModelForm
from karma.karma.models import KarmaPoints, Project, Category
class KarmaPointsForm(ModelForm):
class Meta:
model = KarmaPoints
fields = ['description', 'points', 'project', "category", "time"]
class KarmaProjectForm(ModelForm):
class Meta:
model = Project
fields = ['name', 'user', 'group', 'karma_rules']
class KarmaCategoryForm(ModelForm):
class Meta:
model = Category
fields = ['name', 'project']
|
bit-bots/karma
|
karma/calibration/forms.py
|
from django.forms import ModelForm
from karma.calibration.models import Calibration
class CalibrationForm(ModelForm):
class Meta:
model = Calibration
fields = ('start_day', 'end_day', 'percent')
|
bit-bots/karma
|
karma/karma/migrations/0002_auto_20170307_1645.py
|
<filename>karma/karma/migrations/0002_auto_20170307_1645.py
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-07 16:45
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('karma', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='karmapoints',
name='time',
field=models.DateTimeField(),
),
]
|
bit-bots/karma
|
karma/calibration/models.py
|
<filename>karma/calibration/models.py
from django.conf import settings
from django.db import models
class Calibration(models.Model):
start_day = models.DateField()
end_day = models.DateField()
user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.SET_NULL, null=True)
percent = models.IntegerField()
|
bit-bots/karma
|
karma/karma/models.py
|
from django.contrib.auth.models import User, Group
from django.db import models
from django.conf import settings
class Project(models.Model):
name = models.CharField(max_length=50, unique=True)
group = models.ForeignKey(Group, on_delete=models.CASCADE, blank=True, null=True)
user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, blank=True, null=True)
karma_rules = models.TextField(max_length=400, default='No special rules')
def __str__(self):
return self.name
class Category(models.Model):
class Meta:
unique_together = ['name', 'project']
name = models.CharField(max_length=50)
project = models.ForeignKey(Project, on_delete=models.CASCADE, related_name='categories')
def __str__(self):
return self.name
class KarmaPoints(models.Model):
user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.SET_NULL, blank=True, null=True)
time = models.DateTimeField()
points = models.IntegerField()
description = models.CharField(max_length=200)
project = models.ForeignKey(Project, on_delete=models.CASCADE)
category = models.ForeignKey(Category, on_delete=models.CASCADE)
|
bit-bots/karma
|
karma/api/urls.py
|
<reponame>bit-bots/karma
from django.urls import path
from rest_framework.authtoken.views import obtain_auth_token
from rest_framework.routers import DefaultRouter
from . import views
app_name = 'api'
router = DefaultRouter()
router.register(r'karma', views.KarmaViewSet, basename='karma')
router.register(r'projects', views.ProjectViewSet, basename='projects')
router.register(r'highscore', views.HighscoreViewSet, basename='highscore')
urlpatterns = router.urls
urlpatterns += [
path('auth/', obtain_auth_token),
]
|
bit-bots/karma
|
karma/karma/views.py
|
from django.contrib.auth.decorators import login_required
from django.contrib.auth.models import User
from django.db.models import Q
from django.db.models import Sum
from django.http import HttpResponseForbidden
from django.shortcuts import redirect, get_object_or_404
from django.template.response import TemplateResponse
from datetime import timedelta
import math
from django.utils.timezone import now
from django.core.paginator import Paginator
from karma.karma.forms import KarmaPointsForm, KarmaProjectForm, KarmaCategoryForm
from karma.karma.models import KarmaPoints, Project, Category
from django.conf import settings
@login_required
def index(request):
return redirect('karma_personal')
@login_required()
def personal_page(request, point_id=None):
if point_id:
point_object = get_object_or_404(KarmaPoints, pk=point_id, user=request.user)
else:
point_object = None
if request.POST:
form = KarmaPointsForm(request.POST, instance=point_object)
if form.is_valid():
point = form.save(commit=False)
point.user = request.user
point.save()
return redirect('karma_personal')
else:
form = KarmaPointsForm(instance=point_object)
return TemplateResponse(request, 'karma/personal.html', {
'edit': point_id,
'form': form,
'points': KarmaPoints.objects.filter(user=request.user).order_by('-time'),
'sum': KarmaPoints.objects.filter(user=request.user).aggregate(Sum('points'))['points__sum'],
'projects': Project.objects.filter(Q(user=request.user) | Q(group__user=request.user)).distinct().order_by('name'),
'categories': Category.objects.filter(Q(project__user=request.user) | Q(project__group__user=request.user)).distinct().order_by('name'),
})
@login_required()
def add_project(request):
if request.POST:
form = KarmaProjectForm(request.POST)
if form.is_valid():
form.save()
return redirect('karma_add_project')
else:
form = KarmaProjectForm()
return TemplateResponse(request, 'karma/add_project.html', {
'form': form,
'projects': Project.objects.filter(Q(user=request.user) | Q(group__user=request.user)).distinct().order_by('name')
})
@login_required()
def add_categories(request):
if request.POST:
form = KarmaCategoryForm(request.POST)
if form.is_valid():
form.save()
return redirect('karma_add_categories')
else:
form = KarmaCategoryForm()
return TemplateResponse(request, 'karma/add_category.html', {
'form': form,
'categories': Category.objects.filter(Q(project__user=request.user)| Q(project__group__user=request.user)).distinct().order_by('name')
})
@login_required()
def project_overview(request, project_id):
project = get_object_or_404(Project, pk=project_id)
if not Project.objects.filter(pk=project_id).filter(Q(user=request.user) | Q(group__user=request.user)):
raise HttpResponseForbidden()
items = KarmaPoints.objects.filter(project=project).order_by('-time')
page = request.GET.get('page')
paginator = Paginator(items, settings.ITEMS_PER_PAGE)
displayedItems = paginator.get_page(page)
return TemplateResponse(request, 'karma/project_overview.html', {
'project': project,
'sum': KarmaPoints.objects.filter(project=project).aggregate(Sum('points'))['points__sum'],
'points': displayedItems
})
@login_required()
def category_overview(request, category_id):
category = get_object_or_404(Category, pk=category_id)
return TemplateResponse(request, 'karma/category_overview.html', {
'category': category,
'sum': KarmaPoints.objects.filter(category=category).aggregate(Sum('points'))['points__sum'],
'points': KarmaPoints.objects.filter(category=category).order_by('-time')
})
@login_required()
def project_user(request, project_id, user_login):
project = get_object_or_404(Project, pk=project_id)
user = get_object_or_404(User, username=user_login)
if not Project.objects.filter(pk=project_id).filter(Q(user=request.user) | Q(group__user=request.user)):
raise HttpResponseForbidden()
return TemplateResponse(request, 'karma/project_user.html', {
'project': project,
'user': user,
'sum': KarmaPoints.objects.filter(project=project, user=user).aggregate(Sum('points'))['points__sum'],
'points': KarmaPoints.objects.filter(project=project, user=user).order_by('-time')
})
@login_required()
def project_highscore(request, project_id, nr_days):
project = get_object_or_404(Project, pk=project_id)
if not Project.objects.filter(pk=project_id).filter(Q(user=request.user) | Q(group__user=request.user)):
raise HttpResponseForbidden()
if int(nr_days) > 100000:
nr_days = '100000'
userpoints = KarmaPoints.objects.\
filter(project=project, time__gte=now()-timedelta(days=int(nr_days))).\
values('user__username').\
annotate(points=Sum('points')).\
order_by('-points')
return TemplateResponse(request, 'karma/project_highscore.html', {
'days': nr_days,
'project': project,
'users': userpoints,
})
def api_project_user_count(request, project_id, nr_days):
project = get_object_or_404(Project, pk=project_id)
usercount = KarmaPoints.objects.\
filter(project=project, time__gte=now()-timedelta(days=int(nr_days))).values('user').distinct().count()
return TemplateResponse(request, 'karma/api_project_active', {
'count': usercount,
})
def api_project_activity_points(request, project_id):
project = get_object_or_404(Project, pk=project_id)
userpoints_week = KarmaPoints.objects.\
filter(project=project, time__gte=now()-timedelta(days=7)).\
values('user__username').\
annotate(points=Sum('points'))
userpoints_day = KarmaPoints.objects.\
filter(project=project, time__gte=now()-timedelta(days=1)).\
values('user__username').\
annotate(points=Sum('points'))
activepoints_list = dict()
# Add week points and points of last day to weight the last day more
for userp in userpoints_week:
username = userp["user__username"]
activepoints_list[username] = userp["points"]
for userp in userpoints_day:
username = userp["user__username"]
activepoints_list[username] += userp["points"]
activepoints = 0
for username, points in activepoints_list.items():
# Take logarithm of karma points to count more karma less
log_points = math.log(points)
# Take square root to weight persons stronger than points
activepoints += math.sqrt(log_points)
# Scale
activepoints *= 200
# Return integer
activepoints = int(activepoints)
return TemplateResponse(request, 'karma/api_project_active', {
'count': activepoints,
})
@login_required()
def karma_rules(request):
return TemplateResponse(request, 'karma/rules.html', {
'projects': Project.objects.filter(Q(user=request.user) | Q(group__user=request.user)).distinct().order_by('name'),
})
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.