1-- $ID$
2-- $Sourse$
3-- ********************************************************************
4-- CISCO-GPRS-ISGSN-MIB.my: MIB file for GPRS ISGSN
5--
6-- December 1998, Ying He
7--
8-- Copyright (c) 1998 by cisco Systems, Inc.
9-- All rights reserved.
10-- ********************************************************************
11-- $Endlog$
12
13CISCO-GPRS-ISGSN-MIB DEFINITIONS ::= BEGIN
14
15IMPORTS
16        MODULE-IDENTITY,
17        OBJECT-TYPE,
18        Counter32
19                FROM SNMPv2-SMI
20        MODULE-COMPLIANCE,
21        OBJECT-GROUP
22                FROM SNMPv2-CONF
23        ciscoMgmt
24                FROM CISCO-SMI;
25
26
27ciscoGprsIsgsnMIB MODULE-IDENTITY
28        LAST-UPDATED    "9810150000Z"
29        ORGANIZATION    "Cisco Systems, Inc."
30        CONTACT-INFO
31                "       Cisco Systems
32                        Customer Service
33
34                Postal: 170 W Tasman Drive
35                        San Jose, CA  95134
36                        USA
37
38                   Tel: +1 800 553-NETS
39
40                E-mail: cs-gprs@cisco.com"
41        DESCRIPTION
42                "The MIB Module for managing the General Packet Radio
43                 Service(GPRS) iSGSN protocol on Servicing GPRS Support
44                 Node (SGSN).
45                 In the Alcatel/Cisco SGSN architecture, a Telecom part
46                 (T-unit) and Datacom part (D-unit) have been defined.
47                 The Datacom part is in charge of managing the Gn interface
48                 with the GPRS backbone. The Telecom part is in charge of
49                 managing the Gb interface with the BSS.
50                 The iSGSN protocol is the high layer protocol of the
51                 interface between the Datacom part and Telecom part.
52                 It supports the relay function between the Gb and Gn
53                 protocol stacks, and intra SGSN nodes management.
54                "
55        ::= { ciscoMgmt 9992 }
56
57
58
59
60-- **********************************************************************
61-- Object definitions
62-- **********************************************************************
63
64ciscoGprsIsgsnMIBObjects OBJECT IDENTIFIER ::= { ciscoGprsIsgsnMIB 1 }
65
66ciscoGprsIsgsnStats      OBJECT IDENTIFIER ::= { ciscoGprsIsgsnMIBObjects 1 }
67
68
69-- **********************************************************************
70--  iSGSN Statistics
71--  These stats are for SGSN only.
72-- **********************************************************************
73
74cgprsIsgsnRxPacketCountFromTnode  OBJECT-TYPE
75    SYNTAX              Counter32
76    UNITS               "packets"
77    MAX-ACCESS          read-only
78    STATUS              current
79    DESCRIPTION
80        "Number of packets received from the T-node, by
81         iSGSN protocol component on the D-node.
82        "
83    ::= { ciscoGprsIsgsnStats 1 }
84
85cgprsIsgsnTxPacketCountToTnode  OBJECT-TYPE
86    SYNTAX              Counter32
87    UNITS               "packets"
88    MAX-ACCESS          read-only
89    STATUS              current
90    DESCRIPTION
91        "Number of packets transmitted by the D-node iSGSN
92         protocol component, to its peer on the T-node.
93        "
94    ::= { ciscoGprsIsgsnStats 2 }
95
96cgprsIsgsnRxOctetCountFromTnode  OBJECT-TYPE
97    SYNTAX              Counter32
98    UNITS               "bytes"
99    MAX-ACCESS          read-only
100    STATUS              current
101    DESCRIPTION
102        "Number of octets received from the T-node, by
103         iGSN protocol component on the D-node.
104        "
105    ::= { ciscoGprsIsgsnStats 3 }
106
107
108cgprsIsgsnTxOctetCountToTnode  OBJECT-TYPE
109    SYNTAX              Counter32
110    UNITS               "bytes"
111    MAX-ACCESS          read-only
112    STATUS              current
113    DESCRIPTION
114        "Number of octets transmitted by the D-node iSGSN
115         protocol component, to its peer on the T-node.
116        "
117    ::= { ciscoGprsIsgsnStats 4 }
118
119
120cgprsIsgsnErrorCountRxFromTnode  OBJECT-TYPE
121    SYNTAX              Counter32
122    UNITS               "packets"
123    MAX-ACCESS          read-only
124    STATUS              current
125    DESCRIPTION
126        "Number of errors due to illegal or bad packets received
127         from the T-node, by iSGSN protocol component on the D-node.
128        "
129    ::= { ciscoGprsIsgsnStats 5 }
130
131cgprsIsgsnErrorCountRxToTnode  OBJECT-TYPE
132    SYNTAX              Counter32
133    UNITS               "packets"
134    MAX-ACCESS          read-only
135    STATUS              current
136    DESCRIPTION
137        "Number of errors attributable to the transmision of bad or
138        illegal packets transmitted by the D-node iSGSN protocol
139        component, to its peer on the T-node.
140        "
141    ::= { ciscoGprsIsgsnStats 6 }
142
143-- **********************************************************************
144-- Conformances
145-- **********************************************************************
146
147ciscoGprsIsgsnConformances OBJECT IDENTIFIER ::= { ciscoGprsIsgsnMIB 3 }
148
149cgprsIsgsnGroups        OBJECT IDENTIFIER ::= { ciscoGprsIsgsnConformances 1}
150cgprsIsgsnCompliances   OBJECT IDENTIFIER ::= { ciscoGprsIsgsnConformances 2}
151
152-- compliance statements
153cgprsIsgsnCompliance1 MODULE-COMPLIANCE
154    STATUS current
155    DESCRIPTION
156        " The compliance statement for the system that supports ISGSN
157          protocol.
158        "
159    MODULE
160        MANDATORY-GROUPS {
161                           cgprsIsgsnStatsGroup
162                         }
163        ::= {cgprsIsgsnCompliances 1}
164
165-- units of conformance
166
167cgprsIsgsnStatsGroup OBJECT-GROUP
168    OBJECTS { cgprsIsgsnRxPacketCountFromTnode,
169              cgprsIsgsnTxPacketCountToTnode,
170              cgprsIsgsnRxOctetCountFromTnode,
171              cgprsIsgsnTxOctetCountToTnode,
172              cgprsIsgsnErrorCountRxFromTnode,
173              cgprsIsgsnErrorCountRxToTnode
174            }
175    STATUS current
176    DESCRIPTION
177        " A collection of statistics for ISGSN.
178        "
179    ::= { cgprsIsgsnGroups 1}
180
181
182END
183