Commit version 24.12.13800
This commit is contained in:
@ -240,7 +240,15 @@ snDhcpServerGlobalConfigState OBJECT-TYPE
|
||||
snDhcpServerPoolOptionAscii OCTET STRING,
|
||||
snDhcpServerPoolOptionHexString OCTET STRING,
|
||||
snDhcpServerPoolOptionIPString OCTET STRING,
|
||||
snDhcpServerPoolOptionRowStatus RowStatus
|
||||
snDhcpServerPoolOptionRowStatus RowStatus,
|
||||
snDhcpServerPoolOptionBoolString OCTET STRING,
|
||||
snDhcpServerPoolOptionIntString OCTET STRING,
|
||||
snDhcpServerPoolOptionIPAddrPairString OCTET STRING,
|
||||
snDhcpServerPoolOptionStaticRouteString OCTET STRING,
|
||||
snDhcpServerPoolOptionSlpDirAgentString OCTET STRING,
|
||||
snDhcpServerPoolOptionSlpSrvScopeString OCTET STRING,
|
||||
snDhcpServerPoolOptionPxeIntfIdString OCTET STRING,
|
||||
snDhcpServerPoolOptionPxeClientIdString OCTET STRING
|
||||
}
|
||||
|
||||
snDhcpServerPoolOptionCode OBJECT-TYPE
|
||||
@ -256,7 +264,16 @@ snDhcpServerGlobalConfigState OBJECT-TYPE
|
||||
{
|
||||
ascii(0),
|
||||
hex(1),
|
||||
ip(2)
|
||||
ip(2),
|
||||
bool(3),
|
||||
integer(4),
|
||||
telephony(5),
|
||||
ipaddrpair(6),
|
||||
staticroute(7),
|
||||
slpdiragent(8),
|
||||
slpsrvscope(9),
|
||||
pxeintfid(10),
|
||||
pxeclientid(11)
|
||||
}
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
@ -302,6 +319,111 @@ snDhcpServerGlobalConfigState OBJECT-TYPE
|
||||
createAndGo, destroy."
|
||||
::= { snDhcpServerPoolOptionConfigEntry 6 }
|
||||
|
||||
snDhcpServerPoolOptionBoolString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(4..12))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Bool string of an option."
|
||||
::= { snDhcpServerPoolOptionConfigEntry 7 }
|
||||
|
||||
snDhcpServerPoolOptionIntString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(4..12))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Int string of an option"
|
||||
::= { snDhcpServerPoolOptionConfigEntry 8 }
|
||||
|
||||
snDhcpServerPoolOptionIPAddrPairString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(8..16))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Ip address pair (ip address & mask) string of option
|
||||
policy-filter(21).Two sets of destination address and subnet
|
||||
mask can be configured at most simultaneously."
|
||||
::= { snDhcpServerPoolOptionConfigEntry 9 }
|
||||
|
||||
snDhcpServerPoolOptionStaticRouteString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(8..16))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Ip address pair (detination & route) string of option
|
||||
static-route(33). Two sets of destination address and static
|
||||
route of the destination address can be configured at most
|
||||
simultaneously."
|
||||
::= { snDhcpServerPoolOptionConfigEntry 10 }
|
||||
|
||||
snDhcpServerPoolOptionSlpDirAgentString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..54))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This option specifies the location of one or more SLP
|
||||
Directory Agents. The SLP Directory Agent Option specifies a list
|
||||
of IP addresses for Directory Agents.
|
||||
Directory Agents MUST be listed in order of
|
||||
preference, if there is an order of preference.
|
||||
The first byte in the Directory Agent option may be set to
|
||||
either 0 or 1 (false or true). If it is set to 1,
|
||||
the SLP User Agent or Service Agent so configured MUST NOT employ
|
||||
either active or passive multicast discovery of Directory Agents.
|
||||
maximum of three SLP Directory Agents can be configured.
|
||||
|
||||
The output of the object in the format
|
||||
'false xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx' or
|
||||
'true xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx' "
|
||||
::= { snDhcpServerPoolOptionConfigEntry 11 }
|
||||
|
||||
snDhcpServerPoolOptionSlpSrvScopeString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..135))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The scope list is a comma delimited list which indicates
|
||||
the scopes that a SLP Agent is configured to use.
|
||||
The first byte determines (0 or 1) whether SLP Agents override their
|
||||
static configuration for scopes with the <Scope List> string provided
|
||||
by the option. This allows DHCP administrators to implement a policy
|
||||
of assigning a set of scopes to Agents for service provision. If the
|
||||
Mandatory byte is 0, static configuration takes precedence over the
|
||||
DHCP provided scope list. If the Mandatory byte is 1, the <Scope
|
||||
List> provided in this option MUST be used by the SLP Agent.
|
||||
|
||||
The maximum size of service scopes list is 128 bytes.
|
||||
|
||||
The output of the object in the format
|
||||
'false slp-agent1:slp-agent2:slp-agent3:..' or
|
||||
'true slp-agent1:slp-agent2:slp-agent3:..'"
|
||||
::= { snDhcpServerPoolOptionConfigEntry 12 }
|
||||
|
||||
snDhcpServerPoolOptionPxeIntfIdString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..3))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The object refers the value of PXE interface Id value.
|
||||
First Octet encodes a network interface type. For now the only
|
||||
supported value is 1 for Universal Network Device Interface (UNDI).
|
||||
second and third bytes describe the interface revision."
|
||||
::= { snDhcpServerPoolOptionConfigEntry 13 }
|
||||
|
||||
snDhcpServerPoolOptionPxeClientIdString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..132))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The object refers the value of PXE client id string.
|
||||
|
||||
First byte describes the type of the machine identifier in the
|
||||
remaining octets in this option. 0 (zero) is the only value defined
|
||||
for this octet at the present time, and it describes the remaining
|
||||
octets as a Globally Unique Identifier (GUID).
|
||||
The maximum size of client id string is 128 bytes."
|
||||
::= { snDhcpServerPoolOptionConfigEntry 14 }
|
||||
|
||||
-- =================================================================
|
||||
-- 3rd Table of snDhcpServerTableObjects : snDhcpServerPoolExcludedSingleAddressTable
|
||||
-- =================================================================
|
||||
|
Reference in New Issue
Block a user