📌 Overview

This project covers deploying a Cisco UCS C220 M3 server as the core host for an ongoing home lab environment — from bare-metal remote management setup through storage layout, hypervisor installation, and network integration with an existing FortiGate/FortiSwitch environment.

Environment:

  • Cisco UCS C220 M3 rack server
  • CIMC (Cisco Integrated Management Controller) for remote/out-of-band management
  • Proxmox VE as the hypervisor
  • FortiGate + FortiSwitch (FortiLink) for network integration

🔧 Objectives

  • Configure CIMC for remote management of the physical host
  • Design and build a tiered storage layout across available drive bays
  • Install and configure Proxmox VE as the hypervisor
  • Integrate the host into the existing VLAN trunk architecture via FortiLink

🖥️ CIMC Configuration

The first step was configuring the Cisco Integrated Management Controller (CIMC), which provides out-of-band remote access to the server — power control, virtual KVM, and hardware health monitoring — independent of the host OS. This is what makes it possible to manage the server (including reinstalling the OS or troubleshooting boot issues) without needing physical access.

🗄️ Storage Layout

With 8 available drive bays, storage was laid out in three tiers based on workload:

  • RAID 1 (2x smaller HDD) — OS/boot volume
  • RAID 10 (4x SSD) — active VM storage, prioritizing IOPS and rebuild resilience for latency-sensitive workloads
  • RAID 1 (2x HDD) — cold storage and backups

🌐 Network Integration

The UCS host was integrated into the existing lab network using a VLAN trunk architecture through FortiSwitch (FortiLink), keeping the host's network configuration consistent with the rest of the lab environment rather than treating it as an isolated island. This allowed VMs running on the host to participate in the same VLAN segmentation as the rest of the lab.

💽 Hypervisor Installation

Proxmox VE was installed on top of the configured storage layout, chosen for its flexibility with nested virtualization and its ability to run mixed Windows/Linux workloads side by side — a requirement for later projects like the Failover Cluster Lab, which needed both Windows Server VMs and a Linux-based iSCSI target running on the same host.

📈 Results

  • CIMC configured and confirmed for reliable remote management
  • Three-tier storage layout deployed across all 8 drive bays
  • Proxmox VE installed and operational as the lab's primary hypervisor
  • Host fully integrated into the existing VLAN trunk architecture with no network isolation issues

📝 Notes / Lessons Learned

  • Configuring out-of-band management (CIMC) first, before anything else, made every later step easier to troubleshoot — never had to worry about losing access to the host
  • Planning storage tiers around actual workload needs (boot vs. active VM storage vs. cold storage) up front avoided having to redesign the layout later
  • Integrating a new host into existing network architecture (rather than isolating it) meant later lab projects didn't require any additional network rework to get started