Update deployments/platforms/virtualization/proxmox/Fixing iSCSI Connections that Drop at Reboot.md
Automatic Documentation Deployment / Sync Docs to https://kb.bunny-lab.io (push) Successful in 6s

This commit is contained in:
2026-06-11 21:44:16 -06:00
parent 8147523962
commit 34b0251be2
@@ -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