blob: 61a3dd8b821d51b937c7101cec9437c5d7a38fe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
--
-- Juniper Enterprise Specific MIB: Host Resources MIB
--
-- Copyright (c) 2004, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-HOSTRESOURCES-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Gauge32
FROM SNMPv2-SMI
hrStorageEntry
FROM HOST-RESOURCES-MIB
jnxMibs
FROM JUNIPER-SMI;
jnxHostResourcesMIB MODULE-IDENTITY
LAST-UPDATED "200408180000Z" -- Aug 18, 2004
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"Extends the HOST-RESOURCES-MIB (rfc2790)."
-- revision history
REVISION "200408180000Z"
DESCRIPTION
"Fixed typo in description clauses."
REVISION "200405050000Z"
DESCRIPTION
"Initial revision."
::= { jnxMibs 31 }
-- The Host Resources Storage Group
jnxHrStorage OBJECT IDENTIFIER ::= { jnxHostResourcesMIB 1 }
jnxHrSystem OBJECT IDENTIFIER ::= { jnxHostResourcesMIB 2 }
jnxHrStorageTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxHrStorageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Augments the hrStorageTable with additional data."
::= { jnxHrStorage 1 }
jnxHrStorageEntry OBJECT-TYPE
SYNTAX JnxHrStorageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry provides additional file system data beyond that
available in the hrStorageTable."
AUGMENTS { hrStorageEntry }
::= { jnxHrStorageTable 1 }
JnxHrStorageEntry ::=
SEQUENCE {
jnxHrStoragePercentUsed Gauge32
}
jnxHrStoragePercentUsed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of the storage represented by this entry
that is allocated, as a percentage of the total amount
available."
::= { jnxHrStorageEntry 1 }
jnxHrSystemOpenFiles OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of open files in the system."
::= { jnxHrSystem 1 }
END
|