-- CVS ID: $Id: hashcode.mib,v 29.1 2000/08/11 01:00:07 asarma Exp $ -- Lucent ASCEND-HASH-CODE-MIB -- -- Lucent Technologies Inc. -- 1701 Harbor Bay Pkwy -- Alameda, CA 94502 -- +1 510 769 6001 -- info@ascend.com -- -- Copyright (c) 2000 Lucent Technologies Inc. -- All rights reserved. -- -- -- First introduced in TAOS 9.0 -- -- 03/27/2000 Initial release Aks ASCEND-HASH-CODE-MIB DEFINITIONS ::= BEGIN IMPORTS sysHashCodeGroup FROM ASCEND-MIB OBJECT-TYPE FROM RFC-1212 DisplayString FROM ASCEND-MIB; hashCodeTable OBJECT-TYPE SYNTAX SEQUENCE OF HashCodeTableEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "A list of hash code entries indexed by the slotIndex and hashCodeFeature" ::= { sysHashCodeGroup 1 } hashCodeTableEntry OBJECT-TYPE SYNTAX HashCodeTableEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Definition of entries in the hash code table" INDEX { hashCodeSlotIndex, hashCodeFeature } ::= { hashCodeTable 1 } HashCodeTableEntry ::= SEQUENCE { hashCodeSlotIndex INTEGER, hashCodeFeature INTEGER, hashCodeState INTEGER, hashCodeDescription DisplayString, hashCodeDirty INTEGER } hashCodeSlotIndex OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "A unique value for each slot card. Its value ranges between 1 and the value slotNumber." ::= { hashCodeTableEntry 1 } hashCodeFeature OBJECT-TYPE SYNTAX INTEGER { rs366(12), d-channel(13), auto-DBAE(14), bonding(15), aim(16), v25bis(17), x21(18), switched(19), multi-rate(20), t1-pri-conversion(21), pcbus(22), bridging(23), pipe-hx(24), frame-relay(25), ip-routing(26), ipx-routing(27), domestic(31), phs-2-1-support(33), modem-dialout(34), pipe-px(35), firewalls(36), serial-port-T1CSU(37), pipe-pots(39), force-multiband-platform-simulation(41), k56-slot-card-only(43), network-management(44), advanced-agent(45), phs-support(46), selectools(47), routing-protocols-disabled(48), atmp(49), maxdax(50), tnt-adsl-restricted(51), tnt-sdsl-restricted(52), tnt-idsl-restricted(53), voip(54), xcom-ss7(56), ss7asg(57), l2tp(58), pptp(59), aodi(60), ipinip(61), sdtn(62), vrouter(63), madd-modem(64), madd-96-devices(65), madd-hdlc(66), v110(67), restrictDslTerm(68), rtfax(69), megamax(70), l2f(71), maxtap(72), atmsvc(73), frvc(74), network-mgmt-voip(75), network-mgmt-plus(76), network-mgmt-plus-voip(77), voip-max-capacity-allowed(79), voip-pots(80), cvmax(81), wormarq(82), nm-copper-loop-test(83), nm-reporting(84), nm-vpn(85), nm-navis-radius(86), tnt-x25(87), restrict-redundancy(88), pnni(89), fgd-signaling(90), ima(91), maxlink-client(100), data-call(101), dual-slot-t1(102), r2-signaling(103), nm-prov(104), nm-prov-core(105) } ACCESS read-only STATUS mandatory DESCRIPTION "The list of available card code features." ::= { hashCodeTableEntry 2 } hashCodeState OBJECT-TYPE SYNTAX INTEGER { enabled(1), -- the hash code is licensed disabled(2) -- the hash code is not licensed, or is unavailable } ACCESS read-only STATUS mandatory DESCRIPTION "The current hash code status" ::= { hashCodeTableEntry 3 } hashCodeDescription OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION "A description of the hash code feature" ::= { hashCodeTableEntry 4 } hashCodeDirty OBJECT-TYPE SYNTAX INTEGER { dirty(1), -- the hash code is dirty and may not be what is contained in the BASE profile. not-dirty(2) -- the hash code is current and matches the value in the BASE profile. } ACCESS read-only STATUS mandatory DESCRIPTION "The current hash code status" ::= { hashCodeTableEntry 5 } END