2006-06-03 17:16:21 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2006-06-05 21:19:35 +02:00
|
|
|
# Shorewall Lite Packet Filtering Firewall Capabilities Detector
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
2007-09-08 18:09:51 +02:00
|
|
|
# This program is under GPL [http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt]
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
2010-01-01 22:27:48 +01:00
|
|
|
# (c) 2006,2007,2008,2009,2010 - Tom Eastep (teastep@shorewall.net)
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
|
|
|
# This file should be placed in /sbin/shorewall.
|
|
|
|
#
|
|
|
|
# Shorewall documentation is available at http://shorewall.sourceforge.net
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of Version 2 of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This program 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 program; if not, write to the Free Software
|
2007-09-08 18:09:51 +02:00
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# This program may be used to create a /etc/shorewall/capabilities file for
|
|
|
|
# use in compiling Shorewall firewalls on another system.
|
|
|
|
#
|
|
|
|
# On the target system (the system where the firewall program is to run):
|
|
|
|
#
|
2007-04-07 18:23:22 +02:00
|
|
|
# [ IPTABLES=<iptables binary> ] [ MODULESDIR=<kernel modules directory> ] [ MODULE_SUFFIX="<module suffix list>" ] shorecap > capabilities
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
|
|
|
# Now move the capabilities file to the compilation system. The file must
|
|
|
|
# be placed in a directory on the CONFIG_PATH to be used when compiling firewalls
|
|
|
|
# for the target system.
|
|
|
|
#
|
|
|
|
# Default values for the two variables are:
|
|
|
|
#
|
|
|
|
# IPTABLES - iptables
|
|
|
|
# MODULESDIR - /lib/modules/$(uname -r)/kernel/net/ipv4/netfilter
|
2007-04-07 18:23:22 +02:00
|
|
|
# MODULE_SUFFIX - "o gz ko o.gz ko.gz"
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
|
|
|
# Shorewall need not be installed on the target system to run shorecap. If the '-e' flag is
|
|
|
|
# used during firewall compilation, then the generated firewall program will likewise not
|
|
|
|
# require Shorewall to be installed.
|
|
|
|
|
2007-01-25 18:23:36 +01:00
|
|
|
SHAREDIR=/usr/share/shorewall-lite
|
|
|
|
VARDIR=/var/lib/shorewall-lite
|
|
|
|
CONFDIR=/etc/shorewall-lite
|
2006-08-09 18:18:32 +02:00
|
|
|
PRODUCT="Shorewall Lite"
|
|
|
|
|
2007-01-22 23:17:42 +01:00
|
|
|
. /usr/share/shorewall-lite/lib.base
|
2006-06-11 17:05:10 +02:00
|
|
|
. /usr/share/shorewall-lite/configpath
|
2006-06-08 00:22:56 +02:00
|
|
|
|
2006-08-09 18:18:32 +02:00
|
|
|
[ -n "$PATH" ] || PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin:/usr/local/sbin
|
2006-06-03 17:16:21 +02:00
|
|
|
|
2006-08-09 18:18:32 +02:00
|
|
|
VERSION=$(cat /usr/share/shorewall-lite/version)
|
2006-06-03 17:16:21 +02:00
|
|
|
|
2006-06-11 17:05:10 +02:00
|
|
|
[ -n "$IPTABLES" ] || IPTABLES=$(mywhich iptables)
|
2006-08-09 18:18:32 +02:00
|
|
|
|
2010-03-01 02:58:01 +01:00
|
|
|
VERBOSITY=0
|
2007-01-25 19:56:24 +01:00
|
|
|
load_kernel_modules No
|
2006-06-03 17:16:21 +02:00
|
|
|
determine_capabilities
|
2006-08-09 18:18:32 +02:00
|
|
|
report_capabilities1
|