This tool checks an IP address is Azure public ip address, and which service is using.
To build this tool, you need .NET sdk, you can download from here. The specific version is written in global.json file.
To run this tool, you need active Azure subscription. If you don't have any subscripton, you can use free trial.
Move to project root directory, run with your subscription id.
The parameter subscriptionid
can be specified in appsettings.json
file.
If you don't have any cached credential when required, login your own credential which can access the Azure subscription specified.
$ dotnet run --subscriptionid "your-subscription-guid-goes-here"
This tool use DefaultAzureCredential class for authorization to access your Azure subscription. Check the detail of DefaultAzureCredential behavior in this Document.
If successfully authenticated and call Service Tags REST api,
the file named servicetags.json
is written in current directory.
This file contains all Azure ServiceTag definition, and used in followoing operation.
Run with ip
parameter, which you want to check.
This operation doesn't need authorization , but servicetags.json
file.
$ dotnet run --ip 20.38.116.38
20.38.116.38 is in 20.38.116.0/23 (AzureCloud)
20.38.116.38 is in 20.38.116.0/23 (AzureCloud.japaneast)
20.38.116.38 is in 20.38.96.0/19 (Storage)
20.38.116.38 is in 20.38.116.0/23 (Storage.JapanEast)
This ip address is Azure Storqage Account in JapanEast region.
Publish executable file.
$ dotnet publish --runtime osx-x64 --output ./publish/osx-x64 \
-p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true
Then run this tool like below and check the output file servicetags.json
exists.
$ cd ./publish/osx-x64
$ ./find-azure-service-tag --subscriptionid "your-subscription-guid-goes-here"
Check the ip address you are interested in.
$ ./find-azure-service-tag --ip 40.79.192.5
40.79.192.5 is in 40.79.192.0/21 (AzureCloud)
40.79.192.5 is in 40.79.192.0/21 (AzureCloud.japaneast)
40.79.192.5 is in 40.79.192.0/27 (Sql)
40.79.192.5 is in 40.79.192.0/27 (Sql.JapanEast)
This ip address is Azure SQL Database in JapanEast region.
Publish executable file.
> dotnet publish --runtime win-x64 --output ./publish/win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
Then run this tool like below and check the output file servicetags.json
exists.
$ cd .\publish\win-x64
$ .\find-azure-service-tag.exe --subscriptionid "your-subscription-guid-goes-here"
Check the ip address you are interested in.
> .\find-azure-service-tag.exe --ip 13.66.146.12
13.66.146.12 is in 13.66.128.0/17 (AzureCloud)
13.66.146.12 is in 13.66.128.0/17 (AzureCloud.westus2)
13.66.146.12 is in 13.66.146.0/24 (AzureContainerRegistry)
13.66.146.12 is in 13.66.146.0/24 (AzureContainerRegistry.WestUS2)
This ip address is Azure Container Registry in West US 2 region.