Shorewall Version 4TomEastep2007Thomas M. EastepPermission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version
1.2 or any later version published by the Free Software Foundation; with
no Invariant Sections, with no Front-Cover, and with no Back-Cover
Texts. A copy of the license is included in the section entitled
GNU Free Documentation
License.IntroductionShorewall version 4 represents a substantial shift in direction for
Shorewall. Up to nowShorewall has been written entirely in Bourne Shell.Shorewall has run the iptables utility to add
each Netfilter rule.Shorewall version 4 offers you a choice. You can continue to use the
existing shell-based implementation or you can use a new implementation of
the Shorewall compiler written in the Perl programming language. The new
compiler:has a small disk footprintis very fast.generates a firewall script that uses
iptables-restore; so the script is very
fast.generates better and more consistent error messages.does a much more thorough job of checking the configuration to
avoid run-time errors.Both compilers may be installed on your system and you can use
whichever one suits you in a particular case.Installing Shorewall Version 4Shorewall 4 contains four packages:Shorewall-shell - the old shell-based compiler and related
components.Shorewall-perl - the new Perl-based compiler.Shorewall-common - the part of Shorewall common to both
compilers.Shorewall-lite- same as the 3.4 version of Shorewall Lite. Can
run scripts generated by either Shorewall-perl or
Shorewall-shell.If you upgrade to Shorewall Version 4, you must install
Shorewall-shell and/or Shorewall-perl; in fact, if you are using the
tarball for your installation, you must install Shorewall-shell and/or
Shorewall-perl before you upgrade
Shorewall. See the upgrade issues
for details.Prerequisites for using the Shorewall Version 4 Perl-based
CompilerPerl (I use Perl 5.8.8 but other versions should work
fine)Perl Cwd ModulePerl File::Basename ModulePerl File::Temp ModulePerl Getopt::Long ModulePerl Carp ModuleIncompatibilities Introduced in the Shorewall Version 4 Perl-based
CompilerThe Shorewall-perl compiler is not 100% compatible with the
Shorewall-shell version. See this
document for details.Package Compatibility MatrixThe following table indicates which versions of the compilers are
supported by each version of Shorewall-common.PackageCompatible
WithShorewall-common 4.0.0-RC1Shorewall-shell 4.0.0-RC1Shorewall-perl 4.0.0-RC1Shorewall-common
4.0.0-RC2Shorewall-shell 4.0.0-RC1Shorewall-perl 4.0.0-RC1Shorewall-shell 4.0.0-RC2Shorewall-perl 4.0.0-RC2Shorewall-common 4.0.0Shorewall-shell 4.0.0Shorewall-perl 4.0.0Shorewall-shell 4.0.1Shorewall-perl 4.0.1Shorewall-common 4.0.1Shorewall-shell 4.0.0Shorewall-perl 4.0.0Shorewall-shell 4.0.1Shorewall-perl 4.0.1Compiler SelectionIf you only install one compiler, then that compiler will be
used.If you install both compilers, then the compiler actually used
depends on the SHOREWALL_COMPILER setting in
shorewall.conf.The value of this new option can be either 'perl' or 'shell'.If you add 'SHOREWALL_COMPILER=perl' to
/etc/shorewall/shorewall.conf then by default, the
new compiler will be used on the system. If you add it to
shorewall.conf in a separate directory (such as a
Shorewall-lite export directory) then the new compiler will only be used
when you compile from that directory.If you only install one compiler, it is suggested that you do not
set SHOREWALL_COMPILER.You can select the compiler to use on the command line using the 'C
option:'-C shell' means use the shell compiler'-C perl' means use the perl compilerThe -C option overrides the setting in
shorewall.conf.Example:shorewall restart -C perlWhen the Shorewall-perl compiler has been selected, the
params file is processed using the
option which causes all variables set within the file
to be exported automatically by the shell. The Shorewall-perl compiler
uses the current environmental variables to perform variable expansion
within the other Shorewall configuration files.