summaryrefslogtreecommitdiff
path: root/MIBS/bluecatnetworks/BCN-TC-MIB
blob: 089edb4ff2219a76c35ba6f0991734a752c02d4d (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
-- Copyright 2017 BlueCat Networks. All rights reserved.
-- *****************************************************************
-- BCN-SMI-MIB.mib:  BlueCat Networks Textual Conventions
--
-- December 2010, Fabian Ischia
--
-- All rights reserved.
-- 
-- *****************************************************************

BCN-TC-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION
        FROM SNMPv2-TC
    bcnModules
        FROM BCN-SMI-MIB;

bcnTCMIB MODULE-IDENTITY
    LAST-UPDATED "201011300000Z"
    ORGANIZATION "BlueCat Networks Inc."
    CONTACT-INFO
        "Adonis Technical Support
        BlueCat Networks Inc.
 		 
        Tel: +1 866 491 2228 (toll free)
 		     +1 416 646 8400 (international) 
        Email: support@bluecatnetworks.com"
    DESCRIPTION
        "This module defines Textual Conventions used throughout BlueCat mibs."
    REVISION     "201011300000Z"
    DESCRIPTION "Initial version of this MIB module."
 	::= { bcnModules 3 }

BcnAlarmSeverity ::= TEXTUAL-CONVENTION
    STATUS          current
    DESCRIPTION
        "Alarm severity. Valid values are:
        1 Okay. The component that was experiencing a problem has recovered
          or a normal, expected operation has taken place.
        2 Other. The event does not require severity assessment or the 
          severity cannot be determined. 
        3 Informational: Informational event that requires no further action. 
        4 Minor: Minor event that does not require user intervention. 
        5 Warning: An event occurred that might affect services, but is part
          of a system or user initiated process. It might indicate that a
          service is transitioning states.
        6 Major: Event that requires user intervention and assistance. 
        7 Critical: Problem that affects services and system operations, 
          and requires immediate assistance."
    SYNTAX          INTEGER {
        ok(1),
        other(10),
        inform(20),
        minor(30),
        warning(40),
        major(50),
        critical(60)
    }

END