1-- *****************************************************************
2-- Meru Networks Enterprise Specific MIB
3--
4-- Copyright (c) 2005 by Meru Networks
5-- All rights reserved
6--
7-- *****************************************************************
8
9MERU-CONFIG-SNMP-MIB  DEFINITIONS ::= BEGIN
10
11IMPORTS
12    NOTIFICATION-TYPE,
13    OBJECT-TYPE,
14    MODULE-IDENTITY,
15    OBJECT-IDENTITY,
16    enterprises,
17    Counter32,
18    Counter64,
19    Gauge32,
20    TimeTicks,
21    IpAddress,
22    Integer32
23        FROM SNMPv2-SMI
24    Ipv6Address
25        FROM IPV6-TC
26    TEXTUAL-CONVENTION,
27    TimeInterval,
28    TimeStamp,
29    DateAndTime,
30    TruthValue,
31    DisplayString,
32    MacAddress,
33    RowStatus
34        FROM SNMPv2-TC
35    mwConfiguration
36        FROM MERU-SMI
37    ;
38
39  mwConfigSnmp  MODULE-IDENTITY
40    LAST-UPDATED "200506050000Z"
41    ORGANIZATION "Meru Networks"
42    CONTACT-INFO "support@merunetworks.com"
43    DESCRIPTION
44        "This MIB defines all the managed objects used to manage the Meru WLAN
45         SNMP Configuration infrastructure"
46    ::= { mwConfiguration 12 }
47
48
49
50  mwWncTrapCommunityTable  OBJECT-TYPE
51    SYNTAX SEQUENCE OF MwWncTrapCommunityEntry
52    MAX-ACCESS not-accessible
53    STATUS     current
54    DESCRIPTION
55         "This object describes SNMP Trap Management "
56    ::= { mwConfigSnmp 2 }
57
58  mwWncTrapCommunityEntry  OBJECT-TYPE
59    SYNTAX MwWncTrapCommunityEntry
60    MAX-ACCESS not-accessible
61    STATUS     current
62    DESCRIPTION
63         "This object describes SNMP Trap Management "
64    INDEX {  mwWncTrapCommunityTableIndex  }
65    ::= { mwWncTrapCommunityTable 1 }
66
67  MwWncTrapCommunityEntry  ::=  SEQUENCE {
68       mwWncTrapCommunityTableIndex                                Integer32,
69       mwWncTrapCommunitypCommunityStr                             DisplayString(SIZE (1..32)),
70       mwWncTrapCommunityClientIpAddress                           IpAddress,
71       mwWncTrapCommunityRowStatus                                 RowStatus
72  }
73
74
75  mwWncTrapCommunityTableIndex  OBJECT-TYPE
76    SYNTAX Integer32
77    MAX-ACCESS not-accessible
78    STATUS     current
79    DESCRIPTION
80         "The index value of the  table "
81    ::= { mwWncTrapCommunityEntry 1 }
82
83  mwWncTrapCommunitypCommunityStr  OBJECT-TYPE
84    SYNTAX DisplayString(SIZE (1..32))
85    MAX-ACCESS read-create
86    STATUS     current
87    DESCRIPTION
88         "This object describes Trap Community"
89    ::= { mwWncTrapCommunityEntry    2 }
90
91  mwWncTrapCommunityClientIpAddress  OBJECT-TYPE
92    SYNTAX IpAddress
93    MAX-ACCESS read-create
94    STATUS     current
95    DESCRIPTION
96         "This object describes Trap Destination IP"
97    ::= { mwWncTrapCommunityEntry    3 }
98
99  mwWncTrapCommunityRowStatus  OBJECT-TYPE
100    SYNTAX RowStatus
101    MAX-ACCESS read-create
102    STATUS     current
103    DESCRIPTION
104         "This object is used to create and delete rows in the table"
105    ::= { mwWncTrapCommunityEntry 4 }
106
107
108END
109