Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
WAPI global search for the shortened IPv6 addresses
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2019 02:46 AM
2218     0
I'm trying to search for IPv6 shortened addresses using Infoblox WAPI (Perl REST client).
If I enter the full address: 4a0b:2900:115e:82d:16:0:52:1 search is successful. But in the shortened format: 4a0b:2900:115e:82d:16::52:1 not:
my $string = '4a0b:2900:115e:82d:16::52:1';
my $params = $rest->buildQuery( 'search_string:~' => $string );
$rest->GET( "/search".$params , $headers01 );