]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
iptables: add xtables-compat.8 manpage
authorArturo Borrero Gonzalez <arturo@debian.org>
Sun, 25 Feb 2018 18:07:41 +0000 (19:07 +0100)
committerFlorian Westphal <fw@strlen.de>
Sun, 25 Feb 2018 18:14:15 +0000 (19:14 +0100)
Copied back from the downstream Debian package.

Signed-off-by: Arturo Borrero Gonzalez <arturo@netfilter.org>
Signed-off-by: Florian Westphal <fw@strlen.de>
iptables/Makefile.am
iptables/xtables-compat.8 [new file with mode: 0644]

index f92cc4ffd6dea28a68769c31fc7afa48d2508816..d0060c600910d9da2943deda5454ff08f8900f6a 100644 (file)
@@ -58,7 +58,7 @@ sbin_PROGRAMS += xtables-compat-multi
 endif
 man_MANS         = iptables.8 iptables-restore.8 iptables-save.8 \
                    iptables-xml.1 ip6tables.8 ip6tables-restore.8 \
-                   ip6tables-save.8 iptables-extensions.8
+                   ip6tables-save.8 iptables-extensions.8 xtables-compat.8
 CLEANFILES       = iptables.8 \
                   xtables-config-parser.c xtables-config-syntax.c
 
diff --git a/iptables/xtables-compat.8 b/iptables/xtables-compat.8
new file mode 100644 (file)
index 0000000..90f887e
--- /dev/null
@@ -0,0 +1,177 @@
+.\"
+.\" (C) Copyright 2016-2017, Arturo Borrero Gonzalez <arturo@netfilter.org>
+.\"
+.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
+.\" This is free documentation; you can redistribute it and/or
+.\" modify it under the terms of the GNU General Public License as
+.\" published by the Free Software Foundation; either version 2 of
+.\" the License, or (at your option) any later version.
+.\"
+.\" The GNU General Public License's references to "object code"
+.\" and "executables" are to be interpreted as the output of any
+.\" document formatting or typesetting system, including
+.\" intermediate and printed output.
+.\"
+.\" This manual is distributed in the hope that it will be useful,
+.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
+.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+.\" GNU General Public License for more details.
+.\"
+.\" You should have received a copy of the GNU General Public
+.\" License along with this manual; if not, see
+.\" <http://www.gnu.org/licenses/>.
+.\" %%%LICENSE_END
+.\"
+.TH XTABLES-COMPAT 8 "Feb 25, 2017"
+
+.SH NAME
+xtables-compat \- compat tools to migrate from iptables to nftables
+
+.SH DESCRIPTION
+\fBxtables-compat\fP is set of tools to help the system administrator migrate the
+ruleset from \fBiptables(8)\fP, \fBip6tables(8)\fP, \fBarptables(8)\fP, and
+\fBebtables(8)\fP to \fBnftables(8)\fP.
+
+The \fBxtables-compat\fP set is composed of several commands:
+.IP \[bu] 2
+iptables-compat
+.IP \[bu]
+iptables-compat-save
+.IP \[bu]
+iptables-compat-restore
+.IP \[bu]
+ip6tables-compat
+.IP \[bu]
+ip6tables-compat-save
+.IP \[bu]
+ip6tables-compat-restore
+.IP \[bu]
+arptables-compat
+.IP \[bu]
+ebtables-compat
+
+These tools use the libxtables framework extensions and hook to the nf_tables
+kernel subsystem using the \fBnft_compat\fP module.
+
+.SH USAGE
+The compat tools set allows you to manage the nf_tables backend using the
+native syntax of \fBiptables(8)\fP, \fBip6tables(8)\fP, \fBarptables(8)\fP, and
+\fBebtables(8)\fP.
+
+You should use the compat tools exactly the same way as you would use the
+corresponding original tool.
+
+Adding a rule will result in that rule being added to the nf_tables kernel
+subsystem instead.
+Listing the ruleset will use the nf_tables backend as well.
+
+When these tools were designed, the main idea was to replace each legacy binary
+with a symlink to the corresponding compat tool, for example:
+
+.nf
+       /sbin/iptables  --> /usr/sbin/iptables-compat
+       /sbin/ip6tables --> /usr/sbin/ip6tables-compat
+       /sbin/arptables --> /usr/sbin/arptables-compat
+       /sbin/ebtables  --> /usr/sbin/ebtables-compat
+.fi
+
+.SH EXAMPLES
+One basic example is creating the skeleton ruleset in nf_tables from the
+compat tools, in a fresh machine:
+
+.nf
+       root@machine:~# iptables-compat -L
+       [...]
+       root@machine:~# ip6tables-compat -L
+       [...]
+       root@machine:~# arptables-compat -L
+       [...]
+       root@machine:~# ebtables-compat -L
+       [...]
+       root@machine:~# nft list ruleset
+       table ip filter {
+               chain INPUT {
+                       type filter hook input priority 0; policy accept;
+               }
+
+               chain FORWARD {
+                       type filter hook forward priority 0; policy accept;
+               }
+
+               chain OUTPUT {
+                       type filter hook output priority 0; policy accept;
+               }
+       }
+       table ip6 filter {
+               chain INPUT {
+                       type filter hook input priority 0; policy accept;
+               }
+
+               chain FORWARD {
+                       type filter hook forward priority 0; policy accept;
+               }
+
+               chain OUTPUT {
+                       type filter hook output priority 0; policy accept;
+               }
+       }
+       table bridge filter {
+               chain INPUT {
+                       type filter hook input priority -200; policy accept;
+               }
+
+               chain FORWARD {
+                       type filter hook forward priority -200; policy accept;
+               }
+
+               chain OUTPUT {
+                       type filter hook output priority -200; policy accept;
+               }
+       }
+       table arp filter {
+               chain INPUT {
+                       type filter hook input priority 0; policy accept;
+               }
+
+               chain FORWARD {
+                       type filter hook forward priority 0; policy accept;
+               }
+
+               chain OUTPUT {
+                       type filter hook output priority 0; policy accept;
+               }
+       }
+.fi
+
+(please note that in fresh machines, listing the ruleset for the first time
+results in all tables an chain being created).
+
+To migrate your complete filter ruleset, in the case of \fBiptables(8)\fP,
+you would use:
+
+.nf
+       root@machine:~# iptables-save > myruleset               # reads from x_tables
+       root@machine:~# iptables-compat-restore myruleset       # writes to nf_tables
+.fi
+
+
+.SH LIMITATIONS
+You should use \fBLinux kernel >= 4.2\fP.
+
+Some (few) extensions may be not supported (or fully-supported) for whatever
+reason (for example, they were considered obsolete).
+
+To get up-to-date information about this, please head to
+\fBhttp://wiki.nftables.org/\fP.
+
+.SH SEE ALSO
+\fBnft(8)\fP, \fBxtables-translate(8)\fP
+
+.SH AUTHORS
+The nftables framework is written by the Netfilter project
+(https://www.netfilter.org).
+
+This manual page was written by Arturo Borrero Gonzalez
+<arturo@debian.org> for the Debian project, but may be used by others.
+
+This documentation is free/libre under the terms of the GPLv2+.