ENTITY-STATE-TC-MIB 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. ENTITY-STATE-TC-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3. MODULE-IDENTITY, mib-2 FROM SNMPv2-SMI
  4. TEXTUAL-CONVENTION FROM SNMPv2-TC;
  5. entityStateTc MODULE-IDENTITY
  6. LAST-UPDATED "200511220000Z"
  7. ORGANIZATION "IETF Entity MIB Working Group"
  8. CONTACT-INFO
  9. "General Discussion: entmib@ietf.org
  10. To Subscribe:
  11. http://www.ietf.org/mailman/listinfo/entmib
  12. http://www.ietf.org/html.charters/entmib-charter.html
  13. Sharon Chisholm
  14. Nortel Networks
  15. PO Box 3511 Station C
  16. Ottawa, Ont. K1Y 4H7
  17. Canada
  18. schishol@nortel.com
  19. David T. Perkins
  20. 548 Qualbrook Ct
  21. San Jose, CA 95110
  22. USA
  23. Phone: 408 394-8702
  24. dperkins@snmpinfo.com"
  25. DESCRIPTION
  26. "This MIB defines state textual conventions.
  27. Copyright (C) The Internet Society 2005. This version
  28. of this MIB module is part of RFC 4268; see the RFC
  29. itself for full legal notices."
  30. REVISION "200511220000Z"
  31. DESCRIPTION
  32. "Initial version, published as RFC 4268."
  33. ::= { mib-2 130 }
  34. EntityAdminState ::= TEXTUAL-CONVENTION
  35. STATUS current
  36. DESCRIPTION
  37. " Represents the various possible administrative states.
  38. A value of 'locked' means the resource is administratively
  39. prohibited from use. A value of 'shuttingDown' means that
  40. usage is administratively limited to current instances of
  41. use. A value of 'unlocked' means the resource is not
  42. administratively prohibited from use. A value of
  43. 'unknown' means that this resource is unable to
  44. report administrative state."
  45. SYNTAX INTEGER
  46. {
  47. unknown (1),
  48. locked (2),
  49. shuttingDown (3),
  50. unlocked (4)
  51. }
  52. EntityOperState ::= TEXTUAL-CONVENTION
  53. STATUS current
  54. DESCRIPTION
  55. " Represents the possible values of operational states.
  56. A value of 'disabled' means the resource is totally
  57. inoperable. A value of 'enabled' means the resource
  58. is partially or fully operable. A value of 'testing'
  59. means the resource is currently being tested
  60. and cannot therefore report whether it is operational
  61. or not. A value of 'unknown' means that this
  62. resource is unable to report operational state."
  63. SYNTAX INTEGER
  64. {
  65. unknown (1),
  66. disabled (2),
  67. enabled (3),
  68. testing (4)
  69. }
  70. EntityUsageState ::= TEXTUAL-CONVENTION
  71. STATUS current
  72. DESCRIPTION
  73. " Represents the possible values of usage states.
  74. A value of 'idle' means the resource is servicing no
  75. users. A value of 'active' means the resource is
  76. currently in use and it has sufficient spare capacity
  77. to provide for additional users. A value of 'busy'
  78. means the resource is currently in use, but it
  79. currently has no spare capacity to provide for
  80. additional users. A value of 'unknown' means
  81. that this resource is unable to report usage state."
  82. SYNTAX INTEGER
  83. {
  84. unknown (1),
  85. idle (2),
  86. active (3),
  87. busy (4)
  88. }
  89. EntityAlarmStatus ::= TEXTUAL-CONVENTION
  90. STATUS current
  91. DESCRIPTION
  92. " Represents the possible values of alarm status.
  93. An Alarm [RFC3877] is a persistent indication
  94. of an error or warning condition.
  95. When no bits of this attribute are set, then no active
  96. alarms are known against this entity and it is not under
  97. repair.
  98. When the 'value of underRepair' is set, the resource is
  99. currently being repaired, which, depending on the
  100. implementation, may make the other values in this bit
  101. string not meaningful.
  102. When the value of 'critical' is set, one or more critical
  103. alarms are active against the resource. When the value
  104. of 'major' is set, one or more major alarms are active
  105. against the resource. When the value of 'minor' is set,
  106. one or more minor alarms are active against the resource.
  107. When the value of 'warning' is set, one or more warning
  108. alarms are active against the resource. When the value
  109. of 'indeterminate' is set, one or more alarms of whose
  110. perceived severity cannot be determined are active
  111. against this resource.
  112. A value of 'unknown' means that this resource is
  113. unable to report alarm state."
  114. SYNTAX BITS
  115. {
  116. unknown (0),
  117. underRepair (1),
  118. critical(2),
  119. major(3),
  120. minor(4),
  121. -- The following are not defined in X.733
  122. warning (5),
  123. indeterminate (6)
  124. }
  125. EntityStandbyStatus ::= TEXTUAL-CONVENTION
  126. STATUS current
  127. DESCRIPTION
  128. " Represents the possible values of standby status.
  129. A value of 'hotStandby' means the resource is not
  130. providing service, but it will be immediately able to
  131. take over the role of the resource to be backed up,
  132. without the need for initialization activity, and will
  133. contain the same information as the resource to be
  134. backed up. A value of 'coldStandy' means that the
  135. resource is to back up another resource, but will not
  136. be immediately able to take over the role of a resource
  137. to be backed up, and will require some initialization
  138. activity. A value of 'providingService' means the
  139. resource is providing service. A value of
  140. 'unknown' means that this resource is unable to
  141. report standby state."
  142. SYNTAX INTEGER
  143. {
  144. unknown (1),
  145. hotStandby (2),
  146. coldStandby (3),
  147. providingService (4)
  148. }
  149. END