diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/ciena/CIENA-TC | |
| download | mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip | |
Diffstat (limited to 'MIBS/ciena/CIENA-TC')
| -rw-r--r-- | MIBS/ciena/CIENA-TC | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/MIBS/ciena/CIENA-TC b/MIBS/ciena/CIENA-TC new file mode 100644 index 0000000..427e0ec --- /dev/null +++ b/MIBS/ciena/CIENA-TC @@ -0,0 +1,100 @@ +-- This file was included in WWP MIB release 04-16-00-0047 + + +CIENA-TC DEFINITIONS ::= BEGIN + + + IMPORTS + MacAddress + FROM SNMPv2-TC; + +-- definition of textual conventions + +-- TEXTUAL-CONVENTION MACRO ::= +-- +-- +-- BEGIN +-- TYPE NOTATION ::= +-- DisplayPart +-- "STATUS" Status +-- "DESCRIPTION" Text +-- ReferPart +-- "SYNTAX" Syntax +-- +-- VALUE NOTATION ::= +-- value(VALUE Syntax) // adapted ASN.1 +-- +-- DisplayPart ::= +-- "DISPLAY-HINT" Text +-- | empty +-- +-- Status ::= +-- "current" +-- | "deprecated" +-- | "obsolete" +-- +-- ReferPart ::= +-- "REFERENCE" Text +-- | empty +-- +-- // a character string as defined in [2] +-- Text ::= value(IA5String) +-- +-- Syntax ::= // Must be one of the following: +-- // a base type (or its refinement), or +-- // a BITS pseudo-type +-- type +-- | "BITS" "{" NamedBits "}" +-- +-- NamedBits ::= NamedBit +-- | NamedBits "," NamedBit +-- +-- NamedBit ::= identifier "(" number ")" // number is nonnegative +-- +-- END + +--Textual conventions +-- + +CienaGlobalState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This textual convention enumerates the administrative and operational state." + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + + CienaGlobalSeverity ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This textual convention enumerates the severity levels." + SYNTAX INTEGER { + none (0), + cleared (1), + intermediate (2), + critical (3), + major (4), + minor (5), + warning (6), + config (7), + info (8), -- informational + debug (9), -- debug-level messages + internal (10) -- None of the above + } + + CienaStatsClear ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This textual convention enumerates the statistics clear operation if the value is set to 1." + SYNTAX INTEGER { + none(0), + clear(1) + } + CienaMacAddress ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This textual convention denotes a MAC address." + SYNTAX MacAddress + +END |