source: postlfs/security/iptables.xml@ b6c5448

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since b6c5448 was b6c5448, checked in by Krejzi <krejzi@…>, 12 years ago

krb5 1.10.1, expat 2.1.0, curl 7.25.0, libdrm 2.4.33, iptables 1.4.13

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@9827 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY iptables-download-http "http://www.netfilter.org/projects/iptables/files/iptables-&iptables-version;.tar.bz2">
8 <!ENTITY iptables-download-ftp "ftp://ftp.netfilter.org/pub/iptables/iptables-&iptables-version;.tar.bz2">
9 <!ENTITY iptables-md5sum "40a15608ec57b50e9377cace546dd115">
10 <!ENTITY iptables-size "492 KB">
11 <!ENTITY iptables-buildsize "13 MB">
12 <!ENTITY iptables-time "0.2 SBU">
13]>
14
15<sect1 id="iptables" xreflabel="iptables-&iptables-version;">
16 <?dbhtml filename="iptables.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Iptables-&iptables-version;</title>
24
25 <indexterm zone="iptables">
26 <primary sortas="a-Iptables">Iptables</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Iptables</title>
31
32 <para>The next part of this chapter deals with firewalls. The principal
33 firewall tool for Linux is <application>iptables</application>. You will
34 need to install <application>iptables</application> if you intend on using
35 any form of a firewall.</para>
36
37 &lfs70_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&iptables-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&iptables-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &iptables-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &iptables-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &iptables-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &iptables-time;</para>
58 </listitem>
59 </itemizedlist>
60
61 <para condition="html" role="usernotes">User Notes:
62 <ulink url="&blfs-wiki;/iptables"/></para>
63
64 </sect2>
65
66 <sect2 role="kernel" id='iptables-kernel'>
67 <title>Kernel Configuration</title>
68
69 <para>A firewall in Linux is accomplished through a portion of the
70 kernel called netfilter. The interface to netfilter is
71 <application>iptables</application>. To use it, the appropriate
72 kernel configuration parameters are found in Networking Support &rArr;
73 Networking Options &rArr; Network Packet Filtering Framework.</para>
74
75 <indexterm zone="iptables iptables-kernel">
76 <primary sortas="d-iptables">Iptables</primary>
77 </indexterm>
78
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of Iptables</title>
83
84 <note>
85 <para>The installation below does not include building some specialized
86 extension libraries which require the raw headers in the
87 <application>Linux</application> source code. If you wish to build the
88 additional extensions (if you aren't sure, then you probably don't), you
89 can look at the <filename>INSTALL</filename> file to see an example of
90 how to change the <parameter>KERNEL_DIR=</parameter> parameter to point
91 at the <application>Linux</application> source code. Note that if you
92 upgrade the kernel version, you may also need to recompile
93 <application>iptables</application> and that the BLFS team has not tested
94 using the raw kernel headers.</para>
95
96 <para>For some non-x86 architectures, the raw kernel headers may be
97 required. In that case, modify the <parameter>KERNEL_DIR=</parameter>
98 parameter to point at the <application>Linux</application> source
99 code.</para>
100 </note>
101
102 <para>Install <application>iptables</application> by running the following
103 commands:</para>
104
105<screen><userinput>./configure --prefix=/usr \
106 --exec-prefix= \
107 --bindir=/sbin \
108 --with-xtlibdir=/lib/xtables \
109 --with-pkgconfigdir=/usr/lib/pkgconfig &amp;&amp;
110make</userinput></screen>
111
112 <para>This package does not come with a test suite.</para>
113
114 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
115
116<screen role="root"><userinput>make install &amp;&amp;
117ln -sfv xtables-multi /sbin/iptables-xml</userinput></screen>
118
119 </sect2>
120
121 <sect2 role="commands">
122 <title>Command Explanations</title>
123
124 <para><parameter>--exec-prefix=</parameter>: Ensure all binaries and
125 libraries end up in <filename class="directory">/</filename> directory
126 tree.</para>
127
128 <para><parameter>--bindir=/sbin</parameter>: Ensure all the executables go
129 in <filename class="directory">/sbin</filename>.</para>
130
131 <para><parameter>--with-xtlibdir=/lib/xtables</parameter>: Ensure all
132 iptables modules are installed in the
133 <filename class="directory">/lib/xtables</filename> directory.</para>
134
135 <para><parameter>--with-pkgconfigdir=/usr/lib/pkgconfig</parameter>:
136 Ensure all the pkgconfig files are in the standard location.</para>
137
138 <para><command>ln -sfv xtables-multi /sbin/iptables-xml</command>: Ensure
139 the symbolic link for <command>iptables-xml</command> is relative.</para>
140
141 </sect2>
142
143 <sect2 role="configuration">
144 <title>Configuring Iptables</title>
145
146 <para>Introductory instructions for configuring your firewall are
147 presented in the next section: <xref linkend="fw-firewall"/></para>
148
149 <sect3 id="iptables-init">
150 <title>Boot Script</title>
151
152 <para>To set up the iptables firewall at boot, install the
153 <filename>/etc/rc.d/init.d/iptables</filename> init script included
154 in the <xref linkend="bootscripts"/> package.</para>
155
156 <indexterm zone="iptables iptables-init">
157 <primary sortas="f-iptables">iptables</primary>
158 </indexterm>
159
160<screen role="root"><userinput>make install-iptables</userinput></screen>
161
162 </sect3>
163
164 </sect2>
165
166 <sect2 role="content">
167 <title>Contents</title>
168
169 <segmentedlist>
170 <segtitle>Installed Programs</segtitle>
171 <segtitle>Installed Libraries</segtitle>
172 <segtitle>Installed Directories</segtitle>
173
174 <seglistitem>
175 <seg>iptables, iptables-restore, iptables-save, iptables-xml,
176 ip6tables, ip6tables-restore, ip6tables-save,
177 and xtables-multi</seg>
178 <seg>libip4tc.so, libip6tc.so, libiptc.so, libxtables.so,
179 and numerous modules in /lib/xtables</seg>
180 <seg>/lib/xtables, /usr/include/libiptc and /usr/share/xtables</seg>
181 </seglistitem>
182 </segmentedlist>
183
184 <variablelist>
185 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
186 <?dbfo list-presentation="list"?>
187 <?dbhtml list-presentation="table"?>
188
189 <varlistentry id="iptables-prog">
190 <term><command>iptables</command></term>
191 <listitem>
192 <para>is used to set up, maintain, and inspect the tables of
193 IP packet filter rules in the Linux kernel. It is a
194 symbolic link to xtables-multi.</para>
195 <indexterm zone="iptables iptables-prog">
196 <primary sortas="b-iptables">iptables</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="iptables-restore">
202 <term><command>iptables-restore</command></term>
203 <listitem>
204 <para>is used to restore IP Tables from data
205 specified on STDIN. Use I/O redirection provided by your
206 shell to read from a file. It is a symbolic link to
207 xtables-multi.</para>
208 <indexterm zone="iptables iptables-restore">
209 <primary sortas="b-iptables-restore">iptables-restore</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="iptables-save">
215 <term><command>iptables-save</command></term>
216 <listitem>
217 <para>is used to dump the contents of an IP Table
218 in easily parseable format to STDOUT. Use I/O-redirection
219 provided by your shell to write to a file. It is a symbolic link to
220 xtables-multi.</para>
221 <indexterm zone="iptables iptables-save">
222 <primary sortas="b-iptables-save">iptables-save</primary>
223 </indexterm>
224 </listitem>
225 </varlistentry>
226
227 <varlistentry id="iptables-xml">
228 <term><command>iptables-xml</command></term>
229 <listitem>
230 <para>is used to convert the output of
231 <command>iptables-save</command> to an XML format. Using the
232 <filename>iptables.xslt</filename> stylesheet converts the XML
233 back to the format of <command>iptables-restore</command>.
234 It is a symbolic link to xtables-multi.</para>
235 <indexterm zone="iptables iptables-xml">
236 <primary sortas="b-iptables-xml">iptables-xml</primary>
237 </indexterm>
238 </listitem>
239 </varlistentry>
240
241 <varlistentry id="ip6tables">
242 <term><command>ip6tables*</command></term>
243 <listitem>
244 <para>are a set of commands for IPV6 that parallel the iptables
245 commands above. All of these commands are symbolic
246 links to xtables-multi.</para>
247 <indexterm zone="iptables ip6tables">
248 <primary sortas="b-ip6tables">ip6tables</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 </variablelist>
254
255 </sect2>
256
257</sect1>
Note: See TracBrowser for help on using the repository browser.