-- -- Copyright (c) 1994 - 2001 Marconi Communications, Inc. as an unpublished -- work. This notice does not imply unrestricted or public access to these -- materials which are a trade secret of Marconi Communications, Inc. or its -- parent and subsidiary companies and companies under common control -- therewith (together referred to as "Marconi Communications"), and which -- may not be reproduced, used, sold or transferred to any third party -- without Marconi Communications' prior written consent. -- -- All rights reserved. -- -- U.S. Government Restricted Rights. If you are licensing the Software -- on behalf of the U.S. Government ("Government"), the following -- provisions apply to you. If the Software is supplied to the Department -- of Defense ("DoD"), it is classified as "Commercial Computer Software" -- under paragraph 252.227-7014 of the DoD Supplement to the Federal -- Acquisition Regulations ("DFARS") (or any successor regulations) and -- the Government is acquiring only the license rights granted herein (the -- license rights customarily provided to non-Government users). If the -- Software is supplied to any unit or agency of the Government other than -- DoD, it is classified as "Restricted Computer Software" and the -- Government's rights in the Software are defined in paragraph 52.227-19 -- of the Federal Acquisition Regulations ("FAR") (or any successor -- regulations) or, in the cases of NASA, in paragraph 18.52.227-86 of -- the FAR (or any successor regulations). -- -- RESTRICTED AND LIMITED RIGHTS LEGEND. Use, duplication or disclosure -- by the government is subject to restrictions as set forth in -- subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer -- Software clause at DFARS 252.227-7013 (October 1988) and FAR 52.227-19 -- (June 1987). -- -- Fore-Ipr-Redundancy-MIB DEFINITIONS ::= BEGIN IMPORTS OBJECT-TYPE, MODULE-IDENTITY, Integer32 FROM SNMPv2-SMI RowStatus FROM SNMPv2-TC asxd FROM Fore-Common-MIB; ------------------------------------------------------------------------ -- MIB Groups iprRedundancyGroup MODULE-IDENTITY LAST-UPDATED "9911050000Z" ORGANIZATION "Marconi Communications" CONTACT-INFO " Postal: Marconi Communications, Inc. 5000 Marconi Drive Warrendale, PA 15086-7502 Tel: +1 724 742 6999 Email: bbrs-mibs@marconi.com Web: http://www.marconi.com" DESCRIPTION "Fore Systems IPR Redundancy MIB Definitions" ::= { asxd 27 } ------------------------------------------------------------------------ -- IprGroupStatus -- IprGroupStatus ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The value of this object specifies the status of the IPR unit" SYNTAX INTEGER { unavailable(1), active(2), standby(3) } -------------------------------------------------------- -- -- IPR Portcard Redundancy Table -------------------------------------------------------- iprGroupTable OBJECT-TYPE SYNTAX SEQUENCE OF IprGroupEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The set of redundant IPR portcards" ::= {iprRedundancyGroup 1} iprGroupEntry OBJECT-TYPE SYNTAX IprGroupEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Each row defines a pair of IPR portcards that will be part of a redundant group." INDEX { iprGroupIndex } ::= { iprGroupTable 1} IprGroupEntry ::= SEQUENCE { iprGroupIndex Integer32, iprGroupBoard1 Integer32, iprGroupModule1 Integer32, iprGroupStatus1 IprGroupStatus, iprGroupBoard2 Integer32, iprGroupModule2 Integer32, iprGroupStatus2 IprGroupStatus, iprGroupRowStatus RowStatus } iprGroupIndex OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current DESCRIPTION "Index of this redundant IPR group" ::= {iprGroupEntry 1} iprGroupBoard1 OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-create STATUS current DESCRIPTION "The board index of this IPR blade" ::= {iprGroupEntry 2} iprGroupModule1 OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-create STATUS current DESCRIPTION "The network module index of this IPR blade" ::= {iprGroupEntry 3} iprGroupStatus1 OBJECT-TYPE SYNTAX IprGroupStatus MAX-ACCESS read-only STATUS current DESCRIPTION "The operational status of this IRP blade" ::= {iprGroupEntry 4} iprGroupBoard2 OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-create STATUS current DESCRIPTION "The board index of this IPR blade" ::= {iprGroupEntry 5} iprGroupModule2 OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-create STATUS current DESCRIPTION "The network module index of this IPR blade" ::= {iprGroupEntry 6} iprGroupStatus2 OBJECT-TYPE SYNTAX IprGroupStatus MAX-ACCESS read-only STATUS current DESCRIPTION "The operational status of this IRP blade" ::= {iprGroupEntry 7} iprGroupRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-write STATUS current DESCRIPTION "Administrative status of this entry" ::= {iprGroupEntry 8} END