オンプレミスの Active Directory Domain Services (AD DS) ドメインが Azure Active Directory (Azure AD) テナントと同期しており、オンプレミス ネットワークはサイト間 VPN を使用して Azure に接続されています。DNS ゾーンは、次の表のとおりです。 fabrikam.com の名前がオンプレミスネットワークから解決できることを確認する必要があります。どの 2 つのアクションを実行する必要がありますか? 正解はソリューションの一部を示します。注: 正解は 1 点です。
正解:A,E
In hybrid name-resolution designs covered in Administering Windows Server Hybrid Core Infrastructure, Azure Private DNS does not support zone transfers and therefore you cannot host it on, or pull it into, on- premises DNS by using stub or secondary zones. The guidance states that when on-premises clients must resolve names that live in an Azure Private DNS zone, the recommended pattern is to place a DNS forwarder in Azure (typically a Windows Server VM running the DNS role) that can directly query the Azure resolver from inside the virtual network. Then, on-premises Windows DNS servers are configured with a conditional forwarder that forwards queries for the private zone's suffix to the Azure DNS forwarder over the VPN/ExpressRoute connection. This achieves the following: * Keeps the authoritative zone in Azure Private DNS while making it reachable from on-premises. * Avoids unsupported mechanisms (no AXFR/IXFR available from Azure Private DNS, so stub and secondary zones won't work). * Uses least privilege and minimal change on both sides: add a DNS VM in Azure (E) and create a conditional forwarder on DC1 for fabrikam.com pointing to that VM's private IP (A). Options B and C require zone transfers, which are not available from Azure Private DNS, and D (changing VNet DNS servers) affects Azure VMs' resolver settings but does not enable on-premises resolution of the Azure-hosted private zone.