IPV6-TC.txt
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. IPV6-TC DEFINITIONS ::= BEGIN
  2. IMPORTS
  3.      Integer32                FROM SNMPv2-SMI
  4.      TEXTUAL-CONVENTION       FROM SNMPv2-TC;
  5. -- definition of textual conventions
  6. Ipv6Address ::= TEXTUAL-CONVENTION
  7.      DISPLAY-HINT "2x:"
  8.      STATUS       current
  9.      DESCRIPTION
  10.        "This data type is used to model IPv6 addresses.
  11.         This is a binary string of 16 octets in network
  12.         byte-order."
  13.      SYNTAX       OCTET STRING (SIZE (16))
  14. Ipv6AddressPrefix ::= TEXTUAL-CONVENTION
  15.      DISPLAY-HINT "2x:"
  16.      STATUS       current
  17.      DESCRIPTION
  18.        "This data type is used to model IPv6 address
  19.        prefixes. This is a binary string of up to 16
  20.        octets in network byte-order."
  21.      SYNTAX       OCTET STRING (SIZE (0..16))
  22. Ipv6AddressIfIdentifier ::= TEXTUAL-CONVENTION
  23.      DISPLAY-HINT "2x:"
  24.      STATUS       current
  25.      DESCRIPTION
  26.        "This data type is used to model IPv6 address
  27.        interface identifiers. This is a binary string
  28.         of up to 8 octets in network byte-order."
  29.      SYNTAX      OCTET STRING (SIZE (0..8))
  30. Ipv6IfIndex ::= TEXTUAL-CONVENTION
  31.      DISPLAY-HINT "d"
  32.      STATUS       current
  33.      DESCRIPTION
  34.        "A unique value, greater than zero for each
  35.        internetwork-layer interface in the managed
  36.        system. It is recommended that values are assigned
  37.        contiguously starting from 1. The value for each
  38.        internetwork-layer interface must remain constant
  39.        at least from one re-initialization of the entity's
  40.        network management system to the next
  41.        re-initialization."
  42.      SYNTAX       Integer32 (1..2147483647)
  43. Ipv6IfIndexOrZero ::= TEXTUAL-CONVENTION
  44.      DISPLAY-HINT "d"
  45.      STATUS       current
  46.      DESCRIPTION
  47.          "This textual convention is an extension of the
  48.          Ipv6IfIndex convention.  The latter defines
  49.          a greater than zero value used to identify an IPv6
  50.          interface in the managed system.  This extension
  51.          permits the additional value of zero.  The value
  52.          zero is object-specific and must therefore be
  53.          defined as part of the description of any object
  54.          which uses this syntax.  Examples of the usage of
  55.          zero might include situations where interface was
  56.          unknown, or when none or all interfaces need to be
  57.          referenced."
  58.      SYNTAX       Integer32 (0..2147483647)
  59. END