0

I have a few Availability Groups and would really like to have their Listener IP Addresses register reverse DNS, is there a setting I missed to enable this? (forward dns works as expected).

SQL Server 2016, Microsoft Server Std. 2016

Jacob Evans
  • 7,636
  • 3
  • 25
  • 55

1 Answers1

2

Launch Windows Failover Cluster Manager.

Under Roles, right click on the entry under "Server Name" in the bottom pane. Select Properties. On the General Tab, check the "Publish PTR Records" checkbox. (Sorry for the crappy screenshot)

Edit: Powershell

Get-ClusterResource | where-object {$_.ResourceType.name -eq "Network Name"} | Set-ClusterParameter -Name PublishPTRRecords -Value 1

Screenshot

Jacob Evans
  • 7,636
  • 3
  • 25
  • 55
Chris Satola
  • 332
  • 2
  • 6