]> git.proxmox.com Git - pve-docs.git/blame_incremental - pve-storage-cifs.adoc
dblatex: update custom style with upstream changes
[pve-docs.git] / pve-storage-cifs.adoc
... / ...
CommitLineData
1[[storage_cifs]]
2CIFS Backend
3-----------
4ifdef::wiki[]
5:pve-toplevel:
6:title: Storage: CIFS
7endif::wiki[]
8
9Storage pool type: `cifs`
10
11The CIFS backend extends the directory backend, so that no manual
12setup of a CIFS mount is needed. Such a storage can be added directly
13through the {pve} API or the web UI, with all our backend advantages,
14like server heartbeat check or comfortable selection of exported
15shares.
16
17Configuration
18~~~~~~~~~~~~~
19
20The backend supports all common storage properties, except the shared
21flag, which is always set. Additionally, the following CIFS special
22properties are available:
23
24server::
25
26Server IP or DNS name. Required.
27
28TIP: To avoid DNS lookup delays, it is usually preferable to use an IP
29address instead of a DNS name - unless you have a very reliable DNS
30server, or list the server in the local `/etc/hosts` file.
31
32share::
33
34CIFS share to use (get available ones with `pvesm scan cifs <address>` or the
35web UI). Required.
36
37username::
38
39The username for the CIFS storage. Optional, defaults to `guest'.
40
41password::
42
43The user password. Optional.
44It will be saved in a file only readable by root
45(`/etc/pve/priv/storage/<STORAGE-ID>.pw`).
46
47domain::
48
49Sets the user domain (workgroup) for this storage. Optional.
50
51smbversion::
52
53SMB protocol Version. Optional, default is `3`.
54SMB1 is not supported due to security issues.
55
56path::
57
58The local mount point. Optional, defaults to `/mnt/pve/<STORAGE_ID>/`.
59
60content-dirs::
61
62Overrides for the default directory layout. Optional.
63
64options::
65
66Additional CIFS mount options (see `man mount.cifs`). Some options are set
67automatically and shouldn't be set here. {pve} will always set the option
68`soft`. Depending on the configuration, these options are set automatically:
69`username`, `credentials`, `guest`, `domain`, `vers`.
70
71subdir::
72
73The subdirectory of the share to mount. Optional, defaults to the root directory
74of the share.
75
76.Configuration Example (`/etc/pve/storage.cfg`)
77----
78cifs: backup
79 path /mnt/pve/backup
80 server 10.0.0.11
81 share VMData
82 content backup
83 options noserverino,echo_interval=30
84 username anna
85 smbversion 3
86 subdir /data
87
88----
89
90Storage Features
91~~~~~~~~~~~~~~~~
92
93CIFS does not support snapshots on a storage level. But you may use
94`qcow2` backing files if you still want to have snapshots and cloning
95features available.
96
97.Storage features for backend `cifs`
98[width="100%",cols="m,m,3*d",options="header"]
99|==============================================================================
100|Content types |Image formats |Shared |Snapshots |Clones
101|images rootdir vztmpl iso backup snippets |raw qcow2 vmdk |yes |qcow2 |qcow2
102|==============================================================================
103
104Examples
105~~~~~~~~
106
107You can get a list of exported CIFS shares with:
108
109----
110# pvesm scan cifs <server> [--username <username>] [--password]
111----
112
113Then you could add this share as a storage to the whole {pve} cluster
114with:
115
116----
117# pvesm add cifs <storagename> --server <server> --share <share> [--username <username>] [--password]
118----
119
120ifdef::wiki[]
121
122See Also
123~~~~~~~~
124
125* link:/wiki/Storage[Storage]
126
127endif::wiki[]