Hi Lucas,
The PowerShell output confirms the Failover Clustering feature is now successfully installed on PWGIRSQL2. You are past the installation hang!
Regarding your question about the network error, i__t is NOT irrelevant.__ While the cluster might "work" temporarily over just the primary network, ignoring this error breaks your High Availability. If your main network (Ethernet0) experiences a hiccup, PWGIRSQL2 will instantly disconnect from the cluster because it has no backup path.
In your screenshot, Ethernet1 is listed as "Unidentified network".
When a network adapter has no Default Gateway (which is correct for a Backup/Heartbeat network), Windows cannot identify the network. Windows automatically assigns "Unidentified" networks to the Public Firewall Profile. Consequently, the Public Firewall Profile blocks UDP 3343 (Cluster Heartbeat). This is why you see Event 1127, the cluster is trying to talk on that backup line, but the Windows Firewall is silently dropping the packets.
To fix (Do this immediately on PWGIRSQL2), you need to force Windows to treat that "Unidentified" network as Private so the firewall opens the ports.
Open PowerShell as Administrator on PWGIRSQL2 and run this command:
Set-NetConnectionProfile -InterfaceAlias "Ethernet1" -NetworkCategory Private
Verification:
Run Get-NetConnectionProfile. You should see Ethernet1 listed as Private instead of Public.
Go back to Failover Cluster Manager on Node 1. The error regarding Cluster Network 2 should clear up within a minute, and the interface status should turn Up.
Once that interface is green, your node has full redundancy. You are almost at the finish line!
VP