← HomeLab Blog

Connecting to Integrated Lights Out (iLO), Assigning Static IP, and Installing ProxMox (without Subscription)

Published

Configuring the HP ProLiant DL380 Gen9 through static IP assignment and using the iLO.

Table of Contents

  1. Overview
  2. Step 1: Power On and Connect to iLO
  3. Step 2: Adding ProxMox as the Server OS
  4. Step 3: Updating the ProxMox OS
  5. Glossary
  6. References

Overview

Step 1: Power On and Connect to iLO

Step 2: Adding ProxMox as the Server OS

Step 3: Updating the ProxMox OS

NOTE: I was required to modify the default enterprise url paths (required active subscription) to the non-subscription repository urls.

# /etc/apt/sources.list

# subscription path (default)
https://enterprise.proxmox.com/debian/pve

# non-subscription path
deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription

Glossary

  1. Integrated Lights-Out (iLO): is a separate management subsystem on ProLiant servers. It stays on when the main server is off or booting, as long as the machine has AC power (and typically a small amount of standby power to the iLO). It’s mainly for out-of-band control so you don’t need a keyboard, monitor, and physical access to the box for many tasks.

  2. POST (Power-On Self-Test): is the firmware startup phase right after main power-on and before the OS loads. The System ROM checks and initializes core hardware, then hands off to the configured boot device.

  3. /etc/apt/sources.list: is the primary APT file on Debian-based systems that lists package repositories: where apt should fetch software and which suite or component to use. apt update reads it, together with files under /etc/apt/sources.list.d/, to refresh the local package index, so edits there change which mirrors and tracks your system uses.

References