-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTRANZEO-MIB
103 lines (82 loc) · 2.83 KB
/
TRANZEO-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
-- Title: TRANZEO Private MIB
-- This Private MIB supports Tranzeo Sixth Generation product line.
-- Tranzeo Wireless Technologies Inc.
-- 19473 Fraser Way
-- Pitt Meadows, BC
-- Canada V3Y 2V4
--
--
--
-- Version: 0.2
-- Date: Wednesday December 27 2006
-- Comments: This is the first private MIB created for Tranzeo. It will contain basic oid's not already included in MIB-II or 802.11 MIB.
-- iso(1).org(3).dod(6).internet(1).private(4).enterprises(24575).
-- Version Date Authors Decription
--
-- v0.1 Nov 28 MR, QA Technician
-- 2006
-- v0.2 Dec 27
-- 2006 MR, QA Technician
TRANZEO-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, OBJECT-TYPE
FROM RFC1155-SMI;
tranzeo OBJECT IDENTIFIER ::= { enterprises 24575 }
signal OBJECT IDENTIFIER ::= { tranzeo 1 }
rssi OBJECT-TYPE
SYNTAX INTEGER (-110..0)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the average received signal strength on the current channel. A 0 means no wireless connection."
::= { signal 1 }
signallow OBJECT-TYPE
SYNTAX INTEGER (-110..0)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the lowest received signal strength on the current channel. A 0 means no wireless connection."
::= { rssi 1 }
signalaverage OBJECT-TYPE
SYNTAX INTEGER (-110..0)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the average received signal strength on the current channel. A 0 means no wireless connection."
::= { rssi 2 }
signalhigh OBJECT-TYPE
SYNTAX INTEGER (-110..0)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the highest received signal strength on the current channel. A 0 means no wireless connection."
::= { rssi 3 }
noise OBJECT-TYPE
SYNTAX INTEGER (-110..0)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the noise on the current channel. A 0 means no wireless connection."
::= { signal 2 }
noiselow OBJECT-TYPE
SYNTAX INTEGER (-110..0)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the lowest noise on the current channel. A 0 means no wireless connection."
::= { noise 1 }
noiseaverage OBJECT-TYPE
SYNTAX INTEGER (-110..0)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the average noise on the current channel. A 0 means no wireless connection."
::= { noise 2 }
noisehigh OBJECT-TYPE
SYNTAX INTEGER (-110..0)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the highest noise on the current channel. A 0 means no wireless connection."
::= { noise 3 }
END