Files
proxmox/docs/02-architecture/PROXMOX_HOSTS_COMPLETE_HARDWARE_CONFIG.md
defiQUG bea1903ac9
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
Sync all local changes: docs, config, scripts, submodule refs, verification evidence
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-21 15:46:06 -08:00

5.1 KiB
Raw Permalink Blame History

Proxmox Hosts — Complete Hardware Configuration

Last Updated: 2026-02-13
Document Version: 1.0
Status: Active Documentation
Source: Live query from hosts via lspci, ethtool, ip link


Overview

Complete hardware specifications for the three Proxmox VE hosts, including CPU, memory, storage, and all NIC models with interface mapping and link status.


ml110 (192.168.11.10)

Component Specification
Manufacturer HP
Model ProLiant ML110 Gen9
Proxmox 9.1.0, kernel 6.17.4-1-pve
CPU Intel Xeon E5-2603 v3 @ 1.60 GHz
Cores 6 (1 socket × 6 cores)
RAM 125 GiB
Storage 2× ST1000DM003-1ER162 (931.5 GB 7.2k HDD each)
Storage layout LVM-thin (data, local-lvm) + local dir
Network vmbr0 bridge

NICs (ml110)

Interface PCI device Model Speed Link MAC Notes
nic0 02:00.0 Broadcom NetXtreme BCM5717 Gigabit Ethernet PCIe [14e4:1665] 1000 Mb/s yes 1c:98:ec:52:43:c8 UP, in vmbr0
nic1 02:00.1 Broadcom NetXtreme BCM5717 Gigabit Ethernet PCIe [14e4:1665] no 1c:98:ec:52:43:c9 DOWN
vmbr0 bridge 1c:98:ec:52:43:c8 Bridge (uses nic0)

NIC summary: 2× Broadcom BCM5717 1GbE; nic0 active, nic1 standby/unused.


r630-01 (192.168.11.11)

Component Specification
Manufacturer Dell Inc.
Model PowerEdge R630
Proxmox 9.1.0, kernel 6.17.4-1-pve
CPU Intel Xeon E5-2630 v3 @ 2.40 GHz
Cores 32 (2 sockets × 8 cores)
RAM 503 GiB
Storage 2× HUC109060CSS600 (559 GB enterprise SSD boot) + 6× Crucial CT250MX500SSD1 (233 GB SATA SSD) + DVD-ROM
Storage layout LVM-thin (data, local-lvm, thin1) + local dir
Network vmbr0 bridge

NICs (r630-01)

Interface PCI device Model Speed Link MAC Notes
nic0 01:00.0 Broadcom NetXtreme BCM5720 Gigabit Ethernet PCIe [14e4:165f] 1000 Mb/s yes 20:47:47:7e:37:6c UP, in vmbr0
nic1 01:00.1 Broadcom NetXtreme BCM5720 Gigabit Ethernet PCIe [14e4:165f] no 20:47:47:7e:37:6d DOWN
nic2 02:00.0 Broadcom NetXtreme BCM5720 Gigabit Ethernet PCIe [14e4:165f] no 20:47:47:7e:37:6e DOWN
nic3 02:00.1 Broadcom NetXtreme BCM5720 Gigabit Ethernet PCIe [14e4:165f] no 20:47:47:7e:37:6f DOWN
vmbr0 bridge 20:47:47:7e:37:6c Bridge (uses nic0)

NIC summary: 4× Broadcom BCM5720 1GbE (2× dual-port cards); nic0 active, nic1nic3 unused.


r630-02 (192.168.11.12)

Component Specification
Manufacturer Dell Inc.
Model PowerEdge R630
Proxmox 9.1.0, kernel 6.17.4-1-pve
CPU Intel Xeon E5-2660 v4 @ 2.00 GHz
Cores 56 (2 sockets × 14 cores)
RAM 251 GiB
Storage 8× Crucial CT250MX500SSD1 (233 GB SATA SSD each)
Storage layout LVM-thin (thin1-r630-02, thin2thin6) + local dir
Network vmbr0 bridge (VLAN-aware)

NICs (r630-02)

Interface PCI device Model Speed Link MAC Notes
nic0 01:00.0 Broadcom NetXtreme II BCM57800 1/10 Gigabit Ethernet [14e4:168a] no c8:1f:66:d2:c5:97 DOWN
nic1 01:00.1 Broadcom NetXtreme II BCM57800 1/10 Gigabit Ethernet [14e4:168a] no c8:1f:66:d2:c5:99 DOWN
nic2 01:00.2 Broadcom NetXtreme II BCM57800 1/10 Gigabit Ethernet [14e4:168a] 1000 Mb/s yes c8:1f:66:d2:c5:9b UP, in vmbr0
nic3 01:00.3 Broadcom NetXtreme II BCM57800 1/10 Gigabit Ethernet [14e4:168a] no c8:1f:66:d2:c5:9d DOWN
vmbr0 bridge c8:1f:66:d2:c5:9b Bridge (uses nic2)

NIC summary: 4× Broadcom BCM57800 1/10 GbE (quad-port); nic2 active at 1 Gbps (switch limits; supports 10 Gbps). nic0, nic1, nic3 unused.


NIC Summary by Host

Host NIC models Ports Active Max speed
ml110 Broadcom BCM5717 2 nic0 1 GbE
r630-01 Broadcom BCM5720 4 nic0 1 GbE
r630-02 Broadcom BCM57800 4 nic2 10 GbE (running at 1 GbE)

Verification

To refresh this data, run on each host (or via SSH):

# NIC models
lspci -nn | grep -iE 'ethernet|network'

# Interface mapping and link status
for i in nic0 nic1 nic2 nic3; do
  [ -d /sys/class/net/$i ] && echo "--- $i ---" && ethtool $i 2>/dev/null | grep -E 'Speed|Link detected'
done

References