https://<mgmt-ip>:8006.sed -i 's/enterprise/no-subscription/' /etc/apt/sources.list.d/pve-enterprise.list echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription" \ > /etc/apt/sources.list.d/pve-no-sub.list apt update && apt full-upgrade -y reboot
apt install -y open-iscsi multipath-tools firmware-linux-free firmware-linux-nonfree systemctl enable --now open-iscsi ip a lspci | grep -i ethernet # target NICs: ens2f0 (→ Ctrl B .51) and ens3f1 (→ Ctrl A .50)
| Interface | IP | Route To | Purpose |
|---|---|---|---|
| ens2f0 | 192.168.1.40/24 | → MSA Ctrl B (.51) | iSCSI Path 1 |
| ens3f1 | 192.168.1.41/24 | → MSA Ctrl A (.50) | iSCSI Path 2 |
| MSA Ctrl A | 192.168.1.50 | — | Primary Controller |
| MSA Ctrl B | 192.168.1.51 | — | Secondary Controller |
auto ens2f0
iface ens2f0 inet static
address 192.168.1.40/24
post-up ip route replace 192.168.1.51/32 dev ens2f0 src 192.168.1.40
post-up sysctl -w net.ipv4.conf.ens2f0.rp_filter=2
auto ens3f1
iface ens3f1 inet static
address 192.168.1.41/24
post-up ip route replace 192.168.1.50/32 dev ens3f1 src 192.168.1.41
post-up sysctl -w net.ipv4.conf.ens3f1.rp_filter=2
ping 192.168.1.50 # → should reply ping 192.168.1.51 # → should reply ip route get 192.168.1.50 # → must show ens3f1 ip route get 192.168.1.51 # → must show ens2f0
cat /etc/iscsi/initiatorname.iscsi # copy this value into MSA host entry verbatim
iscsiadm -m discovery -t sendtargets -p 192.168.1.50 iscsiadm -m discovery -t sendtargets -p 192.168.1.51 # both should return the MSA IQN iscsiadm -m node --login dmesg | tail # look for new scsi device lsblk # new /dev/sdX should appear fdisk -l # confirm 2TB size
vg_iscsi volume group, then wire it into the Proxmox GUI as the devlab storage target. Future expansion is non-destructive: extend the LUN on the MSA and resize LVM in place.pvcreate /dev/sdX vgcreate vg_iscsi /dev/sdX vgs && pvs # should show ~2TB free in vg_iscsi
devlab, volume group to vg_iscsi, enable for disk images and containers. Save — devlab is now live and backed by the MSA 2050.