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 & Integration, DevOps,NetOps,SecOps

Reply

issues adding host record to zone of DNS View

[ Edited ]
New Member
Posts: 1
2236     1

Hello, 

 

I am trying to add a host record to a zone of a DNS view. The DNS view I am working with is named "MS DNS mydev.com". The authoritative zone within the view is named "mydev.com". I thought the PowerShell below would handle this, but I keep getting "400 Bad Request". I've read up on this a bit, I am positive it has something to do with me not understanding the difference between Network View and DNS View as they relate to the view parameter in the request below. The code snippit below returns "The remote server returned an error: (400) Bad Request.". 

 

Thanks for the help!

 

$cred = Get-Credential
$body = @{
    name = 'joey2.mydev.com'
    ipv4addrs = @(
        @{
            ipv4addr = '192.168.200.51'
        }
    )
    view = 'MS DNS mydev.com'
} | ConvertTo-Json


$uri = "https://ipam.blah.com/wapi/v2.7.3/record:host"
Invoke-WebRequest -Uri $uri -Method Post -Credential $cred -UseBasicParsing -Body $body -ContentType 'application/json'

 

Showing results for 
Search instead for 
Did you mean: 

Recommended for You