1--
2-- Copyright (c) 2005-2006
3--	Hartmut Brandt
4--	All rights reserved.
5--
6-- Author: Harti Brandt <harti@freebsd.org>
7--
8-- Redistribution and use in source and binary forms, with or without
9-- modification, are permitted provided that the following conditions
10-- are met:
11-- 1. Redistributions of source code must retain the above copyright
12--    notice, this list of conditions and the following disclaimer.
13-- 2. Redistributions in binary form must reproduce the above copyright
14--    notice, this list of conditions and the following disclaimer in the
15--    documentation and/or other materials provided with the distribution.
16--
17-- THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20-- ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25-- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26-- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27-- SUCH DAMAGE.
28--
29-- Additional stuff for the HOST-RESOURCES MIB.
30--
31BEGEMOT-HOSTRES-MIB DEFINITIONS ::= BEGIN
32
33IMPORTS
34    MODULE-IDENTITY, OBJECT-TYPE, TimeTicks
35	FROM SNMPv2-SMI
36    begemot
37	FROM BEGEMOT-MIB;
38
39begemotHostres MODULE-IDENTITY
40    LAST-UPDATED "200601030000Z"
41    ORGANIZATION "German Aerospace Center"
42    CONTACT-INFO
43	    "		Hartmut Brandt
44
45	     Postal:	German Aerospace Center
46			Oberpfaffenhofen
47			82234 Wessling
48			Germany
49
50	     Fax:	+49 8153 28 2843
51
52	     E-mail:	harti@freebsd.org"
53    DESCRIPTION
54	    "The MIB for additional HOST-RESOURCES data."
55    REVISION	"200601030000Z"
56    DESCRIPTION
57		"Initial revision."
58    ::= { begemot 202 }
59
60begemotHostresObjects	OBJECT IDENTIFIER ::= { begemotHostres 1 }
61
62begemotHrStorageUpdate OBJECT-TYPE
63    SYNTAX	TimeTicks
64    MAX-ACCESS	read-write
65    STATUS	current
66    DESCRIPTION
67	    "The maximum number of ticks the storage table is cached."
68    DEFVAL	{ 700 }
69    ::= { begemotHostresObjects 1 }
70
71begemotHrFSUpdate OBJECT-TYPE
72    SYNTAX	TimeTicks
73    MAX-ACCESS	read-write
74    STATUS	current
75    DESCRIPTION
76	    "The maximum number of ticks the FS table is cached."
77    DEFVAL	{ 700 }
78    ::= { begemotHostresObjects 2 }
79
80begemotHrDiskStorageUpdate OBJECT-TYPE
81    SYNTAX	TimeTicks
82    MAX-ACCESS	read-write
83    STATUS	current
84    DESCRIPTION
85	    "The maximum number of ticks the disk storage table is cached."
86    DEFVAL	{ 300 }
87    ::= { begemotHostresObjects 3 }
88
89begemotHrNetworkUpdate OBJECT-TYPE
90    SYNTAX	TimeTicks
91    MAX-ACCESS	read-write
92    STATUS	current
93    DESCRIPTION
94	    "The maximum number of ticks the network table is cached."
95    DEFVAL	{ 700 }
96    ::= { begemotHostresObjects 4 }
97
98begemotHrSWInstalledUpdate OBJECT-TYPE
99    SYNTAX	TimeTicks
100    MAX-ACCESS	read-write
101    STATUS	current
102    DESCRIPTION
103	    "The maximum number of ticks the hrSWInstalledTable is cached."
104    DEFVAL	{ 1200 }
105    ::= { begemotHostresObjects 5 }
106
107begemotHrSWRunUpdate OBJECT-TYPE
108    SYNTAX	TimeTicks
109    MAX-ACCESS	read-write
110    STATUS	current
111    DESCRIPTION
112	    "The maximum number of ticks the hrSWRunTable and
113	     hrSWRunPerfTable are cached."
114    DEFVAL	{ 300 }
115    ::= { begemotHostresObjects 6 }
116
117begemotHrPkgDir OBJECT-TYPE
118    SYNTAX	OCTET STRING
119    MAX-ACCESS	read-write
120    STATUS	current
121    DESCRIPTION
122	    "The path to the package DB directory."
123    DEFVAL	{ "/var/db/pkg" }
124    ::= { begemotHostresObjects 7 }
125
126END
127