1-- *****************************************************************
2-- CISCO-DOT11-RADAR-MIB.my:  Cisco DOT11 RADAR MIB file
3--
4-- March 2007, Henry Tseng
5--
6-- Copyright (c) 2007 by Cisco Systems, Inc.
7-- All rights reserved.
8-- *****************************************************************
9
10CISCO-DOT11-RADAR-MIB DEFINITIONS ::= BEGIN
11
12IMPORTS
13    MODULE-IDENTITY,
14    NOTIFICATION-TYPE,
15    OBJECT-TYPE,
16    TimeTicks,
17    Unsigned32
18        FROM SNMPv2-SMI
19    MODULE-COMPLIANCE,
20    NOTIFICATION-GROUP,
21    OBJECT-GROUP
22        FROM SNMPv2-CONF
23    TruthValue
24        FROM SNMPv2-TC
25    ciscoMgmt
26        FROM CISCO-SMI;
27
28
29ciscoDot11RadarMIB MODULE-IDENTITY
30    LAST-UPDATED    "200705070000Z"
31    ORGANIZATION    "Cisco System Inc."
32    CONTACT-INFO
33            "Cisco Systems
34            Customer Service
35
36            Postal: 170 West Tasman Drive,
37            San Jose CA 95134-1706.
38            USA
39
40            Tel: +1 800 553-NETS
41
42            E-mail: cs-dot11@cisco.com"
43    DESCRIPTION
44        "This MIB module is for IEEE 802.11a/h Root device,
45        i.e. Access Point (AP) or Root Bridge. This MIB
46        allows dynamic frequency selection features related
47        to DOT11 device.
48
49                  ACRONYMS
50        AP
51            Access point
52
53        RADAR
54            RAdio Detection And Range
55
56                  GLOSSARY
57
58        Access point
59            Transmitter/receiver (transceiver) device
60            that commonly connects and transports data
61            between a wireless network and a wired network.
62
63        Non-Root Bridge
64            This wireless bridge does not connect to the main
65            wired LAN segment.  It connects to a remote wired
66            LAN segment and can associate with root bridges and
67            other non-root bridges that accept client
68            associations.  It also can accept associations from
69            other non-root bridges, repeater access points,
70            and client devices.
71
72        Radar
73            Radar is a system that uses electromagnetic waves
74            to identify the range, altitude, direction, or
75            speed of both moving and fixed objects such as
76            aircraft, ships, motor vehicles, weather
77            formations, and terrain.
78
79        Repeater or Non-root Access Point
80            The repeater access point is not connected
81            to the wired LAN.  The Repeater is a wireless
82            LAN transceiver that transfers data between
83            a client and another access point, another
84            repeater, or between two bridges.  The repeater
85            is placed within radio range of an access point
86            connected to the wired LAN, another repeater, or
87            an non-root bridge to extend the range of the
88            infrastructure.
89
90        Root (Wireless) Bridge
91            This wireless bridge connects to the main wired
92            LAN.  It can communicate with non-root wireless
93            bridges, repeater access points, and client
94            devices but not with another wireless root
95            bridge.  Only one wireless bridge in a wireless
96            LAN can be set as the wireless root bridge.
97
98        Work-group Bridge
99            It is a client to APs or wireless root bridges.
100            The radio port of a WGB serves as the uplink to
101            the main network and the Ethernet port provides
102            network access for devices like PC or IP phone."
103    REVISION        "200705070000Z"
104    DESCRIPTION
105        "Initial version of this MIB module."
106    ::= { ciscoMgmt 627 }
107
108
109ciscoDot11RadarMIBNotifs  OBJECT IDENTIFIER
110    ::= { ciscoDot11RadarMIB 0 }
111
112ciscoDot11RadarMIBObjects  OBJECT IDENTIFIER
113    ::= { ciscoDot11RadarMIB 1 }
114
115ciscoDot11RadarMIBConform  OBJECT IDENTIFIER
116    ::= { ciscoDot11RadarMIB 2 }
117
118cdrDot11RadarNotifConfig  OBJECT IDENTIFIER
119    ::= { ciscoDot11RadarMIBObjects 1 }
120
121cdrDot11RadarDetectInfo  OBJECT IDENTIFIER
122    ::= { ciscoDot11RadarMIBObjects 2 }
123
124
125cdrDot11NewFrequency OBJECT-TYPE
126    SYNTAX          Unsigned32
127    UNITS           "MHz"
128    MAX-ACCESS      read-only
129    STATUS          current
130    DESCRIPTION
131        "This is the IEEE 802.11a/h channel frequency that
132        specify the new channel that the AP has switched to after
133        (1) it has detected radar, or (2) received report from a
134        client indicating that it has detected radar. The value
135        of zero indicates that dynamic frequency selection has
136        not completed after reset."
137    DEFVAL          { '00000000'H }
138    ::= { cdrDot11RadarDetectInfo 1 }
139
140cdrDot11PreferFrequency OBJECT-TYPE
141    SYNTAX          Unsigned32
142    UNITS           "MHz"
143    MAX-ACCESS      read-only
144    STATUS          current
145    DESCRIPTION
146        "This is the IEEE 802.11a/h channel frequency that
147        specify the prefer channel that the AP has moved
148        back to. The value of zero indicates that prefer
149        frequency is not selected."
150    DEFVAL          { '00000000'H }
151    ::= { cdrDot11RadarDetectInfo 2 }
152
153cdrChannelSwitchLastTime OBJECT-TYPE
154    SYNTAX          TimeTicks
155    MAX-ACCESS      read-only
156    STATUS          current
157    DESCRIPTION
158        "The value of sysUpTime when cdrDot11NewFrequency
159        was last changed."
160    ::= { cdrDot11RadarDetectInfo 3 }
161
162cdrChannelReturnLastTime OBJECT-TYPE
163    SYNTAX          TimeTicks
164    MAX-ACCESS      read-only
165    STATUS          current
166    DESCRIPTION
167        "The value of sysUpTime when cdrDot11PreferFrequency
168        was last changed."
169    ::= { cdrDot11RadarDetectInfo 4 }
170
171cdrChannelSwitchNotifEnabled OBJECT-TYPE
172    SYNTAX          TruthValue
173    MAX-ACCESS      read-write
174    STATUS          current
175    DESCRIPTION
176        "Indicates whether the ciscoDot11RadarChannelSwitch
177        notification will or will not be sent by the agent
178        when a radar is detected.  If it is 'true',
179        the notification will be sent.  If it is 'false',
180        the notification will not be sent."
181    DEFVAL          { false }
182    ::= { cdrDot11RadarNotifConfig 1 }
183
184cdrChannelReturnNotifEnabled OBJECT-TYPE
185    SYNTAX          TruthValue
186    MAX-ACCESS      read-write
187    STATUS          current
188    DESCRIPTION
189        "Indicates whether the ciscoDot11RadarChannelReturn
190        notification will or will not be sent by the agent
191        when AP moves back to the prefer channel. If it is
192        'true', the notification will be sent.  If it is
193        'false', the notification will not be sent."
194    DEFVAL          { false }
195    ::= { cdrDot11RadarNotifConfig 2 }
196
197-- *****************************************************************
198-- Notifications
199-- *****************************************************************
200
201ciscoDot11RadarChannelSwitch NOTIFICATION-TYPE
202    OBJECTS         {
203                        cdrDot11NewFrequency,
204                        cdrChannelSwitchLastTime
205                    }
206    STATUS          current
207    DESCRIPTION
208        "This notification will be sent when a radar
209        is detected either by AP itself or by a report
210        from a client indicating that it has detected radar.
211        The cdrDot11NewFrequency specify the channel that
212        AP has switched to. This notification can be
213        enabled or disabled via the
214        cdrChannelSwitchNotifEnabled object."
215   ::= { ciscoDot11RadarMIBNotifs 1 }
216
217ciscoDot11RadarChannelReturn NOTIFICATION-TYPE
218    OBJECTS         {
219                        cdrDot11PreferFrequency,
220                        cdrChannelReturnLastTime
221                    }
222    STATUS          current
223    DESCRIPTION
224        "This notification will be sent when a AP
225        has returned to the prefer channel. The
226        cdrDot11PreferFrequency specify the channel that
227        AP returns to. This notification can be enabled
228        disabled via the cdrChannelReturnNotifEnabled
229        object."
230   ::= { ciscoDot11RadarMIBNotifs 2 }
231-- *****************************************************************
232-- Conformance information
233-- *****************************************************************
234
235ciscoDot11RadarMIBCompliances  OBJECT IDENTIFIER
236    ::= { ciscoDot11RadarMIBConform 1 }
237
238ciscoDot11RadarMIBGroups  OBJECT IDENTIFIER
239    ::= { ciscoDot11RadarMIBConform 2 }
240
241
242-- *****************************************************************
243-- Compliance statements
244-- *****************************************************************
245
246ciscoDot11RadarCompliance MODULE-COMPLIANCE
247    STATUS          current
248    DESCRIPTION
249        "The compliance statement for entities implementing
250        the CISCO-DOT11-RADAR-MIB."
251    MODULE          -- this module
252    MANDATORY-GROUPS {
253                        cdrDot11RadarNotifObjectGroup,
254                        ciscoDot11RadarDetectInfoGroup,
255                        ciscoDot11RadarNotificationGroup
256                    }
257    ::= { ciscoDot11RadarMIBCompliances 1 }
258
259-- *****************************************************************
260-- Units of conformance
261-- *****************************************************************
262
263cdrDot11RadarNotifObjectGroup OBJECT-GROUP
264    OBJECTS         {
265                        cdrChannelSwitchNotifEnabled,
266                        cdrChannelReturnNotifEnabled
267                    }
268    STATUS          current
269    DESCRIPTION
270        "This group is for enabling/disabling notifications
271        of changing frequency."
272    ::= { ciscoDot11RadarMIBGroups 1 }
273
274ciscoDot11RadarDetectInfoGroup OBJECT-GROUP
275    OBJECTS         {
276                        cdrDot11NewFrequency,
277                        cdrDot11PreferFrequency,
278                        cdrChannelSwitchLastTime,
279                        cdrChannelReturnLastTime
280                    }
281    STATUS          current
282    DESCRIPTION
283        "This group provides frequency-change information
284        from the operation of the Radar detection."
285    ::= { ciscoDot11RadarMIBGroups 2 }
286
287ciscoDot11RadarNotificationGroup NOTIFICATION-GROUP
288   NOTIFICATIONS    {
289                        ciscoDot11RadarChannelSwitch,
290                        ciscoDot11RadarChannelReturn
291                    }
292    STATUS          current
293    DESCRIPTION
294        "This group provides notifications related to Radar
295        Channel."
296    ::= { ciscoDot11RadarMIBGroups 3 }
297
298END
299
300
301
302