1133391Sharti--
2133391Sharti-- Copyright (c) 2004
3133391Sharti--	Hartmut Brandt.
4133391Sharti-- 	All rights reserved.
5133391Sharti--
6133391Sharti-- Author: Hartmut Brandt <harti@freebsd.org>
7133391Sharti-- 
8133391Sharti-- Redistribution and use in source and binary forms, with or without
9133391Sharti-- modification, are permitted provided that the following conditions
10133391Sharti-- are met:
11133391Sharti-- 1. Redistributions of source code must retain the above copyright
12133391Sharti--    notice, this list of conditions and the following disclaimer.
13133391Sharti-- 2. Redistributions in binary form must reproduce the above copyright
14133391Sharti--    notice, this list of conditions and the following disclaimer in the
15133391Sharti--    documentation and/or other materials provided with the distribution.
16133391Sharti-- 
17133391Sharti-- THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18133391Sharti-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19133391Sharti-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20133391Sharti-- ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21133391Sharti-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22133391Sharti-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23133391Sharti-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24133391Sharti-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25133391Sharti-- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26133391Sharti-- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27133391Sharti-- SUCH DAMAGE.
28133391Sharti--  
29133391Sharti-- $FreeBSD: releng/10.2/usr.sbin/bsnmpd/modules/snmp_atm/BEGEMOT-ATM-FREEBSD-MIB.txt 133391 2004-08-09 16:36:04Z harti $
30133391Sharti--
31133391Sharti-- Private Begemot MIB for ATM interfaces on FreeBSD
32133391Sharti--
33133391ShartiBEGEMOT-ATM-FREEBSD-MIB DEFINITIONS ::= BEGIN
34133391Sharti
35133391ShartiIMPORTS
36133391Sharti    MODULE-IDENTITY, OBJECT-TYPE
37133391Sharti	FROM SNMPv2-SMI
38133391Sharti    NgNodeIdOrZero
39133391Sharti	FROM BEGEMOT-NETGRAPH-MIB
40133391Sharti    begemotAtmSysGroup, begemotAtmIfEntry
41133391Sharti	FROM BEGEMOT-ATM-MIB;
42133391Sharti
43133391ShartibegemotAtmFreeBSDGroup MODULE-IDENTITY
44133391Sharti    LAST-UPDATED "200408060000Z"
45133391Sharti    ORGANIZATION "German Aerospace Centre"
46133391Sharti    CONTACT-INFO
47133391Sharti	    "		Hartmut Brandt
48133391Sharti
49133391Sharti             Postal:    German Aerospace Centre (DLR)
50133391Sharti                        Institute of Communications and Navigation
51133391Sharti                        82234 Wessling
52133391Sharti                        Germany
53133391Sharti
54133391Sharti	     Fax:	+49 8153 28 2844
55133391Sharti
56133391Sharti	     E-mail:	harti@freebsd.org"
57133391Sharti    DESCRIPTION
58133391Sharti	    "The FreeBSD specific Begemot MIB for ATM interfaces."
59133391Sharti
60133391Sharti    ::= { begemotAtmSysGroup 1 }
61133391Sharti
62133391Sharti-- Netgraph
63133391ShartibegemotAtmNgGroup	OBJECT IDENTIFIER ::= { begemotAtmFreeBSDGroup 1 }
64133391Sharti
65133391Sharti--
66133391Sharti-- Interfaces table
67133391Sharti--
68133391ShartibegemotAtmNgIfTable OBJECT-TYPE
69133391Sharti    SYNTAX	SEQUENCE OF BegemotAtmNgIfEntry
70133391Sharti    MAX-ACCESS	not-accessible
71133391Sharti    STATUS	current
72133391Sharti    DESCRIPTION
73133391Sharti	    "This table contains an entry for each hardware ATM
74133391Sharti	    interface. The table is indexed by the interface index."
75133391Sharti    ::= { begemotAtmNgGroup 1 }
76133391Sharti
77133391ShartibegemotAtmNgIfEntry OBJECT-TYPE
78133391Sharti    SYNTAX	BegemotAtmNgIfEntry
79133391Sharti    MAX-ACCESS	not-accessible
80133391Sharti    STATUS	current
81133391Sharti    DESCRIPTION
82133391Sharti	    "This is a table entry describing one ATM hardware interface."
83133391Sharti    AUGMENTS	{ begemotAtmIfEntry }
84133391Sharti    ::= { begemotAtmNgIfTable 1 }
85133391Sharti
86133391ShartiBegemotAtmNgIfEntry ::= SEQUENCE {
87133391Sharti    begemotAtmNgIfNodeId	NgNodeIdOrZero
88133391Sharti}
89133391Sharti
90133391ShartibegemotAtmNgIfNodeId OBJECT-TYPE
91133391Sharti    SYNTAX	NgNodeIdOrZero
92133391Sharti    MAX-ACCESS	read-only
93133391Sharti    STATUS	current
94133391Sharti    DESCRIPTION
95133391Sharti	    "The netgraph node id of the interface. If there is no
96133391Sharti	    node corresponding to the interface, this is 0."
97133391Sharti    ::= { begemotAtmNgIfEntry 1 }
98133391Sharti
99133391ShartiEND
100