]> git.proxmox.com Git - pve-docs.git/blame - pve-storage-iscsi.adoc
new file pve-docs-mediawiki-import.in
[pve-docs.git] / pve-storage-iscsi.adoc
CommitLineData
aa039b0f
DM
1http://www.open-iscsi.org/[Open-iSCSI] initiator
2------------------------------------------------
fc3425bd 3include::attributes.txt[]
aa039b0f 4
5f09af76
DM
5ifdef::wiki[]
6:pve-toplevel:
cb84ed18 7:title: Storage: iSCSI
5f09af76
DM
8endif::wiki[]
9
aa039b0f
DM
10Storage pool type: `iscsi`
11
12iSCSI is a widely employed technology used to connect to storage
13servers. Almost all storage vendors support iSCSI. There are also open
14source iSCSI target solutions available,
15e.g. http://www.openmediavault.org/[OpenMediaVault], which is based on
16Debian.
17
8c1189b6 18To use this backend, you need to install the `open-iscsi`
aa039b0f
DM
19package. This is a standard Debian package, but it is not installed by
20default to save resources.
21
22 # apt-get install open-iscsi
23
8c1189b6 24Low-level iscsi management task can be done using the `iscsiadm` tool.
aa039b0f
DM
25
26
27Configuration
28~~~~~~~~~~~~~
29
30The backend supports the common storage properties `content`, `nodes`,
31`disable`, and the following iSCSI specific properties:
32
33portal::
34
35iSCSI portal (IP or DNS name with optional port).
36
37target::
38
39iSCSI target.
40
41
8c1189b6 42.Configuration Example (`/etc/pve/storage.cfg`)
aa039b0f
DM
43----
44iscsi: mynas
45 portal 10.10.10.1
46 target iqn.2006-01.openfiler.com:tsn.dcb5aaaddd
47 content none
48----
49
50TIP: If you want to use LVM on top of iSCSI, it make sense to set
51`content none`. That way it is not possible to create VMs using iSCSI
52LUNs directly.
53
5eba0743 54
aa039b0f
DM
55File naming conventions
56~~~~~~~~~~~~~~~~~~~~~~~
57
58The iSCSI protocol does not define an interface to allocate or delete
59data. Instead, that needs to be done on the target side and is vendor
60specific. The target simply exports them as numbered LUNs. So {pve}
61iSCSI volume names just encodes some information about the LUN as seen
62by the linux kernel.
63
64
65Storage Features
66~~~~~~~~~~~~~~~~
67
68iSCSI is a block level type storage, and provides no management
69interface. So it is usually best to export one big LUN, and setup LVM
70on top of that LUN. You can then use the LVM plugin to manage the
71storage on that iSCSI LUN.
72
73.Storage features for backend `iscsi`
74[width="100%",cols="m,m,3*d",options="header"]
75|==============================================================================
76|Content types |Image formats |Shared |Snapshots |Clones
77|images none |raw |yes |no |no
78|==============================================================================
79
80
81Examples
82~~~~~~~~
83
84Scan a remote iSCSI portal, and returns a list of possible targets:
85
86 pvesm iscsiscan -portal <HOST[:PORT]>
87
deb4673f
DM
88ifdef::wiki[]
89
90See Also
91~~~~~~~~
92
f532afb7 93* link:/wiki/Storage[Storage]
deb4673f
DM
94
95endif::wiki[]
96
aa039b0f 97