1154133Sharti--
2154133Sharti-- Copyright (c) 2005-2006
3154133Sharti--	Hartmut Brandt
4154133Sharti--	All rights reserved.
5154133Sharti--
6154133Sharti-- Author: Harti Brandt <harti@freebsd.org>
7154133Sharti--
8154133Sharti-- Redistribution and use in source and binary forms, with or without
9154133Sharti-- modification, are permitted provided that the following conditions
10154133Sharti-- are met:
11154133Sharti-- 1. Redistributions of source code must retain the above copyright
12154133Sharti--    notice, this list of conditions and the following disclaimer.
13154133Sharti-- 2. Redistributions in binary form must reproduce the above copyright
14154133Sharti--    notice, this list of conditions and the following disclaimer in the
15154133Sharti--    documentation and/or other materials provided with the distribution.
16154133Sharti--
17154133Sharti-- THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18154133Sharti-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19154133Sharti-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20154133Sharti-- ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21154133Sharti-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22154133Sharti-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23154133Sharti-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24154133Sharti-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25154133Sharti-- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26154133Sharti-- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27154133Sharti-- SUCH DAMAGE.
28154133Sharti--
29154133Sharti-- $FreeBSD$
30154133Sharti--
31154133Sharti-- Additional stuff for the HOST-RESOURCES MIB.
32154133Sharti--
33154133ShartiBEGEMOT-HOSTRES-MIB DEFINITIONS ::= BEGIN
34154133Sharti
35154133ShartiIMPORTS
36154133Sharti    MODULE-IDENTITY, OBJECT-TYPE, TimeTicks
37154133Sharti	FROM SNMPv2-SMI
38154133Sharti    begemot
39154133Sharti	FROM BEGEMOT-MIB;
40154133Sharti
41154133ShartibegemotHostres MODULE-IDENTITY
42154133Sharti    LAST-UPDATED "200601030000Z"
43154133Sharti    ORGANIZATION "German Aerospace Center"
44154133Sharti    CONTACT-INFO
45154133Sharti	    "		Hartmut Brandt
46154133Sharti
47154133Sharti	     Postal:	German Aerospace Center
48154133Sharti			Oberpfaffenhofen
49154133Sharti			82234 Wessling
50154133Sharti			Germany
51154133Sharti
52154133Sharti	     Fax:	+49 8153 28 2843
53154133Sharti
54154133Sharti	     E-mail:	harti@freebsd.org"
55154133Sharti    DESCRIPTION
56154133Sharti	    "The MIB for additional HOST-RESOURCES data."
57154133Sharti    ::= { begemot 202 }
58154133Sharti
59154133ShartibegemotHostresObjects	OBJECT IDENTIFIER ::= { begemotHostres 1 }
60154133Sharti
61154133ShartibegemotHrStorageUpdate OBJECT-TYPE
62154133Sharti    SYNTAX	TimeTicks
63154133Sharti    MAX-ACCESS	read-write
64154133Sharti    STATUS	current
65154133Sharti    DESCRIPTION
66154133Sharti	    "The maximum number of ticks the storage table is cached."
67154133Sharti    DEFVAL	{ 700 }
68154133Sharti    ::= { begemotHostresObjects 1 }
69154133Sharti
70154133ShartibegemotHrFSUpdate OBJECT-TYPE
71154133Sharti    SYNTAX	TimeTicks
72154133Sharti    MAX-ACCESS	read-write
73154133Sharti    STATUS	current
74154133Sharti    DESCRIPTION
75154133Sharti	    "The maximum number of ticks the FS table is cached."
76154133Sharti    DEFVAL	{ 700 }
77154133Sharti    ::= { begemotHostresObjects 2 }
78154133Sharti
79154133ShartibegemotHrDiskStorageUpdate OBJECT-TYPE
80154133Sharti    SYNTAX	TimeTicks
81154133Sharti    MAX-ACCESS	read-write
82154133Sharti    STATUS	current
83154133Sharti    DESCRIPTION
84154133Sharti	    "The maximum number of ticks the disk storage table is cached."
85154133Sharti    DEFVAL	{ 300 }
86154133Sharti    ::= { begemotHostresObjects 3 }
87154133Sharti
88154133ShartibegemotHrNetworkUpdate OBJECT-TYPE
89154133Sharti    SYNTAX	TimeTicks
90154133Sharti    MAX-ACCESS	read-write
91154133Sharti    STATUS	current
92154133Sharti    DESCRIPTION
93154133Sharti	    "The maximum number of ticks the network table is cached."
94154133Sharti    DEFVAL	{ 700 }
95154133Sharti    ::= { begemotHostresObjects 4 }
96154133Sharti
97154133ShartibegemotHrSWInstalledUpdate OBJECT-TYPE
98154133Sharti    SYNTAX	TimeTicks
99154133Sharti    MAX-ACCESS	read-write
100154133Sharti    STATUS	current
101154133Sharti    DESCRIPTION
102154133Sharti	    "The maximum number of ticks the hrSWInstalledTable is cached."
103154133Sharti    DEFVAL	{ 1200 }
104154133Sharti    ::= { begemotHostresObjects 5 }
105154133Sharti
106154133ShartibegemotHrSWRunUpdate OBJECT-TYPE
107154133Sharti    SYNTAX	TimeTicks
108154133Sharti    MAX-ACCESS	read-write
109154133Sharti    STATUS	current
110154133Sharti    DESCRIPTION
111154133Sharti	    "The maximum number of ticks the hrSWRunTable and
112154133Sharti	     hrSWRunPerfTable are cached."
113154133Sharti    DEFVAL	{ 300 }
114154133Sharti    ::= { begemotHostresObjects 6 }
115154133Sharti
116154133ShartibegemotHrPkgDir OBJECT-TYPE
117154133Sharti    SYNTAX	OCTET STRING
118154133Sharti    MAX-ACCESS	read-write
119154133Sharti    STATUS	current
120154133Sharti    DESCRIPTION
121154133Sharti	    "The path to the package DB directory."
122154133Sharti    DEFVAL	{ "/var/db/pkg" }
123154133Sharti    ::= { begemotHostresObjects 7 }
124154133Sharti
125154133ShartiEND
126