1CT-FASTPATH-PROTECTED-PORT-MIB DEFINITIONS ::= BEGIN 2 3-- LVL7 FastPath Protected Port MIB 4-- Copyright LVL7 Systems (2003-2005) All rights reserved. 5 6-- This SNMP Management Information Specification 7-- embodies LVL7 System's confidential and proprietary 8-- intellectual property. LVL7 Systems retains all title 9-- and ownership in the Specification including any revisions. 10 11-- This Specification is supplied "AS IS", LVL7 Systems 12-- makes no warranty, either expressed or implied, 13-- as to the use, operation, condition, or performance of the 14-- Specification. 15 16-- This module provides authoritative definitions for Cabletron's 17-- CT-FASTPATH-PROTECTED-PORT-MIB 18-- 19-- This module will be extended, as needed. 20-- 21-- Enterasys Networks reserves the right to make changes in 22-- specification and other information contained in this document 23-- without prior notice. The reader should consult Enterasys Networks 24-- to determine whether any such changes have been made. 25-- 26-- In no event shall Enterasys Networks be liable for any incidental, 27-- indirect, special, or consequential damages whatsoever (including 28-- but not limited to lost profits) arising out of or related to this 29-- document or the information contained in it, even if Enterasys 30-- Networks has been advised of, known, or should have known, the 31-- possibility of such damages. 32-- 33-- Enterasys grants vendors, end-users, and other interested parties 34-- a non-exclusive license to use this Specification in connection 35-- with the management of Enterasys and Cabletron products. 36-- 37-- Copyright March 2006 Enterasys Networks, Inc. 38 39 40IMPORTS 41 MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, 42 Integer32 FROM SNMPv2-SMI 43 DisplayString FROM RFC1213-MIB 44 PortList FROM Q-BRIDGE-MIB 45-- Place this MIB on CTRON experimental branch. 46 ctFastPathProtectedPortMib FROM CTRON-MIB-NAMES; 47 48ctFastPathProtectedPortMIB MODULE-IDENTITY 49 LAST-UPDATED "200603061501Z" -- Mon Mar 6 15:01 UTC 2006 50 ORGANIZATION "Enterasys Networks, Inc." 51 CONTACT-INFO 52 "Postal: Enterasys Networks 53 50 Minuteman Rd. 54 Andover, MA 01810-1008 55 USA 56 Phone: +1 978 684 1000 57 E-mail: support@enterasys.com 58 WWW: http://www.enterasys.com" 59 DESCRIPTION 60 "The Enterasys MIB for FASTPATH Protected Port." 61 62 REVISION "200603061501Z" -- Mon Mar 6 15:01 UTC 2006 63 DESCRIPTION "The initial version of this MIB module." 64 65::= { ctFastPathProtectedPortMib 1 } 66 67--************************************************************************************** 68-- ctAgentInfoGroup 69--************************************************************************************** 70 71ctAgentSwitchConfigGroup OBJECT IDENTIFIER ::= { ctFastPathProtectedPortMIB 1 } 72 73 74--************************************************************************************** 75-- ctAgentSwitchProtectedPortGroup 76-- 77--************************************************************************************** 78 79ctAgentSwitchProtectedPortConfigGroup OBJECT IDENTIFIER ::= { ctAgentSwitchConfigGroup 18 } 80 81ctAgentSwitchProtectedPortTable OBJECT-TYPE 82 SYNTAX SEQUENCE OF AgentSwitchProtectedPortEntry 83 MAX-ACCESS not-accessible 84 STATUS current 85 DESCRIPTION 86 "The switch's protected port mapping table" 87 ::= { ctAgentSwitchProtectedPortConfigGroup 1 } 88 89ctAgentSwitchProtectedPortEntry OBJECT-TYPE 90 SYNTAX AgentSwitchProtectedPortEntry 91 MAX-ACCESS not-accessible 92 STATUS current 93 DESCRIPTION 94 "Protected ports assigned to groups." 95 INDEX { ctAgentSwitchProtectedPortGroupId } 96 ::= { ctAgentSwitchProtectedPortTable 1 } 97 98AgentSwitchProtectedPortEntry ::= 99SEQUENCE { 100 ctAgentSwitchProtectedPortGroupId 101 Integer32, 102 ctAgentSwitchProtectedPortGroupName 103 DisplayString, 104 ctAgentSwitchProtectedPortPortList 105 PortList 106 } 107 108ctAgentSwitchProtectedPortGroupId OBJECT-TYPE 109 SYNTAX Integer32 110 MAX-ACCESS not-accessible 111 STATUS current 112 DESCRIPTION 113 "The group that this port belongs to" 114 ::= { ctAgentSwitchProtectedPortEntry 1 } 115 116ctAgentSwitchProtectedPortGroupName OBJECT-TYPE 117 SYNTAX DisplayString (SIZE(0..31)) 118 MAX-ACCESS read-write 119 STATUS current 120 DESCRIPTION 121 "The name of the group" 122 ::= { ctAgentSwitchProtectedPortEntry 2 } 123 124ctAgentSwitchProtectedPortPortList OBJECT-TYPE 125 SYNTAX PortList 126 MAX-ACCESS read-write 127 STATUS current 128 DESCRIPTION 129 "The set of ports that are protected in this group" 130 ::= { ctAgentSwitchProtectedPortEntry 3 } 131 132END 133