126 lines
5.3 KiB
Plaintext
126 lines
5.3 KiB
Plaintext
-- Dot1x Authentication Server MIB overview:
|
|
-- Dot1x Authentication Server MIB falls under MIB node of the private subtree.
|
|
|
|
DOT1X-AUTHENTICATION-SERVER-MIB DEFINITIONS ::= BEGIN
|
|
|
|
-- Quanta Computer Inc. Dot1x Authentication Server MIB
|
|
-- Copyright Quanta Computer Inc. (2003-2007) All rights reserved.
|
|
|
|
-- This SNMP Management Information Specification
|
|
-- embodies Quanta Computer Inc.'s confidential and proprietary
|
|
-- intellectual property. Quanta Computer Inc. retains all title
|
|
-- and ownership in the Specification including any revisions.
|
|
|
|
-- 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,
|
|
Integer32 FROM SNMPv2-SMI
|
|
RowStatus FROM SNMPv2-TC
|
|
DisplayString FROM RFC1213-MIB
|
|
switch FROM QUANTA-SWITCH-MIB;
|
|
|
|
|
|
dot1xAuthenticationServer MODULE-IDENTITY
|
|
LAST-UPDATED "201108310000Z" -- 26 January 2011 12:00:00 GMT
|
|
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: support@quantatw.com"
|
|
|
|
DESCRIPTION
|
|
"The Quanta Private MIB for Dot1x Authentication Server "
|
|
::= { switch 49 }
|
|
|
|
|
|
--**************************************************************************************
|
|
-- agentDot1xAuthServUserConfigGroup -> Contains MIB objects to configure Dot1x User Database
|
|
--
|
|
--**************************************************************************************
|
|
|
|
agentDot1xAuthServUserConfigGroup OBJECT IDENTIFIER ::= { dot1xAuthenticationServer 1 }
|
|
|
|
agentDot1xAuthServUserConfigCreate OBJECT-TYPE
|
|
SYNTAX DisplayString (SIZE(1..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Create a new user.
|
|
When set with a non-empty string, a new user with that name will be created.
|
|
This object will only return an empty string.
|
|
This string is limited to alpha-numeric strings (including the '-' and '_' characters)."
|
|
::= { agentDot1xAuthServUserConfigGroup 1 }
|
|
|
|
agentDot1xAuthServUserConfigTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF AgentDot1xAuthServUserConfigEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION "A table for dot1x Client details and associated functionality."
|
|
::= { agentDot1xAuthServUserConfigGroup 2 }
|
|
|
|
agentDot1xAuthServUserConfigEntry OBJECT-TYPE
|
|
SYNTAX AgentDot1xAuthServUserConfigEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION "Represents entry for port config table."
|
|
INDEX { agentDot1xAuthServUserIndex}
|
|
::= {agentDot1xAuthServUserConfigTable 1 }
|
|
|
|
AgentDot1xAuthServUserConfigEntry ::= SEQUENCE {
|
|
agentDot1xAuthServUserIndex
|
|
Integer32,
|
|
agentDot1xAuthServUserName
|
|
DisplayString,
|
|
agentDot1xAuthServUserPassword
|
|
DisplayString,
|
|
agentDot1xAuthServUserStatus
|
|
RowStatus
|
|
}
|
|
|
|
agentDot1xAuthServUserIndex OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Dot1x user config index. "
|
|
::= { agentDot1xAuthServUserConfigEntry 1}
|
|
|
|
agentDot1xAuthServUserName OBJECT-TYPE
|
|
SYNTAX DisplayString (SIZE(1..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Dot1x user name.
|
|
This string is limited to alpha-numeric strings (including '-' and '_'
|
|
characters). "
|
|
::= { agentDot1xAuthServUserConfigEntry 2}
|
|
|
|
agentDot1xAuthServUserPassword OBJECT-TYPE
|
|
SYNTAX DisplayString (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Dot1x user password."
|
|
::= { agentDot1xAuthServUserConfigEntry 3}
|
|
|
|
agentDot1xAuthServUserStatus OBJECT-TYPE
|
|
SYNTAX RowStatus
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Dot1x User Status.
|
|
active(1) - This user account is active.
|
|
destroy(6) - Set to this value to remove this user account."
|
|
::= { agentDot1xAuthServUserConfigEntry 4 }
|
|
|
|
|
|
END
|