summaryrefslogtreecommitdiff
path: root/MIBS/dell/DELL-NETWORKING-MAC-NOTIFICATION-MIB
blob: 462c6035e4aeb1c59912532b9db315cdb3b47983 (plain)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
DELL-NETWORKING-MAC-NOTIFICATION-MIB DEFINITIONS ::= BEGIN
--  This module provides authoritative definitions for Dell Networking OS
--  mac learn/move notification MIB.
--
--  This module will be extended, as needed.
--

IMPORTS
        MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, Integer32, TimeTicks
                FROM SNMPv2-SMI
    
        OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP 
                FROM SNMPv2-CONF

        DisplayString
                FROM RFC1213-MIB

        dellNetMgmt
                FROM DELL-NETWORKING-SMI

        ifIndex
                FROM IF-MIB
        
        VlanId
                FROM Q-BRIDGE-MIB

        MacAddress
                FROM SNMPv2-TC;


dellNetMacNotifMib MODULE-IDENTITY
        LAST-UPDATED "201701011200Z" -- Jan 01,2017 12:00:00 GMT
        ORGANIZATION
                "Dell Inc"
        CONTACT-INFO
                "support.dell.com"

        DESCRIPTION
                "Dell Networking OS mac learn/move notification mib."

        REVISION     "201701011200Z"
        DESCRIPTION
                "Initial draft version of mac notification mib."

        ::= { dellNetMgmt 28 }

dellNetMacNotificationObjects      OBJECT IDENTIFIER ::= { dellNetMacNotifMib 1 }
dellNetMacNotificationTraps        OBJECT IDENTIFIER ::= { dellNetMacNotificationObjects 1 }

--
-- Mac Notification objects
--
    macAddress OBJECT-TYPE
        SYNTAX       MacAddress
        MAX-ACCESS   accessible-for-notify
        STATUS       current
        DESCRIPTION
            "The associated mac address in the TRAP object"
        ::= { dellNetMacNotificationObjects 2 } 
    
    vlanId OBJECT-TYPE
        SYNTAX       VlanId
        MAX-ACCESS   accessible-for-notify
        STATUS       current
        DESCRIPTION
            "The associated vlan id in the TRAP object"
        ::= { dellNetMacNotificationObjects 3 } 
    
    portId OBJECT-TYPE
        SYNTAX       Integer32 (0..65535)
        MAX-ACCESS   accessible-for-notify
        STATUS       current
        DESCRIPTION
            "The associated port id in the TRAP object"
        ::= { dellNetMacNotificationObjects 4 } 
    
    newPortId OBJECT-TYPE                     
        SYNTAX       Integer32 (0..65535)
        MAX-ACCESS   accessible-for-notify
        STATUS       current
        DESCRIPTION
            "The associated new port id in the TRAP object on detecting mac move"
        ::= { dellNetMacNotificationObjects 5 } 
    
    timeStamp OBJECT-TYPE
        SYNTAX       TimeTicks
        MAX-ACCESS   accessible-for-notify
        STATUS       current
        DESCRIPTION
            "The value of sysUpTime when this mac learn/move happened."
        ::= { dellNetMacNotificationObjects 6 }

     message OBJECT-TYPE
         SYNTAX       OCTET STRING
         MAX-ACCESS   accessible-for-notify
         STATUS       current
         DESCRIPTION
             "The log message for TRAP object"
         ::= { dellNetMacNotificationObjects 7 }


--
-- MAC Notification TRAP
--
    macLearnNotification NOTIFICATION-TYPE
    OBJECTS              { macAddress,
                           vlanId,
                           portId,
                           timeStamp,
                           message
                         }
    STATUS               current
    DESCRIPTION
        "The agent generate this trap when a
         mac adress is learnt very first time in the device."
    ::= { dellNetMacNotificationTraps 1 }      
    
    macMoveNotification NOTIFICATION-TYPE
    OBJECTS              { macAddress,
                           vlanId,
                           portId,
                           newPortId,
                           timeStamp,
                           message
                         }
    STATUS               current
    DESCRIPTION
        "The agent generate this trap when a
         mac move is detected with in 3 seconds duration."
    ::= { dellNetMacNotificationTraps 2 }  

    -- ### conformance information ###
    dellNetMacMibConformance    OBJECT IDENTIFIER ::= { dellNetMacNotifMib 2 }
    dellNetMacMibCompliances    OBJECT IDENTIFIER ::= { dellNetMacMibConformance 1 }
    dellNetMacMibGroups         OBJECT IDENTIFIER ::= { dellNetMacMibConformance 2 }

    -- ## compliance statements
    dellNetMacMibCompliance MODULE-COMPLIANCE
        STATUS                  current
        DESCRIPTION
            "The compliance statement for Dell Networking OS
            product which implement the Dell Networking
            MAC Notification MIB."
        MODULE    -- this module
        MANDATORY-GROUPS {
            dellNetMacNotificationGroup
        }
        ::= { dellNetMacMibCompliances 1 }

    -- ## units of conformance
    dellNetMacNotificationGroup NOTIFICATION-GROUP
       NOTIFICATIONS {
       macLearnNotification,
       macMoveNotification
       }

       STATUS    current
       DESCRIPTION
           "Notifications for MAC learn/move events."
       ::= { dellNetMacMibGroups 1}
END