1QEMU-NBD(8) QEMU QEMU-NBD(8)
2
3
4
6 qemu-nbd - QEMU Disk Network Block Device Server
7
9 qemu-nbd [OPTION]... filename
10
11 qemu-nbd -L [OPTION]...
12
13 qemu-nbd -d dev
14
16 Export a QEMU disk image using the NBD protocol.
17
18 Other uses:
19
20 • Bind a /dev/nbdX block device to a QEMU server (on Linux).
21
22 • As a client to query exports of a remote NBD server.
23
25 filename is a disk image filename, or a set of block driver options if
26 --image-opts is specified.
27
28 dev is an NBD device.
29
30 --object type,id=ID,...
31 Define a new instance of the type object class identified by ID.
32 See the qemu(1) manual page for full details of the properties
33 supported. The common object types that it makes sense to define
34 are the secret object, which is used to supply passwords and/or
35 encryption keys, and the tls-creds object, which is used to sup‐
36 ply TLS credentials for the qemu-nbd server or client.
37
38 -p, --port=PORT
39 TCP port to listen on as a server, or connect to as a client
40 (default 10809).
41
42 -o, --offset=OFFSET
43 The offset into the image.
44
45 -b, --bind=IFACE
46 The interface to bind to as a server, or connect to as a client
47 (default 0.0.0.0).
48
49 -k, --socket=PATH
50 Use a unix socket with path PATH.
51
52 --image-opts
53 Treat filename as a set of image options, instead of a plain
54 filename. If this flag is specified, the -f flag should not be
55 used, instead the format= option should be set.
56
57 -f, --format=FMT
58 Force the use of the block driver for format FMT instead of
59 auto-detecting.
60
61 -r, --read-only
62 Export the disk as read-only.
63
64 -A, --allocation-depth
65 Expose allocation depth information via the qemu:alloca‐
66 tion-depth metadata context accessible through
67 NBD_OPT_SET_META_CONTEXT.
68
69 -B, --bitmap=NAME
70 If filename has a qcow2 persistent bitmap NAME, expose that bit‐
71 map via the qemu:dirty-bitmap:NAME metadata context accessible
72 through NBD_OPT_SET_META_CONTEXT.
73
74 -s, --snapshot
75 Use filename as an external snapshot, create a temporary file
76 with backing_file=filename, redirect the write to the temporary
77 one.
78
79 -l, --load-snapshot=SNAPSHOT_PARAM
80 Load an internal snapshot inside filename and export it as an
81 read-only device, SNAPSHOT_PARAM format is snap‐
82 shot.id=[ID],snapshot.name=[NAME] or [ID_OR_NAME]
83
84 --cache=CACHE
85 The cache mode to be used with the file. Valid values are: none,
86 writeback (the default), writethrough, directsync and unsafe.
87 See the documentation of the emulator's -drive cache=... option
88 for more info.
89
90 -n, --nocache
91 Equivalent to --cache=none.
92
93 --aio=AIO
94 Set the asynchronous I/O mode between threads (the default), na‐
95 tive (Linux only), and io_uring (Linux 5.1+).
96
97 --discard=DISCARD
98 Control whether discard (also known as trim or unmap) requests
99 are ignored or passed to the filesystem. DISCARD is one of ig‐
100 nore (or off), unmap (or on). The default is ignore.
101
102 --detect-zeroes=DETECT_ZEROES
103 Control the automatic conversion of plain zero writes by the OS
104 to driver-specific optimized zero write commands. DETECT_ZEROES
105 is one of off, on, or unmap. unmap converts a zero write to an
106 unmap operation and can only be used if DISCARD is set to unmap.
107 The default is off.
108
109 -c, --connect=DEV
110 Connect filename to NBD device DEV (Linux only).
111
112 -d, --disconnect
113 Disconnect the device DEV (Linux only).
114
115 -e, --shared=NUM
116 Allow up to NUM clients to share the device (default 1), 0 for
117 unlimited. Safe for readers, but for now, consistency is not
118 guaranteed between multiple writers.
119
120 -t, --persistent
121 Don't exit on the last connection.
122
123 -x, --export-name=NAME
124 Set the NBD volume export name (default of a zero-length
125 string).
126
127 -D, --description=DESCRIPTION
128 Set the NBD volume export description, as a human-readable
129 string.
130
131 -L, --list
132 Connect as a client and list all details about the exports ex‐
133 posed by a remote NBD server. This enables list mode, and is
134 incompatible with options that change behavior related to a spe‐
135 cific export (such as --export-name, --offset, ...).
136
137 --tls-creds=ID
138 Enable mandatory TLS encryption for the server by setting the ID
139 of the TLS credentials object previously created with the
140 --object option; or provide the credentials needed for connect‐
141 ing as a client in list mode.
142
143 --tls-hostname=hostname
144 When validating an x509 certificate received over a TLS connec‐
145 tion, the hostname that the NBD client used to connect will be
146 checked against information in the server provided certificate.
147 Sometimes it might be required to override the hostname used to
148 perform this check. For example, if the NBD client is using a
149 tunnel from localhost to connect to the remote server, the
150 --tls-hostname option should be used to set the officially ex‐
151 pected hostname of the remote NBD server. This can also be used
152 if accessing NBD over a UNIX socket where there is no inherent
153 hostname available. This is only permitted when acting as a NBD
154 client with the --list option.
155
156 --fork Fork off the server process and exit the parent once the server
157 is running.
158
159 --pid-file=PATH
160 Store the server's process ID in the given file.
161
162 --tls-authz=ID
163 Specify the ID of a qauthz object previously created with the
164 --object option. This will be used to authorize connecting users
165 against their x509 distinguished name.
166
167 -v, --verbose
168 Display extra debugging information.
169
170 -h, --help
171 Display this help and exit.
172
173 -V, --version
174 Display version information and exit.
175
176 -T, --trace [[enable=]PATTERN][,events=FILE][,file=FILE]
177 Specify tracing options.
178
179 [enable=]PATTERN
180 Immediately enable events matching PATTERN (either event name
181 or a globbing pattern). This option is only available if
182 QEMU has been compiled with the simple, log or ftrace tracing
183 backend. To specify multiple events or patterns, specify the
184 -trace option multiple times.
185
186 Use -trace help to print a list of names of trace points.
187
188 events=FILE
189 Immediately enable events listed in FILE. The file must con‐
190 tain one event name (as listed in the trace-events-all file)
191 per line; globbing patterns are accepted too. This option is
192 only available if QEMU has been compiled with the simple, log
193 or ftrace tracing backend.
194
195 file=FILE
196 Log output traces to FILE. This option is only available if
197 QEMU has been compiled with the simple tracing backend.
198
200 Start a server listening on port 10809 that exposes only the guest-vis‐
201 ible contents of a qcow2 file, with no TLS encryption, and with the de‐
202 fault export name (an empty string). The command is one-shot, and will
203 block until the first successful client disconnects:
204
205 qemu-nbd -f qcow2 file.qcow2
206
207 Start a long-running server listening with encryption on port 10810,
208 and whitelist clients with a specific X.509 certificate to connect to a
209 1 megabyte subset of a raw file, using the export name 'subset':
210
211 qemu-nbd \
212 --object tls-creds-x509,id=tls0,endpoint=server,dir=/path/to/qemutls \
213 --object 'authz-simple,id=auth0,identity=CN=laptop.example.com,,\
214 O=Example Org,,L=London,,ST=London,,C=GB' \
215 --tls-creds tls0 --tls-authz auth0 \
216 -t -x subset -p 10810 \
217 --image-opts driver=raw,offset=1M,size=1M,file.driver=file,file.filename=file.raw
218
219 Serve a read-only copy of a guest image over a Unix socket with as many
220 as 5 simultaneous readers, with a persistent process forked as a dae‐
221 mon:
222
223 qemu-nbd --fork --persistent --shared=5 --socket=/path/to/sock \
224 --read-only --format=qcow2 file.qcow2
225
226 Expose the guest-visible contents of a qcow2 file via a block device
227 /dev/nbd0 (and possibly creating /dev/nbd0p1 and friends for partitions
228 found within), then disconnect the device when done. Access to bind
229 qemu-nbd to a /dev/nbd device generally requires root privileges, and
230 may also require the execution of modprobe nbd to enable the kernel NBD
231 client module. CAUTION: Do not use this method to mount filesystems
232 from an untrusted guest image - a malicious guest may have prepared the
233 image to attempt to trigger kernel bugs in partition probing or file
234 system mounting.
235
236 qemu-nbd -c /dev/nbd0 -f qcow2 file.qcow2
237 qemu-nbd -d /dev/nbd0
238
239 Query a remote server to see details about what export(s) it is serving
240 on port 10809, and authenticating via PSK:
241
242 qemu-nbd \
243 --object tls-creds-psk,id=tls0,dir=/tmp/keys,username=eblake,endpoint=client \
244 --tls-creds tls0 -L -b remote.example.com
245
247 qemu(1), qemu-img(1)
248
250 Anthony Liguori <anthony@codemonkey.ws>
251
253 2023, The QEMU Project Developers
254
255
256
257
2587.0.0 Jan 19, 2023 QEMU-NBD(8)