descriptionThe Network Block Device is a Linux-originated lightweight block access protocol that allows one to export a block device to a client.
homepage URLhttps://nbd.sourceforge.io/
repository URLhttps://github.com/NetworkBlockDevice/nbd.git
ownereblake@redhat.com
last changeWed, 24 Apr 2024 12:46:51 +0000 (24 14:46 +0200)
last refreshThu, 9 May 2024 06:43:28 +0000 (9 08:43 +0200)
content tags
add:
README.md

NBD README

Welcome to the NBD userland support files!

This package contains nbd-server and nbd-client.

To install the package, download the source and do the normal configure/make/make install dance. You'll need to install it on both the client and the server. Note that released nbd tarballs are found on sourceforge.

For compiling from git, do a checkout, install the SGML tools (docbook2man), and then run './autogen.sh' while inside your checkout. Then, see above.

Contributing

If you want to send a patch, please do not open a pull request; instead, send it to the mailinglist

Security issues

If you think you found a security problem in NBD, please contact the mailinglist. Do not just file an issue for this (although you may do so too if you prefer).

For embargoed issues, please contact Wouter Verhelst <wouter@debian.org>

Using NBD

NBD is quite easy to use. First, on the client, you need to load the module and, if you're not using udev, to create the device nodes:

# modprobe nbd
# cd /dev
# ./MAKEDEV nbd0

(if you need more than one NBD device, repeat the above command for nbd1, nbd2, ...)

Next, write a configuration file for the server. An example looks like this:

# This is a comment
[generic]
    # The [generic] section is required, even if nothing is specified
    # there.
    # When either of these options are specified, nbd-server drops
    # privileges to the given user and group after opening ports, but
    # _before_ opening files.
    user = nbd
    group = nbd
[export1]
    exportname = /export/nbd/export1-file
    authfile = /export/nbd/export1-authfile
    timeout = 30
    filesize = 10000000
    readonly = false
    multifile = false
    copyonwrite = false
    prerun = dd if=/dev/zero of=%s bs=1k count=500
    postrun = rm -f %s
[otherexport]
    exportname = /export/nbd/experiment
    # The other options are all optional

The configuration file is parsed with GLib's GKeyFile, which parses key files as they are specified in the Freedesktop.org Desktop Entry Specification, as can be found at <http://freedesktop.org/Standards/desktop-entry-spec>. While this format was not intended to be used for configuration files, the glib API is flexible enough for it to be used as such.

Now start the server:

nbd-server -C /path/to/configfile

Note that the filename must be an absolute path; i.e., something like /path/to/file, not ../file. See the nbd-server manpage for details on any available options.

Finally, you'll be able to start the client:

nbd-client <hostname> -N <export name> <nbd device>

e.g.,

nbd-client 10.0.0.1 -N otherexport /dev/nbd0

will use the second export in the above example (the one that exports /export/nbd/experiment)

nbd-client must be ran as root; the same is not true for nbd-server (but do make sure that /var/run is writeable by the server that nbd-server runs as; otherwise, you won't get a PID file, though the server will keep running).

There are packages (or similar) available for most current operating systems; see the "Packaging status" badge below for details.

For questions, please use the nbd@other.debian.org mailinglist.

Alternate implementations

Besides this project, the NBD protocol has been implemented by various other people. A (probably incomplete) list follows:

Additionally, these implementations once existed but are now no longer maintained:

Badges

Download Network Block Device Coverity Scan Build Status CII badge Travis

Packaging status

shortlog
2024-04-24 rokerumask(77) -> umask(077): "allow rwx permission for... master
2024-04-24 rokerclean-up headers necessary for treefiles.o, minor sourc...
2024-04-07 Wouter VerhelstActually, do this differently
2024-04-07 Wouter VerhelstEnable TLS1.3 by default
2024-04-03 Wouter VerhelstDrop now-superfluous g_key_file_free()
2024-04-03 rokerfix clang warnings in nbd-server.c
2024-04-03 Dave JonesFix the check & no cases of enable_manpages
2024-04-03 Dave JonesSet sensible default for port
2024-03-06 Christian Hessefix generation of systemd service
2024-03-03 Wouter VerhelstFix tests in configure.acnbd-3.26.1
2024-03-03 Wouter VerhelstAlso drop this filenbd-3.26
2024-03-03 Wouter VerhelstBump checkout action version
2024-03-03 Wouter VerhelstDon't conditionalize these variables
2024-03-03 Wouter VerhelstUpdate copyright statement
2024-03-03 Wouter VerhelstDon't try to build manpages without docbook2man
2024-03-03 Łukasz StelmachChange the output file name to lowercase
...
tags
2 months ago nbd-3.26.1 Tagging NBD 3.26.1
2 months ago nbd-3.26 Tagging NBD 3.26
12 months ago nbd-3.25 Tagging NBD 3.25
12 months ago exthdr-v3
2 years ago nbd-debian-3.19-3 Tagging NBD for Debian 1:3.19-3
2 years ago nbd-debian-3.21-1 Tagging NBD 1:3.21-1 for Debian
2 years ago nbd-debian-3.24-1 Tagging NBD Debian 1:3.24-1
2 years ago nbd-3.24 Tagging NBD 3.24
2 years ago exthdr-v1
2 years ago nbd-3.23 Tagging NBD 3.23
2 years ago nbd-debian-3.22-1 NBD for Debian 3.22-1
2 years ago nbd-3.22 Tagging NBD 3.22
3 years ago nbd-3.21 Tagging NBD 3.21
4 years ago nbd-debian-3.20-1 Tagging NBD for Debian 1:3.20-1
4 years ago nbd-3.20 Tagging NBD 3.20
5 years ago nbd-debian-3.19-2 Tagging NBD 1:3.19-2
...
heads
2 weeks ago master
4 months ago debian
12 months ago extension-ext-header
13 months ago structured
5 years ago extension-structured-request
6 years ago extension-blockstatus
6 years ago extension-structured-reply
6 years ago extension-resize
6 years ago 3.15
7 years ago 3.7-fix-flags
7 years ago extension-write-zeroes
8 years ago debian-jessie
8 years ago debian-wheezy
13 years ago plugin
forks
Cached version (3543s old)
nbd/ericb.git Eric Blake's pending patches for NBD eblake@redhat.com 12 months ago