Commit version 24.12.13800

This commit is contained in:
2025-01-06 17:35:06 -05:00
parent b7f6a79c2c
commit 55d9218816
6133 changed files with 4239740 additions and 1374287 deletions

View File

@ -432,4 +432,81 @@ fsTacClntExtServerKey OBJECT-TYPE
"Secret key shared between the client and server(IPv4 or IPv6) for encryption and
decryption"
::= { fsTacClntExtServerEntry 7 }
-- ----------------------------------
-- Table 2: TACACS+ Server Group Table
-- ----------------------------------
fsTacClntExtServerGroupMibTable OBJECT-TYPE
SYNTAX SEQUENCE OF FsTacClntExtServerGroupMibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The TACACS+ server group table."
::= { futureTacacsClientExtTableGroup 2 }
fsTacClntExtServerGroupMibEntry OBJECT-TYPE
SYNTAX FsTacClntExtServerGroupMibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The TACACS+ server group table entry. The entries are indexed with the
server group name, server address type, and the server address.
To create/delete a server group, use the index with server address type 0
and a 0-length address (0.0).
Ex: snmpset fsTacClntExtServerGroupMibStatus.'G1'.0.0 4
snmpset fsTacClntExtServerGroupMibStatus.'G1'.0.0 6
After a server group is created, servers can be added into it.
Ex: snmpset fsTacClntExtServerGroupMibStatus.'G1'.1.'1.2.3.4' 4
"
INDEX {
fsTacClntExtServerGroupMibName,
fsTacClntExtServerGroupServerAddressType,
fsTacClntExtServerGroupServerAddress
}
::= { fsTacClntExtServerGroupMibTable 1 }
FsTacClntExtServerGroupMibEntry ::= SEQUENCE {
fsTacClntExtServerGroupMibStatus
RowStatus,
fsTacClntExtServerGroupMibName
DisplayString,
fsTacClntExtServerGroupServerAddressType
InetAddressType,
fsTacClntExtServerGroupServerAddress
InetAddress
}
fsTacClntExtServerGroupMibStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status of the server group entry."
::= { fsTacClntExtServerGroupMibEntry 1 }
fsTacClntExtServerGroupMibName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the server group."
::= { fsTacClntExtServerGroupMibEntry 2 }
fsTacClntExtServerGroupServerAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of IP address used. This can be IPv4 or IPv6."
::= { fsTacClntExtServerGroupMibEntry 3 }
fsTacClntExtServerGroupServerAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Server IP address"
::= { fsTacClntExtServerGroupMibEntry 4 }
END