top of page
Writer's pictureRadhakrishnan Govindan

DAG Network Subnets Misconfigured Error in Exchange 2016

Came across the below error while configuring Database Availability Group in Exchange 2016.


1

which is clearly shows that there is some issues with Network Adapters configuration of MAPI and Replication networks.

After going though the deep investigation found the issue and got it resolved after doing the few changes in the Replication Network adapters of both the DAG Members.

Open the Properties of the Replication network card. Heartbeat is replication network card name in my test lab

Select IPV4 and go to Properties


go to Advanced


3

under DNS, Uncheck Register this Connection’s Addresses in DNS


4

in Exchange Management Shell, run the below command

Set-DatabaseAvailabilityGroup -Identity DAG -ManualNetworkConfiguration $True


5

Now check the DAG Networks by running the Command

Get-DatabaseAvailabilityGroupNetwork -Identity DAG |fl


6

Basically Networks cards in the DAG members should be configured with below configurations.

  1. The MAPI, or client-facing network interface should be configured with

  2. a default gateway

  3. at least one DNS server

  4. “Register this connection’s addresses in DNS” enabled

  5. The replication network interfaces, if there are any, should be configured with:

  6. no default gateway

  7. no DNS servers

  8. “Register this connection’s address in DNS” disabled

  9. static routes if the network will span multiple IP subnets

51 views0 comments
bottom of page