Skip to main content
Version: Next

Task 09: Disable Unused Network Adapters

Runbook Phase 03 Platform

Status: Active | Estimated Time: 5 minutes | Last Updated: 2026-03-04


Overview

Disable network adapters that are not connected. Only the management adapter needs to remain enabled at this stage. Compute and storage adapters are configured later in Phase 16.

Do not disable the management adapter

Verify which adapter is your active management connection before running. Disabling the wrong adapter requires console access to recover.


Prerequisites

RequirementDetails
Tasks 01–08 completeOS configured, ICMP enabled
Management adapter identifiedKnow which NIC is your active connection

Variables from variables.yml

PathTypeDescription
cluster_nodes[].management_ipstringPSRemoting target IP (orchestrated mode)
cluster.management_nic_namestringAdapter name to preserve (do not disable)

Execution Options

Run on each node individually via console, KVM, or RDP.

Toolkit script: scripts/deploy/04-cluster-deployment/phase-03-os-configuration/task-09-disable-unused-network-adapters/powershell/Disable-UnusedAdapters.ps1

# Task 09 - Disable Unused Network Adapters
# No variables required - targets all adapters with Status = Disconnected

Get-NetAdapter | Format-Table Name, Status, LinkSpeed -AutoSize

Get-NetAdapter | Where-Object { $_.Status -eq "Disconnected" } | Disable-NetAdapter -Confirm:$false

Get-NetAdapter | Format-Table Name, Status, LinkSpeed -AutoSize

Validation

# Confirm no Disconnected adapters remain enabled
Get-NetAdapter | Format-Table Name, Status, LinkSpeed -AutoSize

Expected: Only the management adapter shows Up. All others show Disabled.


Validation Checklist

  • Management adapter remains Up on all nodes
  • All unused adapters show Disabled
  • Nodes still accessible over management network

Troubleshooting

IssueResolution
Lost connectivity after runningRe-enable the adapter from console: Enable-NetAdapter -Name "<name>"
Adapter won't disableCheck for active sessions on that adapter

← Task 08: Enable ICMP · ↑ Phase 03 · Task 10: Configure Hostname →