Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RFC-1212.mib 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. RFC-1212 DEFINITIONS ::= BEGIN
  2. IMPORTS
  3. ObjectName
  4. FROM RFC1155-SMI
  5. DisplayString
  6. FROM RFC1158-MIB;
  7. OBJECT-TYPE MACRO ::=
  8. BEGIN
  9. TYPE NOTATION ::=
  10. -- must conform to
  11. -- RFC1155's ObjectSyntax
  12. "SYNTAX" type(ObjectSyntax)
  13. "ACCESS" Access
  14. "STATUS" Status
  15. DescrPart
  16. ReferPart
  17. IndexPart
  18. DefValPart
  19. VALUE NOTATION ::= value (VALUE ObjectName)
  20. Access ::= "read-only"
  21. | "read-write"
  22. | "write-only"
  23. | "not-accessible"
  24. Status ::= "mandatory"
  25. | "optional"
  26. | "obsolete"
  27. | "deprecated"
  28. DescrPart ::=
  29. "DESCRIPTION" value (description DisplayString)
  30. | empty
  31. ReferPart ::=
  32. "REFERENCE" value (reference DisplayString)
  33. | empty
  34. IndexPart ::=
  35. "INDEX" "{" IndexTypes "}"
  36. | empty
  37. IndexTypes ::=
  38. IndexType | IndexTypes "," IndexType
  39. IndexType ::=
  40. -- if indexobject, use the SYNTAX
  41. -- value of the correspondent
  42. -- OBJECT-TYPE invocation
  43. value (indexobject ObjectName)
  44. -- otherwise use named SMI type
  45. -- must conform to IndexSyntax below
  46. | type (indextype)
  47. DefValPart ::=
  48. "DEFVAL" "{" value (defvalue ObjectSyntax) "}"
  49. | empty
  50. END
  51. IndexSyntax ::=
  52. CHOICE {
  53. number
  54. INTEGER (0..MAX),
  55. string
  56. OCTET STRING,
  57. object
  58. OBJECT IDENTIFIER,
  59. address
  60. NetworkAddress,
  61. ipAddress
  62. IpAddress
  63. }
  64. END