Infoblox’s global team of threat hunters uncovers a DNS operation with the ability to bypass traditional security measures and control the Great Firewall of China. Read about “Muddling Meerkat” and the many other threat actors discovered by Infoblox Threat Intel here.

API Examples

Reply

Member object is empty

New Member
Posts: 1
1920     0

I know I'm missing something.

 

I'm trying to get node_info from grid members via WAPI, but I'm stuck with an empty list of members.  My credentials for the API are valid, and I can get various top-level info like grid, and even "member:dns", but calling https://grid_master/wapi/v2.11.2/member just keeps giving me an empty set.  What could I be missing?

Re: Member object is empty

Superuser
Posts: 115
1920     0

Try this

 

https://grid_master/wapi/v2.7/member

 

If that fails are you an admin, or have some restrictions?

Follow me on LinkedIn: https://www.linkedin.com/in/sifbaksh
Twitter: https://twitter.com/sifbaksh

https://sifbaksh.com

Re: Member object is empty

Techie
Posts: 7
1920     0

Just encourtered this myself. This would be due to changes made from NIOS 8.5.2 and onwards:

https://docs.infoblox.com/space/NAIG/37650793

The default password must be changed before using WAPI or even logging into the GUI. If provisioning in AWS this can be done with user-data:

default_admin_password

Notice behaviour before changing the default password (at least CURL gives a hint at what is wrong):

curl -k -u admin:infoblox -X GET "https://appliance-ip/wapi/v2.12/member"                   

*************************************
* Default password is not allowed   *
* Please reset the password from UI *
*************************************

Compared with after:

curl -k -u admin:Infoblox1! -X GET "https://appliance-ip/wapi/v2.12/member"                   

[
    {
        "_ref": "member/b25lLnZpcnR1YWxfbm9kZSQw:infoblox.localdomain",
        "config_addr_type": "IPV4",
        "host_name": "infoblox.localdomain",
        "platform": "VNIOS",
        "service_type_configuration": "ALL_V4"
    }
]%
Showing results for 
Search instead for 
Did you mean: 

Recommended for You