home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / php / mibs / UDP-MIB.txt < prev   
Text File  |  1999-07-23  |  4KB  |  144 lines

  1. UDP-MIB DEFINITIONS ::= BEGIN
  2.  
  3. IMPORTS
  4.     OBJECT-GROUP, MODULE-COMPLIANCE
  5.         FROM SNMPv2-CONF
  6.     mib-2, IpAddress, Counter32, OBJECT-TYPE, MODULE-IDENTITY
  7.         FROM SNMPv2-SMI;
  8.  
  9. udpMIB MODULE-IDENTITY
  10.     LAST-UPDATED "9411010000Z"
  11.     ORGANIZATION "IETF SNMPv2 Working Group"
  12.     CONTACT-INFO
  13.                  "Keith McCloghrie
  14.  
  15.           Postal: Cisco Systems, Inc.
  16.                   170 West Tasman Drive
  17.                   San Jose, CA  95134-1706
  18.                   US
  19.  
  20.           Phone:  +1 408 526 5260
  21.           Email:  kzm@cisco.com"
  22.     DESCRIPTION
  23.         "The MIB module for managing UDP implementations."
  24.     REVISION     "9103310000Z"
  25.     DESCRIPTION
  26.         "The initial revision of this MIB module was part of MIB-
  27.          II."
  28.     ::= { mib-2  50 }
  29.  
  30. udp OBJECT IDENTIFIER ::= { mib-2  7 }
  31.  
  32. udpInDatagrams OBJECT-TYPE
  33.     SYNTAX     Counter32
  34.     MAX-ACCESS read-only
  35.     STATUS     current
  36.     DESCRIPTION
  37.         "The total number of UDP datagrams delivered to UDP users."
  38.     ::= { udp  1 }
  39.  
  40. udpNoPorts OBJECT-TYPE
  41.     SYNTAX     Counter32
  42.     MAX-ACCESS read-only
  43.     STATUS     current
  44.     DESCRIPTION
  45.         "The total number of received UDP datagrams for which there
  46.          was no application at the destination port."
  47.     ::= { udp  2 }
  48.  
  49. udpInErrors OBJECT-TYPE
  50.     SYNTAX     Counter32
  51.     MAX-ACCESS read-only
  52.     STATUS     current
  53.     DESCRIPTION
  54.         "The number of received UDP datagrams that could not be
  55.          delivered for reasons other than the lack of an application
  56.          at the destination port."
  57.     ::= { udp  3 }
  58.  
  59. udpOutDatagrams OBJECT-TYPE
  60.     SYNTAX     Counter32
  61.     MAX-ACCESS read-only
  62.     STATUS     current
  63.     DESCRIPTION
  64.         "The total number of UDP datagrams sent from this entity."
  65.     ::= { udp  4 }
  66.  
  67. udpTable OBJECT-TYPE
  68.     SYNTAX     SEQUENCE OF UdpEntry
  69.     MAX-ACCESS not-accessible
  70.     STATUS     current
  71.     DESCRIPTION
  72.         "A table containing UDP listener information."
  73.     ::= { udp  5 }
  74.  
  75. udpEntry OBJECT-TYPE
  76.     SYNTAX     UdpEntry
  77.     MAX-ACCESS not-accessible
  78.     STATUS     current
  79.     DESCRIPTION
  80.         "Information about a particular current UDP listener."
  81.     INDEX      { udpLocalAddress,  udpLocalPort }
  82.     ::= { udpTable  1 }
  83.  
  84. UdpEntry ::=
  85.     SEQUENCE {
  86.         udpLocalAddress
  87.             IpAddress,
  88.  
  89.         udpLocalPort
  90.             INTEGER
  91.     }
  92.  
  93. udpLocalAddress OBJECT-TYPE
  94.     SYNTAX     IpAddress
  95.     MAX-ACCESS read-only
  96.     STATUS     current
  97.     DESCRIPTION
  98.         "The local IP address for this UDP listener.  In the case of
  99.          a UDP listener which is willing to accept datagrams for any
  100.          IP interface associated with the node, the value 0.0.0.0 is
  101.          used."
  102.     ::= { udpEntry  1 }
  103.  
  104. udpLocalPort OBJECT-TYPE
  105.     SYNTAX     INTEGER
  106.     MAX-ACCESS read-only
  107.     STATUS     current
  108.     DESCRIPTION
  109.         "The local port number for this UDP listener."
  110.     ::= { udpEntry  2 }
  111.  
  112. udpMIBConformance ::= { udpMIB  2 }
  113.  
  114. udpMIBCompliances ::= { udpMIBConformance  1 }
  115.  
  116. udpMIBGroups ::= { udpMIBConformance  2 }
  117.  
  118. udpMIBCompliance MODULE-COMPLIANCE
  119.     STATUS     current
  120.     DESCRIPTION
  121.         "The compliance statement for SNMPv2 entities which
  122.          implement UDP."
  123.  
  124.     MODULE           -- this module
  125.     MANDATORY-GROUPS { udpGroup }
  126.     ::= { udpMIBCompliances  1 }
  127.  
  128. udpGroup OBJECT-GROUP
  129.     OBJECTS    {
  130.                  udpInDatagrams,
  131.                  udpNoPorts,
  132.                  udpInErrors,
  133.                  udpOutDatagrams,
  134.                  udpLocalAddress,
  135.                  udpLocalPort
  136.                }
  137.     STATUS     current
  138.     DESCRIPTION
  139.         "The udp group of objects providing for management of UDP
  140.          entities."
  141.     ::= { udpMIBGroups  1 }
  142.  
  143. END
  144.