Powershell snippet to check for a free IP in Azure Virtual Network
# Get your Azure access token via:
# az account get-access-token --query 'accessToken' -o tsv
# Replace YOURTOKEN with your actual Azure access token
$headers = @{
"Authorization" = "Bearer TOKENHERE"
"Content-Type" = "application/json"
}
# Replace the placeholders with your info
$subscriptionId = "SUBID"
$resourceGroupName = "RGNAME"
$virtualNetworkName = "VNETNAME"
$ipAddressToCheck = "10.1.0.4"
$apiVersion = "2024-05-01"
# Construct the URI for the REST API call
$uri = "https://management.azure.com/subscriptions/$subscriptionId/resourceGroups/$resourceGroupName/providers/Microsoft.Network/virtualNetworks/$virtualNetworkName/CheckIPAddressAvailability?ipAddress=$ipAddressToCheck&api-version=$apiVersion"
# Make the REST API call
$response = Invoke-RestMethod -Uri $uri -Method Get -Headers $headers
# Output the response
$response
# Process the response to display IP availability and suggested available IPs
if ($response.available -eq $true) {
Write-Host "The IP address $ipAddressToCheck is available."
} else {
Write-Host "The IP address $ipAddressToCheck is NOT available."
Write-Host "Suggested available IP addresses:"
$response.availableIPAddresses | ForEach-Object { Write-Host $_ }
}
Powershell cmdlet version
$resourceGroupName = "RGNAME"
$vnetName = "VNETNAME"
$ipAddressToTest = "10.1.0.5"
$vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $resourceGroupName
$result = Test-AzPrivateIPAddressAvailability -VirtualNetwork $vnet -IPAddress $ipAddressToTest
if ($result.Available) {
Write-Host "The IP address $ipAddressToTest is available in the virtual network $vnetName." -ForegroundColor Green
} else {
Write-Host "The IP address $ipAddressToTest is not available in the virtual network $vnetName." -ForegroundColor Red
Write-Host "Available IP addresses in the subnet:" -ForegroundColor Yellow
$result.AvailableIPAddresses | ForEach-Object { Write-Host $_ }
}