~ubuntu-branches/ubuntu/wily/net-snmp/wily-proposed

« back to all changes in this revision

Viewing changes to mibs/IPV6-UDP-MIB.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-28 14:59:36 UTC
  • mfrom: (1.2.3 upstream) (1.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100628145936-cbiallic69pn044g
Tags: 5.4.3~dfsg-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Set Ubuntu maintainer address.
  - net-snmp-config: Use bash. (LP: #104738)
  - Removed multiuser option when calling update-rc.d. (LP: #254261)
  - debian/snmpd.init: LSBify the init script.
  - debian/patches/52_fix_snmpcmd_1_typo.patch: Adjust a typo in snmpcmd.1
    (LP: #250459)
  - debian/snmpd.postinst: source debconf before doing work, LP: #589056
  - debian/snmp.preinst, debian/snmp.prerm: kill any/all processes owned by
    snmp user before install/uninstall, LP: #573391
  - Add apport hook (LP: #533603):
  - debian/{snmp,snmpd}.apport: Added.
  - debian/control: Build-depends on dh-apport.
  - debian/rules: 
    + Add --with apport.
    + override_dh_apport to install hook on snmpd package only.
 * Dropped patches:
   - debian/patches/99-fix-ubuntu-div0.patch: Fix dvision by zero.. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
IPV6-UDP-MIB DEFINITIONS ::= BEGIN
2
 
 
3
 
IMPORTS
4
 
   MODULE-COMPLIANCE, OBJECT-GROUP      FROM SNMPv2-CONF
5
 
   MODULE-IDENTITY, OBJECT-TYPE,
6
 
   mib-2, experimental                  FROM SNMPv2-SMI
7
 
   Ipv6Address, Ipv6IfIndexOrZero       FROM IPV6-TC;
8
 
 
9
 
ipv6UdpMIB MODULE-IDENTITY
10
 
   LAST-UPDATED "9801290000Z"
11
 
   ORGANIZATION "IETF IPv6 MIB Working Group"
12
 
   CONTACT-INFO
13
 
        "               Mike Daniele
14
 
 
15
 
                Postal: Compaq Computer Corporation
16
 
                        110 Spitbrook Rd
17
 
                        Nashua, NH 03062.
18
 
                        US
19
 
 
20
 
                Phone:  +1 603 884 1423
21
 
                Email:  daniele@zk3.dec.com"
22
 
   DESCRIPTION
23
 
        "The MIB module for entities implementing UDP over IPv6."
24
 
   ::= { experimental 87 }
25
 
 
26
 
 
27
 
udp      OBJECT IDENTIFIER ::= { mib-2 7 }
28
 
 
29
 
 
30
 
 
31
 
ipv6UdpTable OBJECT-TYPE
32
 
   SYNTAX      SEQUENCE OF Ipv6UdpEntry
33
 
   MAX-ACCESS  not-accessible
34
 
   STATUS      current
35
 
   DESCRIPTION
36
 
        "A table containing UDP listener information for
37
 
         UDP/IPv6 endpoints."
38
 
   ::= { udp 6 }
39
 
 
40
 
ipv6UdpEntry OBJECT-TYPE
41
 
   SYNTAX      Ipv6UdpEntry
42
 
   MAX-ACCESS  not-accessible
43
 
   STATUS      current
44
 
   DESCRIPTION
45
 
        "Information about a particular current UDP listener.
46
 
 
47
 
         Note that conceptual rows in this table require an
48
 
         additional index object compared to udpTable, since
49
 
         IPv6 addresses are not guaranteed to be unique on the
50
 
         managed node."
51
 
   INDEX   { ipv6UdpLocalAddress,
52
 
             ipv6UdpLocalPort,
53
 
             ipv6UdpIfIndex }
54
 
   ::= { ipv6UdpTable 1 }
55
 
 
56
 
Ipv6UdpEntry ::= SEQUENCE {
57
 
   ipv6UdpLocalAddress    Ipv6Address,
58
 
   ipv6UdpLocalPort       INTEGER (0..65535),
59
 
   ipv6UdpIfIndex         Ipv6IfIndexOrZero }
60
 
 
61
 
ipv6UdpLocalAddress OBJECT-TYPE
62
 
   SYNTAX       Ipv6Address
63
 
   MAX-ACCESS   not-accessible
64
 
   STATUS       current
65
 
   DESCRIPTION
66
 
        "The local IPv6 address for this UDP listener.
67
 
         In the case of a UDP listener which is willing
68
 
         to accept datagrams for any IPv6 address
69
 
         associated with the managed node, the value ::0
70
 
         is used."
71
 
   ::= { ipv6UdpEntry 1 }
72
 
 
73
 
ipv6UdpLocalPort OBJECT-TYPE
74
 
    SYNTAX     INTEGER (0..65535)
75
 
    MAX-ACCESS not-accessible
76
 
    STATUS     current
77
 
    DESCRIPTION
78
 
        "The local port number for this UDP listener."
79
 
    ::= { ipv6UdpEntry 2 }
80
 
 
81
 
ipv6UdpIfIndex OBJECT-TYPE
82
 
   SYNTAX     Ipv6IfIndexOrZero
83
 
   MAX-ACCESS   read-only
84
 
   STATUS     current
85
 
   DESCRIPTION
86
 
        "An index object used to disambiguate conceptual rows in
87
 
         the table, since the ipv6UdpLocalAddress/ipv6UdpLocalPort
88
 
         pair may not be unique.
89
 
 
90
 
         This object identifies the local interface that is
91
 
         associated with ipv6UdpLocalAddress for this UDP listener.
92
 
         If such a local interface cannot be determined, this object
93
 
         should take on the value 0.  (A possible example of this
94
 
         would be if the value of ipv6UdpLocalAddress is ::0.)
95
 
 
96
 
         The interface identified by a particular non-0 value of
97
 
         this index is the same interface as identified by the same
98
 
         value of ipv6IfIndex.
99
 
 
100
 
         The value of this object must remain constant during
101
 
         the life of this UDP endpoint."
102
 
   ::= { ipv6UdpEntry 3 }
103
 
 
104
 
--
105
 
--
106
 
 
107
 
ipv6UdpConformance OBJECT IDENTIFIER ::= { ipv6UdpMIB 2 }
108
 
 
109
 
ipv6UdpCompliances OBJECT IDENTIFIER ::= { ipv6UdpConformance 1 }
110
 
ipv6UdpGroups      OBJECT IDENTIFIER ::= { ipv6UdpConformance 2 }
111
 
 
112
 
 
113
 
ipv6UdpCompliance MODULE-COMPLIANCE
114
 
   STATUS  current
115
 
   DESCRIPTION
116
 
        "The compliance statement for SNMPv2 entities which
117
 
         implement UDP over IPv6."
118
 
   MODULE  -- this module
119
 
   MANDATORY-GROUPS { ipv6UdpGroup }
120
 
   ::= { ipv6UdpCompliances 1 }
121
 
 
122
 
ipv6UdpGroup OBJECT-GROUP
123
 
   OBJECTS   { -- these are defined in this module
124
 
               -- ipv6UdpLocalAddress (not-accessible)
125
 
               -- ipv6UdpLocalPort (not-accessible)
126
 
               ipv6UdpIfIndex }
127
 
   STATUS    current
128
 
   DESCRIPTION
129
 
        "The group of objects providing management of
130
 
         UDP over IPv6."
131
 
   ::= { ipv6UdpGroups 1 }
132
 
 
133
 
END