-- ***************************************************************** -- SRM-MIB : MIB For SRM(Service Resource Module) in MGX82xx -- series products. -- -- July 2002 -- -- Copyright (c) 1996-1998, 2001 by cisco Systems, Inc. -- All rights reserved. -- ***************************************************************** -- -- LAST-UPDATED "200207190000Z" -- DESCRIPTION -- "The MIB module for configuration of bulk distribution -- (de-multiplexing of traffic from higher-bandwidth to -- lower-bandwidth interfaces). -- This is used for configuring bulk distribution of -- T3 interfaces on T1 modules supported in MGX82xx series. -- Some of the T1 modules are AUSM, FRSM,CESM. -- This MIB module also contains info. on configuring -- bulk distribution of SONET interfaces(VT interfaces) -- on T1 Modules." -- SRM - Service Resource Module -- SRME - Service Resource Module Enhanced -- -- REVISION "200207190000Z" -- DESCRIPTION -- Added Cisco Copyrights. -- CONTACT-INFO -- " Cisco Systems -- Customer Service -- -- Postal: 170 W Tasman Drive -- San Jose, CA 95134 -- USA -- -- Tel: +1 800 553-NETS -- -- E-mail: cs-wanatm@cisco.com" -- " SRM-MIB DEFINITIONS ::= BEGIN IMPORTS OBJECT-TYPE FROM RFC-1212 cardSpecific FROM BASIS-MIB; srm3T3CnfGrp OBJECT IDENTIFIER ::= {cardSpecific 10} srmeCnfGrp OBJECT IDENTIFIER ::= {cardSpecific 22} -- ------------------------------------------------------------------ -- -- Group srm3T3Config -- This group contains DS1 mapping configuration for SRM-3T3 card. -- This group is card specific for SRM-3T3 card. -- -- ------------------------------------------------------------------ srm3T3CnfGrpTable OBJECT-TYPE SYNTAX SEQUENCE OF Srm3T3CnfGrpEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "The SRM 3T3 configuration table, it is the distribution of a T3 line. " ::= { srm3T3CnfGrp 1 } srm3T3CnfGrpEntry OBJECT-TYPE SYNTAX Srm3T3CnfGrpEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "an entry in the T3 configuration table " INDEX { srmT3LineNum, srmStartT1LineNum } ::= { srm3T3CnfGrpTable 1 } Srm3T3CnfGrpEntry ::= SEQUENCE { srmT3LineNum INTEGER, srmStartT1LineNum INTEGER, srmT1RowStatus INTEGER, srmTargetSlotNum INTEGER, srmTargetSlotLineNum INTEGER } srmT3LineNum OBJECT-TYPE SYNTAX INTEGER (1..3) ACCESS read-only STATUS mandatory DESCRIPTION "Select T3 line number. There is no default value for this object." ::= { srm3T3CnfGrpEntry 1 } srmStartT1LineNum OBJECT-TYPE SYNTAX INTEGER (1..28) ACCESS read-only STATUS mandatory DESCRIPTION "The start T1 number to be affected. There is no default value for this object." ::= { srm3T3CnfGrpEntry 2 } srmT1RowStatus OBJECT-TYPE SYNTAX INTEGER { add(1), delete(2), modify(3) } ACCESS read-write STATUS mandatory DESCRIPTION "a command is used to add, delete, or modify one or more DS1 mapping. Default value is delete." ::= { srm3T3CnfGrpEntry 3 } srmTargetSlotNum OBJECT-TYPE SYNTAX INTEGER (1..32) ACCESS read-write STATUS mandatory DESCRIPTION " specify the target slot number to be linked. There is no default value for this object. For MGX8850: SRM01 services slots 1 - 6 and 9 - 14, SRM02 services slots 17 - 22 and 25 - 30 For MGX8220: SYNTAX INTEGER (5 ..14) " ::= { srm3T3CnfGrpEntry 4 } srmTargetSlotLineNum OBJECT-TYPE SYNTAX INTEGER (0..8) ACCESS read-write STATUS mandatory DESCRIPTION "0 means not assigned. There is no default value for this object." ::= { srm3T3CnfGrpEntry 5 } -- ------------------------------------------------------------------ -- -- Group srmeConfig -- This group contains DS1 and E1 mapping configuration for SRME card. -- This group is card specific for SRME card. -- -- ------------------------------------------------------------------ srmeCnfGrpTable OBJECT-TYPE SYNTAX SEQUENCE OF SrmeCnfGrpEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "The SRME configuration table for bulk distribution of SRME lines." ::= { srmeCnfGrp 1 } srmeCnfGrpEntry OBJECT-TYPE SYNTAX SrmeCnfGrpEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "an entry in the SRME Distribution configuration table" INDEX { srmeLineNum, srmeStartVtNum } ::= { srmeCnfGrpTable 1 } SrmeCnfGrpEntry ::= SEQUENCE { srmeLineNum INTEGER, srmeStartVtNum INTEGER, srmeRowStatus INTEGER, srmeTargetSlotNum INTEGER, srmeTargetSlotLineNum INTEGER, srmeVtFramingType INTEGER } srmeLineNum OBJECT-TYPE SYNTAX INTEGER (1..3) ACCESS read-only STATUS mandatory DESCRIPTION "Select SRME line number. For OC3/STM1: SYNTAX INTEGER 1 There is no default value for this object." ::= { srmeCnfGrpEntry 1 } srmeStartVtNum OBJECT-TYPE SYNTAX INTEGER (1..84) ACCESS read-only STATUS mandatory DESCRIPTION "The start T1 or E1 number (virtual tributary) to be affected. For OC3 with T1 tributaries: SYNTAX INTEGER (1 .. 84) For STM1 with E1 tributaries: SYNTAX INTEGER (1 .. 63) There is no default value for this object." ::= { srmeCnfGrpEntry 2 } srmeRowStatus OBJECT-TYPE SYNTAX INTEGER { add(1), delete(2), modify(3) } ACCESS read-write STATUS mandatory DESCRIPTION "Command used to add, delete, or modify one or more T1 or E1 mappings. Only the srmeVtFramingType object can be modified once the distribution link is added. To modify all other objects, user should first delete the link and add it again. Default value is modify." ::= { srmeCnfGrpEntry 3 } srmeTargetSlotNum OBJECT-TYPE SYNTAX INTEGER (1..32) ACCESS read-write STATUS mandatory DESCRIPTION " specify the target slot number to be linked. There is no default value for this object. For MGX8x50: SRM01 services slots 1 - 6 and 9 - 14, SRM02 services slots 17 - 22 and 25 - 30 For MGX8x30: service slots 3-6 and 10-13 " ::= { srmeCnfGrpEntry 4 } srmeTargetSlotLineNum OBJECT-TYPE SYNTAX INTEGER (0..8) ACCESS read-write STATUS mandatory DESCRIPTION "Specify the target slot's line to be linked. 0 means not assigned. There is no default value for this object." ::= { srmeCnfGrpEntry 5 } srmeVtFramingType OBJECT-TYPE SYNTAX INTEGER { notApplicable(1), sf(2), esf(3) } ACCESS read-write STATUS mandatory DESCRIPTION "Specifies the Framing Type of the target slot line. This is applicable only if the target module is a T1 Service Module and byte sync mapping is used on SRME. Not applicable to E1 Service Modules. sf: Superframe or D4 esf: Extended Superframe. Default is 'esf' if SRME lines are configured for byte-synchronous mapping, Else, the default is notApplicable. " ::= { srmeCnfGrpEntry 6 } END