1-- ***************************************************************** 2-- NMS-EPON-Liid.MIB: NMS LLID Liid MIB file 3-- AUG 2009 4-- ***************************************************************** 5-- 6 7NMS-EPON-LLID-QOS-POLICY DEFINITIONS ::= BEGIN 8 9 IMPORTS 10 IpAddress 11 FROM RFC1155-SMI 12 OBJECT-TYPE 13 FROM RFC-1212 14 DisplayString 15 FROM RFC1213-MIB 16 nmsEPONGroup 17 FROM NMS-SMI 18 TruthValue,RowStatus,PhysAddress,DisplayString,QosPolicy 19 FROM SNMPv2-TC; 20 21 nmsEponLiidQosPolicy OBJECT IDENTIFIER ::= { nmsEPONGroup 102} 22 23nmsEponLiidQosPolicyTable OBJECT-TYPE 24 SYNTAX SEQUENCE OF nmsEponLiidQosPolicyEntry 25 MAX-ACCESS not-accessible 26 STATUS current 27 DESCRIPTION "A list of nmsEponLiidQosPolicyEntry entries. 28 The port-based security mac address information." 29 ::= { nmsEponLiidQosPolicy 1 } 30 31 nmsEponLiidQosPolicyEntry OBJECT-TYPE 32 SYNTAX nmsEponLiidQosPolicyEntry 33 MAX-ACCESS not-accessible 34 STATUS current 35 DESCRIPTION 36 "Policy Map Apply operation.(LiidIfIndex_LiidQosPolicy)to Apply a Policy Map.For example,'07_q1'will apply the policy map 'q1' to LLID which pon port diid is 7. For 3305, the EPON will return a error symbol to indicate 37 a unsuccessful operation. " 38 INDEX {LiidIfIndex,LiidQosPolicy} 39 ::= { nmsEponLiidQosPolicyTable 1 } 40 41 nmsEponLiidQosPolicyEntry ::= SEQUENCE { 42 LiidIfIndex INTEGER, 43 LiidQosPolicy DisplayString, 44 LiidQosPolicyCreate DisplayString, 45 LiidQosPolicyDel TruthValue 46 } 47 48 49 LiidIfIndex OBJECT-TYPE 50 SYNTAX INTEGER 51 ACCESS read-only 52 STATUS current 53 DESCRIPTION 54 "LLID interface id, unique in system." 55 ::= { nmsEponLiidQosPolicyEntry 1 } 56 57 LiidQosPolicy OBJECT-TYPE 58 SYNTAX DisplayString 59 ACCESS read-only 60 STATUS current 61 DESCRIPTION 62 "A unique string for each Policy Map up to 20 characters. 63 This string is part of index of Table." 64 ::= { nmsEponLiidQosPolicyEntry 2 } 65 66 LiidQosPolicyCreate OBJECT-TYPE 67 SYNTAX DisplayString 68 ACCESS read-write 69 STATUS current 70 DESCRIPTION 71 "Policy Map Apply operation.(LiidSlotIndex_LiidIfIndex_LiidQosPolicy)to Apply a 72 Policy Map.For example,'07_q1'will apply the policy map 'q1' to Liid 7. 73 For 3305 ,the EPON will return a error symbol to indicate 74 a unsuccessful operation. " 75 ::= { nmsEponLiidQosPolicyEntry 3 } 76 LiidQosPolicyDel OBJECT-TYPE 77 SYNTAX TruthValue 78 ACCESS read-write 79 STATUS current 80 DESCRIPTION 81 "Liid Policy Map delete flag,True(1) will delete the Policy Map." 82 ::= { nmsEponLiidQosPolicyEntry 4} 83 84 85 86 87END 88