Skip to main content
Version: Next

Task 02: Enable RDP

Runbook Azure Dell

DOCUMENT CATEGORY: Runbook SCOPE: Remote desktop enablement PURPOSE: Enable RDP on all cluster nodes for graphical remote access from the management server and delivery engineer workstation MASTER REFERENCE: Phase 03: OS Configuration

Status: Active


Overview

Enable Remote Desktop Protocol (RDP) on all Azure Local nodes. This provides graphical remote access for configuration and troubleshooting throughout the deployment engagement.

WinRM is already enabled from Task 01, so this task can be run either directly on each node via iDRAC Virtual Console or remotely from the management server.


Prerequisites

RequirementDescriptionSource
Task 01 CompleteWinRM enabled on all nodesTask 01: Enable WinRM
iDRAC console accessVirtual Console accessible for each node (if using SConfig or Direct tab)variables.yml: nodes.<name>.idrac_ip
Administrator credentialsLocal admin password set during OS installationKey Vault: node-<hostname>-local-admin

Variables from variables.yml

PathTypeDescription
nodes.<name>.management_ipstringNode IP for RDP connection after enabling
cluster_nodes[].hostnamestringNode hostname for connection verification

Execution

Run on each node via iDRAC Virtual Console.

  1. Open https://<idrac-ip>Virtual ConsoleLaunch
  2. Log in as Administrator
  3. Type SConfig and press Enter
  4. Select option 7 — Remote Desktop
  5. Enter E to enable
  6. Select 1 — Allow connections from any version
  7. Verify status shows Enabled
  8. Repeat for every node

Validation Checklist

  • RDP enabled on all nodes
  • RDP port 3389 accessible from management server
  • Can connect via Remote Desktop Client to each node
  • Firewall rules enabled for Remote Desktop group
# Test RDP port from management server
Test-NetConnection -ComputerName <node-ip> -Port 3389
# Expected: TcpTestSucceeded : True

Troubleshooting

IssueCauseResolution
Connection refused on port 3389RDP not enabledRe-run enable script on the node
Port blockedFirewall rule not enabledEnable-NetFirewallRule -DisplayGroup "Remote Desktop" on the node
Authentication failureWrong credentialsVerify local Administrator password from Key Vault

Task 01: Enable WinRM↑ Phase 03: OS ConfigurationTask 03: Configure Static IP →

Version Control

VersionDateAuthorChanges
1.02026-01-31Azure Local Cloud Azure Local CloudnologyInitial document
2.02026-03-04Azure Local Cloud Azure Local CloudnologyFull rewrite to standards — complete frontmatter, 4-tab structure, orchestrated reads variables.yml, standalone with config region, Navigation and Version Control