1-- *****************************************************************
2-- NMS-EPON-ONU-RESET.MIB:  NMS LLID ONU RESET MIB file
3-- MAY 2010
4-- *****************************************************************
5--
6
7               NMS-EPON-ONU-RESET DEFINITIONS ::= BEGIN
8
9               IMPORTS
10                    Counter, IpAddress, Counter
11			FROM RFC1155-SMI
12		    OBJECT-TYPE
13			FROM RFC-1212
14                    DisplayString
15			FROM RFC1213-MIB
16		    nmsEPONGroup
17			FROM NMS-SMI
18	            PortList
19	                FROM Q-BRIDGE-MIB;
20
21               nmsEponOnuReset         OBJECT IDENTIFIER ::= { nmsEPONGroup 25 }
22
23               nmsEponOnuResetTable OBJECT-TYPE
24                   SYNTAX  SEQUENCE OF NMSEponOnuResetEntry
25                   ACCESS  not-accessible
26                   STATUS  mandatory
27                   DESCRIPTION
28                            "A list of the ONU reset table entries. The corresponding onu id will input and corresponding onu will reset."
29                   ::= { nmsEponOnuReset 1 }
30
31               nmsEponOnuResetEntry OBJECT-TYPE
32                   SYNTAX NMSEponOnuResetEntry
33                   ACCESS  not-accessible
34                   STATUS  mandatory
35                   DESCRIPTION
36                            "A collection of certain ONU reset operation table entry. The ONU id can be reset through this table."
37                   INDEX { onuLlid }
38               ::= { nmsEponOnuResetTable 1 }
39
40               NMSEponOnuResetEntry ::=
41                   SEQUENCE {
42                       onuLlid
43                           INTEGER,
44                       onuReset
45                           INTEGER
46                   }
47
48               onuLlid OBJECT-TYPE
49                   SYNTAX  INTEGER
50                   ACCESS  read-only
51                   STATUS  mandatory
52                   DESCRIPTION
53                           "ONU LLID."
54                   ::= { nmsEponOnuResetEntry 1 }
55
56               onuReset OBJECT-TYPE
57                   SYNTAX  INTEGER{
58                                   no_action(0),
59                                   reset(1)
60				   }
61                   ACCESS  write-only
62                   STATUS  mandatory
63                   DESCRIPTION
64                           "ONU reset operation.1-reset,0-no action."
65                   ::= { nmsEponOnuResetEntry 2 }
66
67
68      END
69
70
71