1-- *------------------------------------------------------------------
2-- * ALTIGA-GENERAL-STATS-MIB.my:  Altiga General Statistics MIB.
3-- *
4-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
5-- *
6-- * Copyright (c) 2002 by Cisco Systems, Inc.
7-- * All rights reserved.
8-- *
9-- *------------------------------------------------------------------
10
11ALTIGA-GENERAL-STATS-MIB DEFINITIONS ::= BEGIN
12
13   IMPORTS
14      MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
15      Gauge32, Counter32, Integer32
16         FROM SNMPv2-SMI
17      MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
18         FROM SNMPv2-CONF
19      alStatsGeneral, alGeneralGroup
20         FROM ALTIGA-MIB
21      alGeneralMibModule
22         FROM ALTIGA-GLOBAL-REG;
23
24   altigaGeneralStatsMibModule MODULE-IDENTITY
25      LAST-UPDATED   "200209111300Z"
26      ORGANIZATION   "Cisco Systems, Inc."
27      CONTACT-INFO
28         "Cisco Systems
29          170 W Tasman Drive
30          San Jose, CA  95134
31          USA
32
33          Tel: +1 800 553-NETS
34          E-mail: cs-cvpn3000@cisco.com"
35
36      DESCRIPTION
37         "The Altiga General Statistics MIB models counters and
38          objects that are of management interest.
39
40          Acronyms
41          The following acronyms are used in this document:
42
43            AVP:        Attribute/Value Pair
44
45            CLID:       Calling Line ID
46
47            DNIS:       Dialed Number Identification Service
48
49            L2TP:       Layer 2 Tunnel Protocol
50
51            LAC:        L2TP Access Concentrator
52
53            LNS:        L2TP Network Server
54
55            RWS:        Receive Window Size
56
57         "
58
59        REVISION "200209111300Z"
60        DESCRIPTION
61                "Added module compliance and fix comments."
62
63        REVISION "200207100000Z"
64        DESCRIPTION
65                "Updated with new header"
66
67      ::= { alGeneralMibModule 2 }
68
69-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
70-- MIB Objects
71-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
72
73alStatsGeneralGlobal  OBJECT IDENTIFIER ::= { alStatsGeneral 1 }
74
75alGeneralTime		OBJECT-TYPE
76	SYNTAX		Counter32
77	MAX-ACCESS	read-only
78	STATUS		current
79	DESCRIPTION
80      "The current time on the box, represented as a time_t.
81
82       In 1.2, this was the box's local time.
83
84       After 1.2, it was corrected to represent UTC (which is what it
85       is supposed to be). So all boxes should have this be the same
86       value +/- a few seconds."
87	::= { alStatsGeneralGlobal 1 }
88
89alGeneralGaugeCpuUtil	OBJECT-TYPE
90	SYNTAX		Gauge32 (0..100)
91	MAX-ACCESS	read-only
92	STATUS		current
93	DESCRIPTION
94      "The value of the CPU Utilization gauge which indicates
95       percentage of CPU utilized."
96	::= { alStatsGeneralGlobal 2 }
97
98alGeneralGaugeActiveSessions	OBJECT-TYPE
99	SYNTAX			Gauge32 (0..100)
100	MAX-ACCESS		read-only
101	STATUS			current
102	DESCRIPTION
103      "The value of the Active Sessions gauge which indicates the
104       percentage of total permitted session that are active."
105	::= { alStatsGeneralGlobal 3 }
106
107alGeneralGaugeThroughput	OBJECT-TYPE
108	SYNTAX			Gauge32 (0..100)
109	MAX-ACCESS		read-only
110	STATUS			current
111	DESCRIPTION
112      "The value of the Throughput gauge which indicates the
113       percentage of total available throughput in-use."
114	::= { alStatsGeneralGlobal 4 }
115
116alGeneralTimeZone	OBJECT-TYPE
117	SYNTAX		Integer32
118	MAX-ACCESS	read-only
119	STATUS		current
120	DESCRIPTION
121      "The time zone configured on the box. Measured in minutes from
122       UTC. e.g. EST = -300."
123	::= { alStatsGeneralGlobal 5 }
124
125altigaGeneralStatsMibConformance OBJECT IDENTIFIER
126   ::= { altigaGeneralStatsMibModule 1 }
127
128altigaGeneralStatsMibCompliances OBJECT IDENTIFIER
129    ::= { altigaGeneralStatsMibConformance 1 }
130
131altigaGeneralStatsMibCompliance MODULE-COMPLIANCE
132   STATUS         current
133   DESCRIPTION
134      "The compliance statement for agents which implement the
135       Altiga General Statistics MIB."
136   MODULE
137   MANDATORY-GROUPS {
138      altigaGeneralStatsGroup
139   }
140   ::= { altigaGeneralStatsMibCompliances 1 }
141
142altigaGeneralStatsGroup OBJECT-GROUP
143	OBJECTS
144	{
145		alGeneralTime,
146		alGeneralGaugeCpuUtil,
147		alGeneralGaugeActiveSessions,
148		alGeneralGaugeThroughput,
149		alGeneralTimeZone
150	}
151	STATUS 	current
152	DESCRIPTION
153      "The objects for general information."
154	::= { alGeneralGroup 2 }
155
156END
157