This situation looks alarming, but it is recoverable. You are seeing a classic Cluster Partition event because you severed the communication link on PWGIRSQL3.
By disconnecting the network adapter on PWGIRSQL3 via vCenter, you created a split-brain scenario for that specific network path. It mean you killed the physical link for Cluster Network 2 on Node 3.
=> The cluster service on Node 1 and Node 2 immediately saw Node 3 vanish from that network.
Because Cluster Network 2 was already unstable/failed on Node 2 (due to the firewall issue we discussed), removing Node 3's link caused the entire network resource (Cluster Network 2) to collapse into a Partitioned state. The cluster now believes no one can talk to anyone reliably on that backup network.
This is how to recover:
Step 1: Reconnect the NIC immediately: Go back to vCenter for PWGIRSQL3 and check the box "Connected" (Conectado) for Adaptador de red 2. This will restore the physical link.
Step 2: Fix the Firewall on ALL Nodes (The Root Cause): The reason the error persisted initially, and why the network is so fragile, is that Set-NetConnectionProfile likely needs to be run on ALL nodes, not just Node 2. Your screenshots show that even Node 1 has Ethernet1 as "Unidentified network".
You must ensure that UDP 3343 is open on this network for every single server. Please run this command on PWGIRSQL1, PWGIRSQL2, AND PWGIRSQL3:
Set-NetConnectionProfile -InterfaceAlias "Ethernet1" -NetworkCategory Private
Step 3: Force a Cluster Refresh: After reconnecting the NIC and running the command on all three nodes:
Go to Failover Cluster Manager on Node 1.
Right-click Cluster Networks.
This usually refreshes automatically, but if it stays "Partitioned," you may need to restart the Cluster Service on the passive node (PWGIRSQL3) to force it to re-handshake.
Once Cluster Network 2 returns to Up, your redundancy is restored.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer then. Should you have more questions, feel free to leave a message. Have a nice day!
VP