We can Modify the Preferred Communication Method for App Agents Hosts. Adreesses can be IPV4, IPV6 and FQDN
In this example we Modify the Address of the AppHost sqlsinglenode.dpslab.home.labbuildr.com First, we read the AppHost Information
$AppHostName="sqlsinglenode.dpslab.home.labbuildr.com"
$AppHost=Get-PPDMhosts -type APP_HOST -filter "{name eq `"$AppHostName`"}"
$AppHost
Now that we have the AppHost, lets view the Valid Addresses available:
$AppHost | Get-PPDMhosts -validaddresses
The AppHost uses its IPV4 Address to communicate. Kest Change that to the FQDN:
$AppHost | Set-ppDMapp_hosts -type FQDN -value sqlsinglenode.dpslab.home.labbuildr.com
AppHost | Get-PPDMhosts -validaddresses