0X000013C8

Cluster Network Already Offline (0X000013C8) – What Actually Works

This error means you tried to take a cluster network offline that's already down. Usually happens after a failed failover or when the network was manually yanked.

When This Error Pops Up

You're staring at a PowerShell console or Failover Cluster Manager, trying to bring a cluster network online. Maybe a storage network or a heartbeat VLAN. You run Start-ClusterNetwork or right-click and hit 'Bring Online'. Instead of working, you get the error: ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE (0X000013C8).

I see this most often after someone manually disables a network adapter on a cluster node—thinking they're doing maintenance—then tries to bring it back. Or when a failover event left the network in a weird state. Had a client last month whose entire print queue died because their IT guy disabled the wrong NIC during a patch cycle.

Root Cause

The cluster thinks the network is offline. It's not lying—the network is offline. But the state machine inside the Cluster Service is stuck. You're telling it 'start', but it already shows as stopped. The cluster's logic says 'I can't start something that's already stopped', even though you know it should just flip the switch.

This isn't a corruption issue. It's a state mismatch. The cluster's view of the network status doesn't match what the physical adapters are doing. Happens when you disconnect a cable or disable a NIC without going through the cluster's proper offline sequence.

The Fix (4 Steps, No Reboot)

  1. Check the network's current state – Open PowerShell as Admin on any cluster node. Run:
    Get-ClusterNetwork | Format-Table Name, State
    Find your network. It'll show 'Offline'. Now check the physical adapters on each node:
    Get-NetAdapter | Where-Object {$_.Name -like "*Cluster*"} | Format-Table Name, Status
  2. Force the network state to 'Down' – The cluster needs to see the network as 'Down' before it can bring it 'Online'. If it's stuck in 'Offline', reset the cluster's internal state by setting the network role to 'None' and back:
    Get-ClusterNetwork "YourNetworkName" | Set-ClusterNetwork -Role None
    Start-Sleep -Seconds 2
    Get-ClusterNetwork "YourNetworkName" | Set-ClusterNetwork -Role ClusterNetwork
    Replace 'YourNetworkName' with the actual name from step 1.
  3. Bring the network online – Now run:
    Get-ClusterNetwork "YourNetworkName" | Start-ClusterNetwork
    Check the state again – it should show 'Online'. If it still says 'Offline', you missed a node. Run Get-ClusterNetwork -Cluster "YourClusterName" | Format-Table Name, State to confirm all nodes see it online.
  4. Verify cluster network dependencies – Some cluster resources (like File Server or SQL Server) depend on this network. Restart any dependent resources if they're stuck offline:
    Get-ClusterGroup | Get-ClusterResource | Where-Object {$_.OwnerNode -ne $null} | Restart-ClusterResource
    I'd skip this unless you see errors. Usually the network coming online fixes everything.

If It Still Fails

Two things:

  • Check the event logs – Look under Applications and Services Logs > Microsoft > Windows > FailoverClustering > Operational. You'll see event IDs 1560 or 1564. They'll tell you exactly which node has the adapter dead.
  • Reboot the node that's holding the network offline – Not the whole cluster, just one node. Use Suspend-ClusterNode first, reboot, then Resume-ClusterNode. I've had to do this maybe 3 times in 10 years. Only when the cluster's internal state got truly hosed.

If you're still stuck, the network adapter might be physically dead. Swap cables, test on a different switch port. But honestly? 95% of the time the role reset in step 2 fixes it.

Related Errors in Network & Connectivity
0X00000315 Fix ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR (0x315) VPN Client Stuck on 'Connecting' – Fix It Now 0XC0000208 Fix STATUS_INVALID_ADDRESS_WILDCARD (0xC0000208) Fast 0X000006FD Fix 0X000006FD: Trust Relationship Failure in Under 5 Minutes

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.