1-- ***************************************************************** 2-- CISCO-IETF-PW-TC-MIB.my 3-- 4-- February 2003, Tim Swanson 5-- 6-- Copyright (c) 2003, 2006 by cisco Systems, Inc. 7-- All rights reserved. 8-- 9-- Made Cisco Proprietary based on IETF draft: 10-- draft-ietf-pwe3-pw-tc-mib-00.txt 11-- ***************************************************************** 12 13CISCO-IETF-PW-TC-MIB DEFINITIONS ::= BEGIN 14 15 IMPORTS 16 MODULE-IDENTITY, Unsigned32, Integer32 17 FROM SNMPv2-SMI 18 19 TEXTUAL-CONVENTION 20 FROM SNMPv2-TC 21 22 ciscoExperiment 23 FROM CISCO-SMI 24 ; 25 26 cpwTCMIB MODULE-IDENTITY 27 LAST-UPDATED "200607211200Z" -- 21 July 2006 10:30:00 GMT 28 ORGANIZATION 29 "Cisco Systems, Inc." 30 CONTACT-INFO 31 " 32 Thomas D. Nadeau 33 Postal: Cisco Systems, Inc. 34 250 Apollo Drive 35 Chelmsford, MA 01824 36 Tel: +1-978-497-3051 37 Email: tnadeau@cisco.com 38 39 MPLS MIB Development Team 40 Postal: Cisco Systems, Inc. 41 250 Apollo Drive 42 Chelmsford, MA 01924 43 Tel: +1-978-497-3989 44 Email: ch-mpls-mib-dev@cisco.com 45 " 46 47 DESCRIPTION 48 "This MIB Module provides Textual Conventions 49 and OBJECT-IDENTITY Objects to be used PW services." 50 51 -- Revision history. 52 REVISION "200607211200Z" -- 21 July 2006 10:30:00 GMT 53 DESCRIPTION 54 "Added following enumerations to cpwVcType TC: 55 e1Satop(12), t1Satop(13), e3Satop(14), t3Satop(15), 56 basicCesPsn(16), basicTdmIp(17), tdmCasCesPsn(18), 57 tdmCasTdmIp(19). The above enumerations are based 58 on IANAPwTypeTC TC in draft-ietf-pwe3-pw-mib-08.txt" 59 60 61 REVISION "200302261200Z" -- 26 Feb 2003 12:00:00 GMT 62 DESCRIPTION 63 "Made Cisco proprietary based on the PW-TC-MIB.my file 64 extracted from draft-ietf-pwe3-pw-tc-mib-00.txt 65 " 66 67 REVISION "200205281200Z" -- 28 May 2002 12:00:00 GMT 68 DESCRIPTION "Adding PwVcType, and enhance some descriptions." 69 70 REVISION "200201301200Z" -- 30 January 2002 12:00:00 GMT 71 DESCRIPTION "Adding PwVcVlanCfg, PwAddressType and 72 PwOperStatus." 73 74 REVISION "200112201200Z" -- 20 Dec 2001 12:00:00 GMT 75 DESCRIPTION "Remove PwVcInstance" 76 77 REVISION "200107121200Z" -- 12 July 2001 12:00:00 GMT 78 DESCRIPTION "Initial version." 79 80 ::= { cpwMIB 1 } -- cpwMIB To Be Assigned by IANA 81 82 cpwMIB OBJECT IDENTIFIER 83 ::= { ciscoExperiment 20000 } -- To be assigned by CANA 84 85 -- Textual Conventions defined below are organized alphabetically 86 87 CpwGroupID ::= TEXTUAL-CONVENTION 88 STATUS current 89 DESCRIPTION 90 "An administrative identification mechanism for grouping a 91 set of service-specific pseudo-wire services. May only 92 have local significance." 93 SYNTAX Unsigned32 94 95 CpwVcIDType ::= TEXTUAL-CONVENTION 96 STATUS current 97 DESCRIPTION 98 "Virtual Circuit Identifier. Used to identify the VC 99 (together with some other fields) in the signaling 100 session. Zero if the VC is set-up manually." 101 SYNTAX Unsigned32 102 103 CpwVcIndexType ::= TEXTUAL-CONVENTION 104 STATUS current 105 DESCRIPTION 106 "Virtual Circuit Index. Locally unique index for indexing 107 several MIB tables associated with a particular VC." 108 SYNTAX Unsigned32 109 110 CpwVcVlanCfg ::= TEXTUAL-CONVENTION 111 STATUS current 112 DESCRIPTION 113 "VLAN configuration for Ethernet PW. 114 Values between 0 to 4095 indicate the actual VLAN field 115 value. 116 A value of 4096 indicates that the object refer to 117 untagged frames, i.e. frames without 802.1Q field. 118 A value of 4097 indicates that the object is not 119 relevant." 120 SYNTAX Integer32 (0..4097) 121 122 CpwOperStatus ::= TEXTUAL-CONVENTION 123 STATUS current 124 DESCRIPTION 125 "Indicate the operational status of the PW VC. 126 127 - up: Ready to pass packets. 128 - down: If PW signaling has not yet finished, or 129 indications available at the service 130 level indicate that the VC is not 131 passing packets. 132 - testing: If AdminStatus at the VC level is set to 133 test. 134 - dormant: The VC is not available because of the 135 required resources are occupied VC with 136 higher priority VCs . 137 - notPresent: Some component is missing to accomplish 138 the set up of the VC. 139 - lowerLayerDown: The underlying PSN or outer tunnel is not 140 in OperStatus 'up'. 141 " 142 SYNTAX INTEGER { 143 up(1), 144 down(2), 145 testing(3), 146 unknown(4), 147 dormant(5), 148 notPresent(6), 149 lowerLayerDown(7) 150 } 151 152 CpwVcType ::= TEXTUAL-CONVENTION 153 STATUS current 154 DESCRIPTION 155 "Indicate the VC type (i.e. the carried service). 156 Note: the exact set of VC types is yet to be worked 157 out by the WG. 158 " 159 SYNTAX INTEGER { 160 other(0), 161 frameRelay(1), 162 atmAal5Vcc(2), 163 atmTransparent(3), 164 ethernetVLAN(4), 165 ethernet(5), 166 hdlc(6), 167 ppp(7), 168 cep(8), 169 atmVccCell(9), 170 atmVpcCell(10), 171 ethernetVPLS (11), 172 e1Satop(12), 173 t1Satop(13), 174 e3Satop(14), 175 t3Satop(15), 176 basicCesPsn(16), 177 basicTdmIp(17), 178 tdmCasCesPsn(18), 179 tdmCasTdmIp(19) 180 } 181 182END 183