From 34b0251be2ef1439332c33bb20449fb3fe5bac6d Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Thu, 11 Jun 2026 21:44:16 -0600 Subject: [PATCH] Update deployments/platforms/virtualization/proxmox/Fixing iSCSI Connections that Drop at Reboot.md --- .../Fixing iSCSI Connections that Drop at Reboot.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/deployments/platforms/virtualization/proxmox/Fixing iSCSI Connections that Drop at Reboot.md b/deployments/platforms/virtualization/proxmox/Fixing iSCSI Connections that Drop at Reboot.md index 5214f83..3fa94f4 100644 --- a/deployments/platforms/virtualization/proxmox/Fixing iSCSI Connections that Drop at Reboot.md +++ b/deployments/platforms/virtualization/proxmox/Fixing iSCSI Connections that Drop at Reboot.md @@ -8,6 +8,11 @@ systemctl enable --now iscsid systemctl enable --now open-iscsi ``` +### Discover Targets (To Create Necessary iSCSI Records) +```sh +iscsiadm -m discovery -t sendtargets -p 192.168.3.3:3260 +``` + ### Configure Automatic iSCSI Target Connection Behavior Run these commands on every ProxmoxVE cluster node: ```sh @@ -32,6 +37,14 @@ You will want to ensure that `node.startup = automatic` and `node.conn[0].startu iscsiadm -m node -o show | grep -E 'node.name|node.conn\[0\].address|node.startup|node.conn\[0\].startup' ``` +### Login/Mount iSCSI Targets +```sh +iscsiadm -m node \ + -T iqn.2026-01.io.bunny-lab:storage:iscsi-cluster-storage \ + -p 192.168.3.3:3260 \ + --login +``` + !!! Success "Example Output" If everything worked correctly, you should see output like the example below: ```sh