summaryrefslogtreecommitdiff
path: root/MIBS/transition/TN-LLDP-EXT-MIB
blob: a4729cb6f804381645081f43cbc89f8465060bae (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
-- *****************************************************************
-- TN-LLDP-EXT-MIB.smi:  Transition Networks Enterprise MIB for LLDP
-- extension
-- Copyright (c) 2012 by Transition Networks, Inc.
-- All rights reserved.
--
-- *****************************************************************
--
TN-LLDP-EXT-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY,
    OBJECT-TYPE
        FROM SNMPv2-SMI
    TruthValue
        FROM SNMPv2-TC
    lldpPortConfigEntry
        FROM LLDP-MIB
    tnProducts
        FROM TRANSITION-SMI;

tnExtLldpMIB MODULE-IDENTITY
    LAST-UPDATED    "2013030251930Z"
    ORGANIZATION    "Transition Networks, Inc."
    CONTACT-INFO    "Transition Networks
                      Technical Support

                      10900 Red Circle Drive
                      Minnetonka, MN 55343 USA
                      Tel: +1-800-526-9267

                      E-mail: techsupport@transition.com"
    DESCRIPTION     "Management Information Base module for LLDP configuration."
    REVISION        "201203250000Z"
    DESCRIPTION     "Published as part of IEEE Std 802.1AB-2005 initial version"
    ::= { tnProducts 137 }

tnExtLldpMIBNotifications  OBJECT IDENTIFIER ::= { tnExtLldpMIB 1 }
tnExtLldpMgmtObjects       OBJECT IDENTIFIER ::= { tnExtLldpMIB 2 }
tnExtLldpMIBConformance    OBJECT IDENTIFIER ::= { tnExtLldpMIB 3 }

--Ext LLDP  table
tnLldpExtPortConfigTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF  TnLldpExtPortConfigEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "The table that controls extension LLDP on individual
                    ports."
   ::= { tnExtLldpMgmtObjects 1 }

tnLldpExtPortConfigEntry OBJECT-TYPE
    SYNTAX         TnLldpExtPortConfigEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "Extension LLDP configuration information for a particular port."
    AUGMENTS       { lldpPortConfigEntry }
    ::= { tnLldpExtPortConfigTable 1 }

TnLldpExtPortConfigEntry ::= SEQUENCE {
    lldpPortConfigCdpAwareEnabled    TruthValue
}

lldpPortConfigCdpAwareEnabled OBJECT-TYPE
    SYNTAX         TruthValue
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object control whether the LLDP can work with CDP well or not
                    on this port. true means the lldp can aware the CDP, else is false."
    DEFVAL         { false }
    ::= { tnLldpExtPortConfigEntry 1 }
END