User Profile
raydev1
Copper Contributor
Joined Jul 23, 2020
User Widgets
Recent Discussions
Re: Is there a better way to search by IP address in the portal? Both Public & Private?
Russell Hackworth I just spotted this post and just joined here. I used this script to get all the public ip's associated with IaaS resources or Appliances in Azure. (It does not dump PaaS resources though so keep that in mind. What i mean is that if you allow a public ip range in one of your PaaS services, this script will not capture that information. I hope you find this useful: Connect-AzAccount Set-AzContext -Subscriptionid (Put your id here) # This gets all the public IP's and displays it on the screen: Get-AzPublicIpAddress | select name,ipaddress # To pipe this out to a file. You can specify any folder you can access: Get-AzPublicIpAddress | select name,ipaddress | export-csv c:\temp\azurepublicip.csv In CLI, this command works, but it's ugly: az network public-ip list [--resource-group] [--subscription]144KViews1like3Comments
Recent Blog Articles
No content to show