LOOPBACK-MIB DEFINITIONS ::= BEGIN -- Quanta Corporation Loopback MIB -- Copyright 2004- Quanta Computer, Inc. All rights reserved. -- This Specification is supplied "AS IS", Quanta Computer Inc. -- makes no warranty, either expressed or implied, -- as to the use, operation, condition, or performance of the -- Specification. IMPORTS MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, mib-2, Unsigned32, Integer32 FROM SNMPv2-SMI RowStatus, DisplayString, PhysAddress, TruthValue FROM SNMPv2-TC InetAddressIPv4 FROM INET-ADDRESS-MIB switch FROM QUANTA-SWITCH-MIB; loopback MODULE-IDENTITY LAST-UPDATED "201108310000Z" ORGANIZATION "QCI" CONTACT-INFO " Customer Support Postal: Quanta Computer Inc. 4, Wen Ming 1 St., Kuei Shan Hsiang, Tao Yuan Shien, Taiwan, R.O.C. Tel: +886 3 328 0050 E-Mail: strong.chen@quantatw.com" DESCRIPTION "The Quanta Private MIB for Loopback IPV6 address configuration" ::= { switch 22 } --************************************************************************************** -- agentLoopbackIPV6Group -- --************************************************************************************** agentLoopbackGroup OBJECT IDENTIFIER ::= { loopback 1 } agentLoopbackTable OBJECT-TYPE SYNTAX SEQUENCE OF AgentLoopbackEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A summary table of the Loopback instances" ::= { agentLoopbackGroup 1 } agentLoopbackEntry OBJECT-TYPE SYNTAX AgentLoopbackEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "" INDEX { agentLoopbackID } ::= { agentLoopbackTable 1 } AgentLoopbackEntry ::= SEQUENCE { agentLoopbackID Integer32, agentLoopbackIfIndex Integer32, agentLoopbackIPAddress InetAddressIPv4, agentLoopbackIPSubnet InetAddressIPv4, agentLoopbackStatus RowStatus } agentLoopbackID OBJECT-TYPE SYNTAX Integer32 (0..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The Loopback ID is associated with Internal Interface number which will be generated when we create a loopback." ::= { agentLoopbackEntry 1 } agentLoopbackIfIndex OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "This is external interface associated with inetrnal interface of loopback. The Loopback ID is associated with Internal Interface number which will be generated when we create a loopback." ::= { agentLoopbackEntry 2 } agentLoopbackIPAddress OBJECT-TYPE SYNTAX InetAddressIPv4 MAX-ACCESS read-write STATUS current DESCRIPTION "The IP Address configured for the respective loopback" ::= { agentLoopbackEntry 3 } agentLoopbackIPSubnet OBJECT-TYPE SYNTAX InetAddressIPv4 MAX-ACCESS read-write STATUS current DESCRIPTION "The Subnet mask configured for the respective loopback" ::= { agentLoopbackEntry 4 } agentLoopbackStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "Status of this instance. The rows can be added/deleted in the table by setting createAndGo/destroy respectively active(1) - this loopback instance is active createAndGo(4) - set to this value to create an instance destroy(6) - set to this value to delete an instance" ::= { agentLoopbackEntry 5 } END