Set-DhcpServerv6OptionValue is accessible with the help of DHCPServer module. To configure DHCPServer, go through this link.
Synopsis
Sets an IPv6 option value at the server, scope, or reservation level.
Description
The Set-DhcpServerv6OptionValue cmdlet sets an IPv6 option value at the server, scope, or reservation level. The definition for the option must already exist on the Dynamic Host Configuration Protocol (DHCP) server service. If the ReservedIP parameter is specified, then the option values are set at the reservation level. If only the Prefix parameter is specified, then the option values are set at the scope level. If neither the Prefix nor ReservedIP parameter is specified, then the option values are set at the server level. The Prefix and ReservedIP parameters cannot both be specified.
If the VendorClass parameter is specified, then this cmdlet sets the option value for the specified vendor class. If the UserClass parameter is specified, then this cmdlet sets the option value for the specified user class.
Parameters
-AsJob
Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. The cmdlet immediately returns an object that represents the job and then displays the command prompt. You can continue to work in the session while the job completes. To manage the job, use the *-Job
cmdlets. To get the job results, use the Receive-Job cmdlet. For more information about Windows PowerShell background jobs, see about_Jobs.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-CimSession
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local computer.
Type: | CimSession[] |
Aliases: | Session |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ComputerName
Specifies the DNS name, or IPv4 or IPv6 address, of the target computer that runs the DHCP server service.
Type: | String |
Aliases: | Cn |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Confirm
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-DnsServer
Specifies one or more values for the DNS server option.
Type: | IPAddress[] |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-DomainSearchList
Specifies one or more values for the domain search list option.
Type: | String[] |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Force
Specifies that the DNS server validation is skipped. This parameter is applicable only if the DNSServer parameter or option ID 23 is specified.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-InfoRefreshTime
Specifies the value for the information refresh option. This parameter value specifies an upper bound for how long a client waits before refreshing information retrieved from DHCPv6 server. This parameter is used with stateless DHCPv6 as there are no addresses or other entities with lifetimes that can tell the client when to contact the DHCPv6 server to refresh its configuration.
Type: | UInt32 |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-OptionId
Specifies the numeric identifier (ID) of the option for which a value is set.
Type: | UInt32 |
Position: | 1 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-PassThru
Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Prefix
Specifies the IPv6 subnet prefix of the scope on which the option value is set.
Type: | IPAddress |
Position: | 3 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ReservedIP
Specifies the IPv6 address of the reservation for which the option value is set.
Type: | IPAddress |
Aliases: | IPAddress |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ThrottleLimit
Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0
is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer.
Type: | Int32 |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-UserClass
Specifies the option value for the specified user class.
Type: | String |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Value
Specifies the value to set for the option.
Type: | String[] |
Position: | 2 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-VendorClass
Specifies the option value for the specified vendor class.
Type: | String |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Syntax
Set-DhcpServerv6OptionValue [-PassThru] [-Force] [[-Prefix] <IPAddress>] [-UserClass <String>] [-ComputerName <String>] [-ReservedIP <IPAddress>] [-Value] <String[]> [-OptionId] <UInt32> [-VendorClass <String>] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [-WhatIf] [-Confirm] [<CommonParameters>]
Set-DhcpServerv6OptionValue [-PassThru] [-Force] [[-Prefix] <IPAddress>] [-UserClass <String>] [-DnsServer <IPAddress[]>] [-DomainSearchList <String[]>] [-InfoRefreshTime <UInt32>] [-ComputerName <String>] [-ReservedIP <IPAddress>] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [-WhatIf] [-Confirm] [<CommonParameters>]
—————EXAMPLE 1—————
PS C:>Set-DhcpServerv6OptionValue -ComputerName dhcpsrv.TOSSolution.com -DnsServer 2001:4898:7020:1111::2 -DomainSearchList TOSSolution.com
This example sets the DHCPv6 server level option values for DNS server and domain search list options.
—————EXAMPLE 2—————
PS C:\>Set-DhcpServerv6OptionValue -ComputerName dhcpsrv.TOSSolution.com -Prefix 2001:4898:7020:1111:: -DnsServer 2001:4898:7020:1111::2 -DomainSearchList TOSSolution.com
This example sets the DHCPv6 option values for DNS server and domain search list options on the scope 2001:4898:7020:1111::.
—————EXAMPLE 3—————
PS C:\>Set-DhcpServerv6OptionValue -ComputerName dhcpsrv.TOSSolution.com -OptionId 22-Value 2001:4898:7020:1111::2
This example sets server-wide DHCPv6 option value for option ID 22, or the DNS server.
—————EXAMPLE 4—————
PS C:\>Set-DhcpServerv6OptionValue -ComputerName dhcpsrv.TOSSolution.com -Prefix 2001:4898:7020:1111:: -OptionId 22 -Value 2001:4898:7020:1111::2
This example sets the DHCPv6 option value for option ID 22 , or the DNS server, for the specified DHCPv6 scope.
—————EXAMPLE 5—————
PS C:\>Set-DhcpServerv6OptionValue -ComputerName dhcpsrv.TOSSolution.com -ReservedIP 2001:4898:7020:1111::5 -OptionId 22 -Value 2001:4898:7020:1111::2
This example sets the DHCPv6 option value for option ID 22, or the DNS server, for the specified reservation.
—————EXAMPLE 6—————
PS C:\>Set-DhcpServerv6OptionValue -ComputerName dhcpsrv.TOSSolution.com -Prefix 2001:4898:7020:1111:: -VendorClass MSUCClient -OptionId 6 -Value 6874746543
This example sets the vendor-class-specific DHCPv6 option value configured on the specified scope for the specified vendor class named MSUCClient.
—————EXAMPLE 7—————
PS C:\>Set-DhcpServerv6OptionValue -ComputerName dhcpsrv.TOSSolution.com -Prefix 2001:4898:7020:1111:: -UserClass SFComputer -OptionId 22 -Value 2001:4898:7020:1111::20
This example sets the user-class-specific DHCPv6 option value for option ID 22, or the DNS server, on the specified scope for the specified user class.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Set-DhcpServerv6OptionValue
You can also read about
- Get-DhcpServerv6OptionValue
- Remove-DhcpServerv6OptionValue
To know more PowerShell cmdlets(Commands) on DHCPServer click here