Warning "The domain network is not the first bound network..." durante o Setup do SQL Server 2008

image 

Se durante a instalação do SQL Server 2008 em Failover Cluster você receber o Warning "The domain network is not the first bound network. This will cause domain operations to run slowly and can cause timeouts that result in failures. Use the Windows network advanced configuration to change the binding order" e a configuração de Binding estiver correta, conforme abaixo:

image

Tente resolver através KB955963 - https://support.microsoft.com/kb/955963.

Em alguns casos o procedimento descrito no KB não resolve e é necessário fazer o ajuste manual da ordem de Binding no Registry, para isso siga os passos abaixo:

IMPORTANTE: Execute os passos abaixo em todos os nós do Cluster

1) Obtenha as informações das placas de rede e seu respectivo GUID atráves do comando:
"wmic nicconfig get description, SettingID > C:\nicconfig.txt" (Thanks Meera Sinhasane for this command line)
O resultado esperado é o seguinte (varia conforme cada ambiente)

Description SettingID                              
WAN Miniport (SSTP)                                  {54AB7E97-2074-413D-A578-2119CD23ECB6} 
WAN Miniport (L2TP)                                   {C0B9FD38-A0E8-47CA-BF02-5B6D2B663BF7} 
WAN Miniport (PPTP)                                   {1D230E0E-4E65-42C2-9859-9B80E1A4E0C5} 
WAN Miniport (PPPOE)                                 {E7F554D4-E231-4291-B40E-2031D3F1E55E} 
WAN Miniport (IPv6)                                    {A91F2521-CF79-4F98-9E02-6A516B9D496C} 
WAN Miniport (Network Monitor)                  {2131BB57-8C69-4EAE-B5E3-24E4035AB71D} 
Intel(R) PRO/1000 MT Desktop Adapter         {4AEB948E-4177-4361-98AC-F8635556BB87} 
Microsoft ISATAP Adapter                            {70FA8B09-59FA-4446-A954-3E9A51C28955} 
WAN Miniport (IP)                                       {7F583D1B-4203-4AD0-A6A0-4BD007D21735} 
Intel(R) PRO/1000 MT Desktop Adapter #2     {4F674EBB-1C74-4078-97F7-B3873B08BD2A} 
Microsoft Failover Cluster Virtual Adapter       {BD070176-0F7B-479F-ADE5-7EEA6E21EF2F} 
RAS Async Adapter                                       {7C264673-3322-4312-AE60-D09B4E71E368} 
Microsoft ISATAP Adapter                             {A5531556-3704-4A05-B6C5-92C4A5485358} 
Microsoft ISATAP Adapter                             {734228C5-5A18-4DB1-BD6B-388971440D4C} 

2) Abra o Regedit no caminho HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Tcpip\Linkage e dê um duplo clique no valor Bind. Deverá aparecer o seguinte conteúdo.

\Device\{BD070176-0F7B-479F-ADE5-7EEA6E21EF2F}
\Device\{4AEB948E-4177-4361-98AC-F8635556BB87}
\Device\{4F674EBB-1C74-4078-97F7-B3873B08BD2A}

3) Veja que a ordem de Binding conforme o registry (local onde o setup do SQL Server verifica a ordem) é a seguinte:

Microsoft Failover Cluster Virtual Adapter  {BD070176-0F7B-479F-ADE5-7EEA6E21EF2F} 
Intel(R) PRO/1000 MT Desktop Adapter        {4AEB948E-4177-4361-98AC-F8635556BB87} 
Intel(R) PRO/1000 MT Desktop Adapter #2     {4F674EBB-1C74-4078-97F7-B3873B08BD2A} 

4) Conforme o Warning reporta, a placa de rede Domain (no meu caso Intel(R) PRO/1000 MT Desktop Adapter {4AEB948E-4177-4361-98AC-F8635556BB87}) não está no topo da lista de Binding. Edite diretamente no Registry e altere a ordem tornando ela a primeira da lista, conforme abaixo.

\Device\{4AEB948E-4177-4361-98AC-F8635556BB87}
\Device\{BD070176-0F7B-479F-ADE5-7EEA6E21EF2F}
\Device\{4F674EBB-1C74-4078-97F7-B3873B08BD2A}

5) Rode novamente o Setup do SQL Server