Hi,
Welcome to Microsoft Q&A community!
Steps to Achieve Your Goals:
- Configure the DAG to Ignore the Backup NIC:
To ensure the DAG ignores the backup NIC while keeping automatic network configuration, you can follow these steps:
- Uncheck DNS Registration: As you’ve already done, uncheck the “Register this connection’s addresses in DNS” checkbox for the backup NIC.
- Disable Replication on Backup NIC: Ensure that the backup NIC is not used for replication. You can do this by setting the replication property to
False
for the backup NIC.
Here’s a PowerShell command to disable replication on the backup NIC:
Set-DatabaseAvailabilityGroupNetwork -Identity EXNEWDAG\BackupNetwork -ReplicationEnabled $false
- Resolve the “Misconfigured” State for the MapiDagNetwork:
To resolve the “Misconfigured” state for the MapiDagNetwork, follow these steps:
- Verify Subnets: Ensure that the subnets for the MapiDagNetwork are correctly configured and do not overlap with other networks.
- Check Network Interfaces: Make sure that the network interfaces associated with the MapiDagNetwork are correctly configured.
You can use the following PowerShell command to check the configuration of the MapiDagNetwork:
Get-DatabaseAvailabilityGroupNetwork -Identity EXNEWDAG\MapiDagNetwork | Format-List
If you need to adjust the subnets or network interfaces, you can use the Set-DatabaseAvailabilityGroupNetwork
cmdlet. For example:
Set-DatabaseAvailabilityGroupNetwork -Identity EXNEWDAG\MapiDagNetwork -Subnets 192.168.1.0/24