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

Updating a host record via powershell

New Member
Posts: 3
4839     0

I am trying to update a host record IPv4 address with script.

The script returns error.  Invoke-RestMethod : Unable to connect to the remote server.

 

 

$Body = @{
    "@type" = "login"
    "username" = "crailey@xx.org"
    "password" = "pass!"
} | ConvertTo-Json
$header = @{
 "Accept"="application/json"
 "connectapitoken"="97fe6ab5b1a640909551e36a071ce9ed"
 "Content-Type"="application/json"
}

Invoke-RestMethod -Uri "10.10.0.2" -Method 'Post' -Body $body -Headers $header | ConvertTo-HTML


Invoke-Command -Computername 'ns3.mlgw.org' -scriptblock {
    $oldobj = get-dnsserverresourcerecord -name "10.5.6.56" -zonename "ad.xx.org" -rrtype "A"
    $newobj = get-dnsserverresourcerecord  -name "10.1.2.156" -zonename "ad.xx.org" -rrtype "A"
    $updateip = "10.1.2.0"
    $newobj.recorddata.ipv4address=[System.Net.IPAddress]:Smiley Tonguearse($updateip)
Set-dnsserverresourcerecord -newinputobject $newobj -oldinputobject $oldobj -zonename "ad.mlgw.org" - passthru
   
}

 

Does my code look correct to update host x ip with a new ip.  

Re: Updating a host record via powershell

Moderator
Moderator
Posts: 289
4839     0

The address is stored in the host address record, not in the host record.  You will first need to locate the host address record, and update the address there.

 

Also the URI should be a REST endpoint, not just an IP address.  for example 'https://10.10.0.2/wapi/v2.4/request'

 

 

Showing results for 
Search instead for 
Did you mean: 

Recommended for You