|
NAMEnbdkit-ip-filter - filter clients by IP addressSYNOPSISnbdkit --filter=ip PLUGIN [allow=addr[,addr...]] [deny=addr[,addr...]] DESCRIPTION"nbdkit-ip-filter" can whitelist or blacklist clients by their IP address. Usually it is better to control this outside nbdkit, for example using TCP wrappers or a firewall, but this filter can be used if these are not available.EXAMPLESnbdkit --filter=ip [...] allow=127.0.0.1,::1 deny=all Allow clients to connect on the loopback IPv4 or loopback IPv6 address, deny all other clients. nbdkit --filter=ip [...] deny=8.0.0.0/8 Allow any client except connections from the IPv4 "8.0.0.0/8" network. nbdkit --filter=ip [...] allow=anyipv6 deny=all Allow IPv6 clients to connect from anywhere, deny all IPv4 connections. RULESWhen a client connects, this filter checks its IP address against the allow and deny lists as follows:
If either the "allow" or "deny" parameter is not present then it is assumed to be an empty list. The order in which the parameters appear on the command line does not matter; the allow list is always processed first and the deny list second. The "allow" and "deny" parameters each contain a comma-separated list of any of the following:
Not filteredIf neither the "allow" nor the "deny" parameter is given the filter does nothing.The filter permits non-IP connections, such as Unix domain sockets or AF_VSOCK. PARAMETERS
FILES
VERSION"nbdkit-ip-filter" first appeared in nbdkit 1.18.SEE ALSOnbdkit(1), nbdkit-exitlast-filter(1), nbdkit-limit-filter(1), nbdkit-filter(3).AUTHORSRichard W.M. JonesCOPYRIGHTCopyright (C) 2019 Red Hat Inc.LICENSERedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Visit the GSP FreeBSD Man Page Interface. |