- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
How to get the IP addresses filtered by no name in WAPI?
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2021 09:11 PM - edited 08-01-2021 10:28 PM
Hi, I wonder if it's possible in WAPI to retrieve IP address list having blank names using powershell script? Thanks.
Solved! Go to Solution.
Re: How to get the IP addresses filtered by no name in WAPI?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2021 07:04 AM
Hi,
Are these IP addresses used or not used?
Here is how you can get the IP addresses that are unused.
curl -k -u admin:pwd -X GET "https://grid-master/wapi/v2.11/ipv4address?network=10.10.10.0/24&status=UNUSED&_return_as_object=1"
Here is the API call using powershell:
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("Authorization", "Basic base64encoding") $response = Invoke-RestMethod 'https://grid-master.demo.com/wapi/v2.10/ipv4address?status=UNUSED&network=172.0.0.0/24&names=' -Method 'GET' -Headers $headers $response | ConvertTo-Json
You can find more examples here.
Thanks and Regards,
Krishna Vasudevan
Re: How to get the IP addresses filtered by no name in WAPI?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2021 01:44 AM
Thanks @kvasudevan . We need to get the used IPs with no names. Your samples are helpful. I've just changed the status to USED. Thanks a lot!
Re: How to get the IP addresses filtered by no name in WAPI?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2021 11:54 PM
When you have multiple APIs, a proper name helps to manage it. ... To run the sample public client which does not require api keys run the command ...You can find here more details.