Set-IpamBlock
Modifies an IP address block in IPAM.
Syntax
ByKeySet
Set-IpamBlock
[-NetworkId] <String[]>
[-StartIPAddress] <IPAddress[]>
[-EndIPAddress] <IPAddress[]>
[-NewNetworkId <String>]
[-NewStartIpAddress <IPAddress>]
[-NewEndIpAddress <IPAddress>]
[-Rir <String>]
[-RirReceivedDate <DateTime>]
[-Description <String>]
[-LastAssignedDate <DateTime>]
[-Owner <String>]
[-CimSession <CimSession[]>]
[-ThrottleLimit <Int32>]
[-AsJob]
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
InputObject (cdxml)
Set-IpamBlock
-InputObject <CimInstance[]>
[-NewNetworkId <String>]
[-NewStartIpAddress <IPAddress>]
[-NewEndIpAddress <IPAddress>]
[-Rir <String>]
[-RirReceivedDate <DateTime>]
[-Description <String>]
[-LastAssignedDate <DateTime>]
[-Owner <String>]
[-CimSession <CimSession[]>]
[-ThrottleLimit <Int32>]
[-AsJob]
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
The Set-IpamBlock cmdlet modifies an IP address block in IP Address Management (IPAM). Specify an address block by using the StartIPAddress and EndIPAddress parameters, or use the InputObject parameter to specify the input to this cmdlet.
If you specify the NewStartIPAddress, NewEndIPAddress, or NewNetworkId parameters, the cmdlet resets the utilization trend information for the address block.
Examples
Example 1: Modify the description child IP address ranges
PS C:\> $Parent = Get-IpamBlock -NetworkId "10.0.0.0/8" -StartIPAddress 10.0.0.0 -EndIPAddress 10.255.255.255
PS C:\> Get-IpamBlock -MappingToParentBlock $Parent | Set-IpamBlock -Description "IP Blocks assigned to Site01" -PassThru
Utilization : Under
NetworkId : 10.12.0.0/16
StartAddress : 10.12.0.0
EndAddress : 10.12.255.255
Rir :
LastAssignedDate :
TotalAddresses : 65536
AssignedAddresses : 0
UtilizedAddresses : 0
PercentageUtilized : 0
AddressCategory : Private
Owner :
Description : IP Blocks assigned to Site01
RirReceivedDate :
PercentageAssigned : 0
Utilization : Under
NetworkId : 10.13.0.0/16
StartAddress : 10.13.0.0
EndAddress : 10.13.255.255
Rir :
LastAssignedDate :
TotalAddresses : 65536
AssignedAddresses : 0
UtilizedAddresses : 0
PercentageUtilized : 0
AddressCategory : Private
Owner :
Description : IP Blocks assigned to Site01
RirReceivedDate :
PercentageAssigned : 0
This example modifies the description of all child IP address ranges that belongs to an address block.
The first command gets an IpamBlock object that contains the IP address block from the network that has the ID 10.0.0.0/8. The command stores the IpamBlock object in the $Parent variable.
The second command gets all the child IP address ranges for the address block stored in the $Parent variable. The command passes the child IP address ranges to the Set-IpamBlock cmdlet by using the pipeline operator. The command modifies the description for the child IP address ranges.
The command includes the PassThru parameter, so it displays results to the console.
Example 2: Modify key properties of an address block
PS C:\> Get-IpamBlock -NetworkId "10.11.0.0/16" -StartIPAddress 10.11.0.0 -EndIPAddress 10.11.255.255 | Set-IpamBlock -NewNetworkId 10.13.0.0/16 -NewStartIPAddress 10.13.0.0 -NewEndIpAddress 10.13.255.255
Confirm
Changing the NetworkId, StartIPAddress, EndIPAddress of an IP address block will reset its utilization trend information
Do you want to continue? Y
This command uses the Get-IpamBlock to get the IP address block from the network that has the ID 10.11.0.0/16. The command specifies the start and end address of the address block. The command passes the address block to the Set-IpamBlock cmdlet by using the pipeline operator. The Set-IpamBlock cmdlet specifies new values for the network ID, start address and end address for the address block. Because the command modifies the network ID, start address, and end address of the address block, the command resets the utilization trend of the address block.
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.
Parameter properties
Type: | SwitchParameter |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | 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.
Parameter properties
Type: | CimSession[] |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Aliases: | Session |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Confirm
Prompts you for confirmation before running the cmdlet.
Parameter properties
Type: | SwitchParameter |
Default value: | False |
Supports wildcards: | False |
DontShow: | False |
Aliases: | cf |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Description
Specifies a description for the address block.
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-EndIPAddress
Specifies the end address of the IP address block. If you specify this parameter, you must specify the StartIPAddress parameter.
Parameter properties
Type: | IPAddress[] |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
ByKeySet
Position: | 3 |
Mandatory: | True |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-InputObject
Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this cmdlet.
Parameter properties
Type: | CimInstance[] |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
InputObject (cdxml)
Position: | Named |
Mandatory: | True |
Value from pipeline: | True |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-LastAssignedDate
Specifies the last date, as a DateTime object, on which the block was assigned to devices on a network.
To obtain a DateTime object, use the Get-Date cmdlet.
For more information, type Get-Help Get-Date
.
Parameter properties
Type: | DateTime |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-NetworkId
Specifies the IP network prefix, in Classless Interdomain Routing (CIDR) notation, for the network block that you want modified.
Parameter properties
Type: | String[] |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
ByKeySet
Position: | 1 |
Mandatory: | True |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-NewEndIpAddress
Specifies a new value for the end IP address of the address block. Specify a value that is compatible with the values that you specify for the NewNetworkId and NewStartIPAddress parameters.
Parameter properties
Type: | IPAddress |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-NewNetworkId
Specifies an IP network prefix, in Classless Interdomain Routing (CIDR) notation. This is the new value for the network from which the IP address block is added to IPAM.
Specify a value that is compatible with the values that you specify for the NewStartIPAddress and NewEndIPAddress parameters.
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-NewStartIpAddress
Specifies a new value for the start IP address of the address block. Specify a value that is compatible with the values that you specify for the NewNetworkId and NewEndIPAddress parameters.
Parameter properties
Type: | IPAddress |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-Owner
Specifies the owner of the IP address block.
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-PassThru
Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.
Parameter properties
Type: | SwitchParameter |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Rir
Specifies the regional internet registry (RIR) for public addresses. RIR is a built-in custom field in the IPAM server that contains the following built-in values:
- AFRINIC
- APNIC
- ARIN
- LACNIC
- RIPE
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-RirReceivedDate
Specifies the date, as a DateTime object, when you obtained the public address block from the RIR.
Parameter properties
Type: | DateTime |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-StartIPAddress
Specifies the start address for the IP address block. If you specify this parameter, you must specify the EndIPAddress parameter.
Parameter properties
Type: | IPAddress[] |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
ByKeySet
Position: | 2 |
Mandatory: | True |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | 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.
Parameter properties
Type: | Int32 |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Parameter properties
Type: | SwitchParameter |
Default value: | False |
Supports wildcards: | False |
DontShow: | False |
Aliases: | wi |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Outputs
IpamBlock
This cmdlet returns an object that represents an address block object in IPAM.