2002-05-01 01:13:15 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2006-01-16 16:15:43 +01:00
|
|
|
# Shorewall Packet Filtering Firewall Control Program - V3.2
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2003-02-23 15:10:37 +01:00
|
|
|
# This program is under GPL [http://www.gnu.org/copyleft/gpl.htm]
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2006-01-15 20:27:57 +01:00
|
|
|
# (c) 1999,2000,2001,2002,2003,2004,2005,2006 - Tom Eastep (teastep@shorewall.net)
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
# This file should be placed in /sbin/shorewall.
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
# Shorewall documentation is available at http://shorewall.sourceforge.net
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
2003-02-23 15:10:37 +01:00
|
|
|
# it under the terms of Version 2 of the GNU General Public License
|
2002-07-06 00:24:40 +02:00
|
|
|
# as published by the Free Software Foundation.
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
# 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.
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
2003-02-23 15:10:37 +01:00
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
# If an error occurs while starting or restarting the firewall, the
|
|
|
|
# firewall is automatically stopped.
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
# The firewall uses configuration files in /etc/shorewall/ - skeleton
|
|
|
|
# files is included with the firewall.
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
# Commands are:
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2006-01-12 00:30:33 +01:00
|
|
|
# shorewall add <iface>[:<host>] zone Adds a host or subnet to a zone
|
|
|
|
# shorewall delete <iface>[:<host>] zone Deletes a host or subnet from a zone
|
2005-07-28 16:37:56 +02:00
|
|
|
# shorewall dump Dumps all Shorewall-related information
|
|
|
|
# for problem analysis
|
2005-07-09 07:45:05 +02:00
|
|
|
# shorewall start Starts the firewall
|
2002-07-06 00:24:40 +02:00
|
|
|
# shorewall restart Restarts the firewall
|
|
|
|
# shorewall stop Stops the firewall
|
2003-02-23 15:10:37 +01:00
|
|
|
# shorewall status Displays firewall status
|
2002-07-06 00:24:40 +02:00
|
|
|
# shorewall reset Resets iptables packet and
|
|
|
|
# byte counts
|
|
|
|
# shorewall clear Open the floodgates by
|
|
|
|
# removing all iptables rules
|
|
|
|
# and setting the three permanent
|
|
|
|
# chain policies to ACCEPT
|
2002-05-01 01:13:15 +02:00
|
|
|
# shorewall refresh Rebuild the common chain to
|
|
|
|
# compensate for a change of
|
|
|
|
# broadcast address on any "detect"
|
|
|
|
# interface.
|
2003-08-15 02:59:06 +02:00
|
|
|
# shorewall show <chain> [ <chain> ... ] Display the rules in each <chain> listed
|
2005-07-24 18:27:21 +02:00
|
|
|
# shorewall show actions Displays the available actions
|
2002-07-06 00:24:40 +02:00
|
|
|
# shorewall show log Print the last 20 log messages
|
|
|
|
# shorewall show connections Show the kernel's connection
|
|
|
|
# tracking table
|
|
|
|
# shorewall show nat Display the rules in the nat table
|
|
|
|
# shorewall show {mangle|tos} Display the rules in the mangle table
|
|
|
|
# shorewall show tc Display traffic control info
|
2002-12-10 21:42:19 +01:00
|
|
|
# shorewall show classifiers Display classifiers
|
2005-07-09 07:45:05 +02:00
|
|
|
# shorewall show capabilities Display iptables/kernel capabilities
|
2002-05-01 01:13:15 +02:00
|
|
|
# shorewall version Display the installed version id
|
2003-02-27 23:28:06 +01:00
|
|
|
# shorewall check Verify the more heavily-used
|
|
|
|
# configuration files.
|
2002-07-06 00:24:40 +02:00
|
|
|
# shorewall try <directory> [ <timeout> ] Try a new configuration and if
|
|
|
|
# it doesn't work, revert to the
|
|
|
|
# standard one. If a timeout is supplied
|
2002-05-01 01:13:15 +02:00
|
|
|
# the command reverts back to the
|
|
|
|
# standard configuration after that many
|
|
|
|
# seconds have elapsed after successfully
|
|
|
|
# starting the new configuration.
|
2002-06-04 17:08:50 +02:00
|
|
|
# shorewall logwatch [ refresh-interval ] Monitor the local log for Shorewall
|
|
|
|
# messages.
|
2002-07-06 00:24:40 +02:00
|
|
|
# shorewall drop <address> ... Temporarily drop all packets from the
|
2002-06-04 22:17:46 +02:00
|
|
|
# listed address(es)
|
2002-07-06 00:24:40 +02:00
|
|
|
# shorewall reject <address> ... Temporarily reject all packets from the
|
2002-06-04 22:17:46 +02:00
|
|
|
# listed address(es)
|
2003-02-23 15:10:37 +01:00
|
|
|
# shorewall allow <address> ... Reenable address(es) previously
|
2002-06-04 22:58:53 +02:00
|
|
|
# disabled with "drop" or "reject"
|
2005-07-09 06:45:32 +02:00
|
|
|
# shorewall save [ <file> ] Save the list of "rejected" and
|
2002-06-04 22:58:53 +02:00
|
|
|
# "dropped" addresses so that it will
|
|
|
|
# be automatically reinstated the
|
2002-06-11 22:14:58 +02:00
|
|
|
# next time that Shorewall starts.
|
2005-07-09 06:45:32 +02:00
|
|
|
# Save the current state so that 'shorewall
|
|
|
|
# restore' can be used.
|
|
|
|
#
|
|
|
|
# shorewall forget [ <file> ] Discard the data saved by 'shorewall save'
|
|
|
|
#
|
|
|
|
# shorewall restore [ <file> ] Restore the state of the firewall from
|
|
|
|
# previously saved information.
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2005-12-03 00:58:57 +01:00
|
|
|
# shorewall ipaddr { <address>/<cidr> | <address> <netmask> }
|
2003-07-05 19:14:21 +02:00
|
|
|
#
|
|
|
|
# Displays information about the network
|
|
|
|
# defined by the argument[s]
|
2003-07-06 15:24:23 +02:00
|
|
|
#
|
|
|
|
# shorewall iprange <address>-<address> Decomposes a range of IP addresses into
|
|
|
|
# a list of network/host addresses.
|
|
|
|
#
|
2005-12-03 00:58:57 +01:00
|
|
|
# shorewall ipdecimal { <address> | <integer> }
|
|
|
|
#
|
|
|
|
# Displays the decimal equivalent of an IP
|
|
|
|
# address and vice versa.
|
|
|
|
#
|
2005-07-09 07:55:29 +02:00
|
|
|
# shorewall safe-start Starts the firewall and promtp for a c
|
2005-08-02 18:46:30 +02:00
|
|
|
# confirmation to accept or reject the new
|
2005-07-09 07:55:29 +02:00
|
|
|
# configuration
|
|
|
|
#
|
2005-08-02 18:46:30 +02:00
|
|
|
# shorewall safe-restart Restarts the firewall and prompt for a
|
|
|
|
# confirmation to accept or reject the new
|
2005-07-09 07:55:29 +02:00
|
|
|
# configuration
|
|
|
|
#
|
2006-02-03 16:10:46 +01:00
|
|
|
# shorewall compile [ <directory> ] ]<filename>
|
|
|
|
# Compile a firewall program file.
|
2006-01-07 02:08:23 +01:00
|
|
|
#
|
2003-07-06 15:24:23 +02:00
|
|
|
# Fatal Error
|
|
|
|
#
|
|
|
|
fatal_error() # $@ = Message
|
|
|
|
{
|
|
|
|
echo " $@" >&2
|
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
# Display a chain if it exists
|
|
|
|
#
|
2003-02-25 17:21:41 +01:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
showfirstchain() # $1 = name of chain
|
|
|
|
{
|
|
|
|
awk \
|
2002-07-06 00:24:40 +02:00
|
|
|
'BEGIN {prnt=0; rslt=1; }; \
|
|
|
|
/^$/ { next; };\
|
|
|
|
/^Chain/ {if ( prnt == 1 ) { rslt=0; exit 0; }; };\
|
2002-05-01 01:13:15 +02:00
|
|
|
/Chain '$1'/ { prnt=1; }; \
|
2002-07-06 00:24:40 +02:00
|
|
|
{ if (prnt == 1) print; };\
|
2005-07-09 06:45:32 +02:00
|
|
|
END { exit rslt; }' $TMPFILE
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
showchain() # $1 = name of chain
|
|
|
|
{
|
|
|
|
if [ "$firstchain" = "Yes" ]; then
|
2002-05-30 14:55:47 +02:00
|
|
|
if showfirstchain $1; then
|
|
|
|
firstchain=
|
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
|
|
|
awk \
|
2002-07-06 00:24:40 +02:00
|
|
|
'BEGIN {prnt=0;};\
|
|
|
|
/^$|^ pkts/ { next; };\
|
|
|
|
/^Chain/ {if ( prnt == 1 ) exit; };\
|
|
|
|
/Chain '$1'/ { prnt=1; };\
|
2005-07-09 06:45:32 +02:00
|
|
|
{ if (prnt == 1) print; }' $TMPFILE
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2005-07-09 07:45:05 +02:00
|
|
|
#
|
2005-07-09 07:55:29 +02:00
|
|
|
# The 'awk' hack that compensates for bugs in iptables-save (or rather in the extension modules).
|
2005-07-09 07:45:05 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
iptablesbug()
|
|
|
|
{
|
2005-07-27 22:30:16 +02:00
|
|
|
if qt mywhich awk ; then
|
2005-07-09 07:45:05 +02:00
|
|
|
awk 'BEGIN {sline=""; };\
|
|
|
|
/^-j/ { print sline $0; next };\
|
|
|
|
/-m policy.*-j/ { print $0; next };\
|
|
|
|
/-m policy/ { sline=$0; next };\
|
2005-07-09 07:55:29 +02:00
|
|
|
/--mask ff/ { sub( /--mask ff/, "--mask 0xff" ) };\
|
2005-07-09 07:45:05 +02:00
|
|
|
{print ; sline="" }'
|
|
|
|
else
|
2005-07-26 01:08:09 +02:00
|
|
|
echo " WARNING: You don't have 'awk' on this system so the output of the save command may be unusable" >&2
|
2005-07-09 07:45:05 +02:00
|
|
|
cat
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
#
|
|
|
|
# Validate the value of RESTOREFILE
|
|
|
|
#
|
|
|
|
validate_restorefile() # $* = label
|
|
|
|
{
|
|
|
|
case $RESTOREFILE in
|
|
|
|
*/*)
|
2006-01-26 00:58:12 +01:00
|
|
|
error_message "ERROR: $@ must specify a simple file name: $RESTOREFILE"
|
|
|
|
exit 2
|
|
|
|
;;
|
|
|
|
.*)
|
|
|
|
error_message "ERROR: Reserved File Name: $RESTOREFILE"
|
2005-07-09 06:45:32 +02:00
|
|
|
exit 2
|
|
|
|
;;
|
2005-08-02 18:46:30 +02:00
|
|
|
esac
|
2005-07-09 06:45:32 +02:00
|
|
|
}
|
|
|
|
|
2002-10-23 18:48:40 +02:00
|
|
|
#
|
|
|
|
# Set the configuration variables from shorewall.conf
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
get_config() {
|
|
|
|
|
|
|
|
[ -z "$LOGFILE" ] && LOGFILE=/var/log/messages
|
|
|
|
|
|
|
|
if [ ! -f $LOGFILE ]; then
|
|
|
|
echo "LOGFILE ($LOGFILE) does not exist!" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
#
|
|
|
|
# See if we have a real version of "tail" -- use separate redirection so
|
|
|
|
# that ash (aka /bin/sh on LRP) doesn't crap
|
|
|
|
#
|
|
|
|
if ( tail -n5 $LOGFILE > /dev/null 2> /dev/null ) ; then
|
2002-07-06 00:24:40 +02:00
|
|
|
realtail="Yes"
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
2002-07-06 00:24:40 +02:00
|
|
|
realtail=""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
[ -n "$FW" ] || FW=fw
|
2003-04-25 18:22:18 +02:00
|
|
|
|
2003-05-21 23:36:05 +02:00
|
|
|
[ -n "LOGFORMAT" ] && LOGFORMAT="${LOGFORMAT%%%*}"
|
|
|
|
|
|
|
|
[ -n "$LOGFORMAT" ] || LOGFORMAT="Shorewall:"
|
2003-06-28 17:22:22 +02:00
|
|
|
|
2005-07-09 07:45:05 +02:00
|
|
|
if [ -n "$IPTABLES" ]; then
|
|
|
|
if [ ! -e "$IPTABLES" ]; then
|
|
|
|
echo " ERROR: The program specified in IPTABLES does not exist or is not executable" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
else
|
2005-07-27 22:30:16 +02:00
|
|
|
IPTABLES=$(mywhich iptables 2> /dev/null)
|
2005-07-09 07:45:05 +02:00
|
|
|
if [ -z "$IPTABLES" ] ; then
|
|
|
|
echo " ERROR: Can't find iptables executable" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2003-06-28 17:22:22 +02:00
|
|
|
if [ -n "$SHOREWALL_SHELL" ]; then
|
|
|
|
if [ ! -e "$SHOREWALL_SHELL" ]; then
|
2005-07-09 06:45:32 +02:00
|
|
|
echo " ERROR: The program specified in SHOREWALL_SHELL does not exist or is not executable" >&2
|
2003-06-28 17:22:22 +02:00
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
fi
|
2005-07-09 06:45:32 +02:00
|
|
|
|
|
|
|
[ -n "$RESTOREFILE" ] || RESTOREFILE=restore
|
|
|
|
|
|
|
|
validate_restorefile RESTOREFILE
|
|
|
|
|
|
|
|
export RESTOREFILE
|
|
|
|
|
2005-07-15 22:50:01 +02:00
|
|
|
case $STARTUP_ENABLED in
|
|
|
|
[Nn][Oo])
|
|
|
|
echo " WARNING: Shorewall startup is disabled. To enable startup, set STARTUP_ENABLED=Yes in /etc/shorewall/shorewall.conf" >&2
|
2006-02-04 04:45:03 +01:00
|
|
|
STARTUP_ENABLED=
|
2005-07-15 22:50:01 +02:00
|
|
|
;;
|
2006-02-04 04:45:03 +01:00
|
|
|
[Yy][Ee][Ss])
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if [ -n "$STARTUP_ENABLED" ]; then
|
|
|
|
echo " ERROR: Invalid Value for STARTUP_ENABLE: $STARTUP_ENABLED" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
2006-02-04 04:48:17 +01:00
|
|
|
;;
|
2005-07-15 22:50:01 +02:00
|
|
|
esac
|
2005-07-26 01:08:09 +02:00
|
|
|
|
2005-12-01 20:18:15 +01:00
|
|
|
case ${TC_ENABLED:=Internal} in
|
2005-12-01 19:24:19 +01:00
|
|
|
[Nn][Oo])
|
|
|
|
TC_ENABLED=
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-01-24 18:44:19 +01:00
|
|
|
[ -n "${VERBOSITY:=2}" ]
|
|
|
|
|
2006-03-24 00:26:41 +01:00
|
|
|
VERBOSE=$(($VERBOSE_OFFSET + $VERBOSITY))
|
2006-01-24 18:44:19 +01:00
|
|
|
|
|
|
|
export VERBOSE
|
2006-01-24 16:41:38 +01:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
2005-07-09 07:45:05 +02:00
|
|
|
#
|
|
|
|
# Clear descriptor 1 if it is a terminal
|
|
|
|
#
|
|
|
|
clear_term() {
|
|
|
|
[ -t 1 ] && clear
|
|
|
|
}
|
|
|
|
|
2002-10-23 18:48:40 +02:00
|
|
|
#
|
|
|
|
# Delay $timeout seconds -- if we're running on a recent bash2 then allow
|
|
|
|
# <enter> to terminate the delay
|
|
|
|
#
|
2003-02-23 15:10:37 +01:00
|
|
|
timed_read ()
|
2002-05-01 01:13:15 +02:00
|
|
|
{
|
|
|
|
read -t $timeout foo 2> /dev/null
|
|
|
|
|
|
|
|
test $? -eq 2 && sleep $timeout
|
|
|
|
}
|
|
|
|
|
2002-10-23 18:48:40 +02:00
|
|
|
#
|
|
|
|
# Display the last $1 packets logged
|
|
|
|
#
|
2003-02-23 15:10:37 +01:00
|
|
|
packet_log() # $1 = number of messages
|
2002-05-01 01:13:15 +02:00
|
|
|
{
|
|
|
|
local options
|
|
|
|
|
2002-06-02 19:05:51 +02:00
|
|
|
[ -n "$realtail" ] && options="-n$1"
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2006-01-24 17:15:27 +01:00
|
|
|
if [ $VERBOSE -gt 2 ]; then
|
2005-07-09 07:45:05 +02:00
|
|
|
grep "${LOGFORMAT}" $LOGFILE | \
|
|
|
|
sed s/" kernel:"// | \
|
|
|
|
sed s/" $host $LOGFORMAT"/" "/ | \
|
|
|
|
tail $options
|
|
|
|
else
|
|
|
|
grep "${LOGFORMAT}" $LOGFILE | \
|
|
|
|
sed s/" kernel:"// | \
|
|
|
|
sed s/" $host $LOGFORMAT"/" "/ | \
|
|
|
|
sed 's/MAC=.* SRC=/SRC=/' | \
|
|
|
|
tail $options
|
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
2002-10-23 18:48:40 +02:00
|
|
|
#
|
|
|
|
# Show traffic control information
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
show_tc() {
|
|
|
|
|
|
|
|
show_one_tc() {
|
2002-07-06 00:24:40 +02:00
|
|
|
local device=${1%@*}
|
2005-07-09 06:45:32 +02:00
|
|
|
qdisc=$(tc qdisc list dev $device)
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
if [ -n "$qdisc" ]; then
|
|
|
|
echo Device $device:
|
|
|
|
tc -s -d qdisc show dev $device
|
|
|
|
tc -s -d class show dev $device
|
|
|
|
echo
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
ip link list | \
|
|
|
|
while read inx interface details; do
|
|
|
|
case $inx in
|
|
|
|
[0-9]*)
|
|
|
|
show_one_tc ${interface%:}
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-12-10 21:42:19 +01:00
|
|
|
#
|
|
|
|
# Show classifier information
|
|
|
|
#
|
|
|
|
show_classifiers() {
|
|
|
|
|
|
|
|
show_one_classifier() {
|
|
|
|
local device=${1%@*}
|
2005-07-09 06:45:32 +02:00
|
|
|
qdisc=$(tc qdisc list dev $device)
|
2002-12-10 21:42:19 +01:00
|
|
|
|
|
|
|
if [ -n "$qdisc" ]; then
|
|
|
|
echo Device $device:
|
|
|
|
tc -s filter ls dev $device
|
|
|
|
echo
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
ip link list | \
|
|
|
|
while read inx interface details; do
|
|
|
|
case $inx in
|
|
|
|
[0-9]*)
|
|
|
|
show_one_classifier ${interface%:}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
}
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-10-23 18:48:40 +02:00
|
|
|
#
|
|
|
|
# Watch the Firewall Log
|
|
|
|
#
|
2002-06-02 19:05:51 +02:00
|
|
|
logwatch() # $1 = timeout -- if negative, prompt each time that
|
2002-07-06 00:24:40 +02:00
|
|
|
# an 'interesting' packet count changes
|
2002-06-02 19:05:51 +02:00
|
|
|
{
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
host=$(echo $HOSTNAME | sed 's/\..*$//')
|
2005-07-09 07:45:05 +02:00
|
|
|
oldrejects=$($IPTABLES -L -v -n | grep 'LOG')
|
2003-02-23 15:10:37 +01:00
|
|
|
|
2002-06-02 19:05:51 +02:00
|
|
|
if [ $1 -lt 0 ]; then
|
|
|
|
timeout=$((- $1))
|
|
|
|
pause="Yes"
|
|
|
|
else
|
|
|
|
pause="No"
|
|
|
|
timeout=$1
|
|
|
|
fi
|
|
|
|
|
2005-07-27 22:30:16 +02:00
|
|
|
qt mywhich awk && haveawk=Yes || haveawk=
|
2002-06-02 19:05:51 +02:00
|
|
|
|
|
|
|
while true; do
|
2005-07-09 07:45:05 +02:00
|
|
|
clear_term
|
2005-07-09 06:45:32 +02:00
|
|
|
echo "$banner $(date)"
|
2002-11-11 00:15:53 +01:00
|
|
|
echo
|
2002-06-02 19:05:51 +02:00
|
|
|
|
2002-11-11 00:15:53 +01:00
|
|
|
echo "Dropped/Rejected Packet Log"
|
|
|
|
echo
|
2002-06-02 19:05:51 +02:00
|
|
|
|
2002-09-18 01:53:46 +02:00
|
|
|
show_reset
|
|
|
|
|
2005-07-09 07:45:05 +02:00
|
|
|
rejects=$($IPTABLES -L -v -n | grep 'LOG')
|
2002-06-02 19:05:51 +02:00
|
|
|
|
|
|
|
if [ "$rejects" != "$oldrejects" ]; then
|
|
|
|
oldrejects="$rejects"
|
2002-11-11 00:15:53 +01:00
|
|
|
|
2002-11-11 17:46:50 +01:00
|
|
|
$RING_BELL
|
2002-11-11 00:15:53 +01:00
|
|
|
|
2002-06-02 19:05:51 +02:00
|
|
|
packet_log 40
|
|
|
|
|
|
|
|
if [ "$pause" = "Yes" ]; then
|
2002-11-11 00:15:53 +01:00
|
|
|
echo
|
2002-11-11 17:46:50 +01:00
|
|
|
echo $ECHO_N 'Enter any character to continue: '
|
2002-06-02 19:05:51 +02:00
|
|
|
read foo
|
|
|
|
else
|
|
|
|
timed_read
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo
|
|
|
|
packet_log 40
|
|
|
|
timed_read
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2005-07-09 07:55:29 +02:00
|
|
|
#
|
|
|
|
# Save currently running configuration
|
|
|
|
#
|
|
|
|
save_config() {
|
2005-07-29 21:06:37 +02:00
|
|
|
if shorewall_is_started ; then
|
2005-07-09 07:55:29 +02:00
|
|
|
[ -d /var/lib/shorewall ] || mkdir -p /var/lib/shorewall
|
2005-09-30 18:54:24 +02:00
|
|
|
|
2005-07-09 07:55:29 +02:00
|
|
|
if [ -f $RESTOREPATH -a ! -x $RESTOREPATH ]; then
|
|
|
|
echo " ERROR: $RESTOREPATH exists and is not a saved Shorewall configuration"
|
|
|
|
else
|
|
|
|
case $RESTOREFILE in
|
|
|
|
save|restore-base)
|
|
|
|
echo " ERROR: Reserved file name: $RESTOREFILE"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if $IPTABLES -L dynamic -n > /var/lib/shorewall/save; then
|
|
|
|
echo " Dynamic Rules Saved"
|
2006-01-25 05:18:52 +01:00
|
|
|
if [ -f /var/lib/shorewall/.restore ]; then
|
2006-01-25 18:33:38 +01:00
|
|
|
if iptables-save | iptablesbug > /var/lib/shorewall/restore-$$; then
|
|
|
|
cp -f /var/lib/shorewall/.restore $RESTOREPATH
|
|
|
|
mv -f /var/lib/shorewall/restore-$$ ${RESTOREPATH}-iptables
|
|
|
|
chmod +x $RESTOREPATH
|
|
|
|
echo " Currently-running Configuration Saved to $RESTOREPATH"
|
|
|
|
|
|
|
|
rm -f ${RESTOREPATH}-ipsets
|
|
|
|
|
|
|
|
case ${SAVE_IPSETS:-No} in
|
|
|
|
[Yy][Ee][Ss])
|
|
|
|
RESTOREPATH=${RESTOREPATH}-ipsets
|
|
|
|
|
|
|
|
f=/var/lib/shorewall/restore-$$
|
|
|
|
|
|
|
|
echo "#!/bin/sh" > $f
|
|
|
|
echo "#This ipset restore file generated $(date) by Shorewall $version" >> $f
|
|
|
|
echo >> $f
|
|
|
|
echo ". /usr/share/shorewall/functions" >> $f
|
|
|
|
echo >> $f
|
|
|
|
grep '^MODULE' /var/lib/shorewall/restore-base >> $f
|
|
|
|
echo "reload_kernel_modules << __EOF__" >> $f
|
|
|
|
grep 'loadmodule ip_set' /var/lib/shorewall/restore-base >> $f
|
|
|
|
echo "__EOF__" >> $f
|
|
|
|
echo >> $f
|
|
|
|
echo "ipset -U :all: :all:" >> $f
|
|
|
|
echo "ipset -F" >> $f
|
|
|
|
echo "ipset -X" >> $f
|
|
|
|
echo "ipset -R << __EOF__" >> $f
|
|
|
|
ipset -S >> $f
|
|
|
|
echo "__EOF__" >> $f
|
|
|
|
mv -f $f $RESTOREPATH
|
|
|
|
chmod +x $RESTOREPATH
|
|
|
|
echo " Current Ipset Contents Saved to $RESTOREPATH"
|
|
|
|
;;
|
|
|
|
[Nn][Oo])
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo " WARNING: Invalid value ($SAVE_IPSETS) for SAVE_IPSETS. Ipset contents not saved"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
rm -f /var/lib/shorewall/restore-$$
|
|
|
|
echo " ERROR: Currently-running Configuration Not Saved"
|
|
|
|
fi
|
2005-07-09 07:55:29 +02:00
|
|
|
else
|
2006-01-25 18:33:38 +01:00
|
|
|
echo " ERROR: /var/lib/shorewall/.restored oes not exist"
|
2005-07-09 07:55:29 +02:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Error Saving the Dynamic Rules"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Shorewall isn't started"
|
|
|
|
fi
|
2005-08-02 18:46:30 +02:00
|
|
|
|
2005-07-09 07:55:29 +02:00
|
|
|
}
|
2006-01-26 00:58:12 +01:00
|
|
|
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
|
|
|
# Start Command Executor
|
|
|
|
#
|
2006-01-19 01:20:23 +01:00
|
|
|
start_command() {
|
|
|
|
local finished=0
|
|
|
|
|
2006-01-24 00:30:58 +01:00
|
|
|
do_it() {
|
|
|
|
[ -n "$nolock" ] || mutex_on
|
|
|
|
|
|
|
|
progress_message3 "Compiling..."
|
|
|
|
|
|
|
|
if $SHOREWALL_SHELL /usr/share/shorewall/compiler $debugging $nolock compile /var/lib/shorewall/.start; then
|
|
|
|
/var/lib/shorewall/.start start
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -n "$nolock" ] || mutex_off
|
|
|
|
}
|
|
|
|
|
|
|
|
if shorewall_is_started; then
|
|
|
|
error_message "Shorewall is already running"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2006-02-04 04:45:03 +01:00
|
|
|
if [ -z "$STARTUP_ENABLED" ]; then
|
|
|
|
error_message "ERROR: Startup is disabled"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
|
|
|
f*)
|
|
|
|
FAST=Yes
|
|
|
|
option=${option#f}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
case $# in
|
|
|
|
0)
|
|
|
|
;;
|
|
|
|
1)
|
|
|
|
[ -n "$SHOREWALL_DIR" -o -n "$FAST" ] && usage 2
|
|
|
|
|
|
|
|
if [ ! -d $1 ]; then
|
|
|
|
if [ -e $1 ]; then
|
|
|
|
echo "$1 is not a directory" >&2 && exit 2
|
|
|
|
else
|
|
|
|
echo "Directory $1 does not exist" >&2 && exit 2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
SHOREWALL_DIR=$
|
|
|
|
export SHOREWALL_DIR
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
export NOROUTES
|
|
|
|
|
|
|
|
if [ -n "$FAST" ]; then
|
|
|
|
if qt mywhich make; then
|
2006-03-12 01:19:33 +01:00
|
|
|
#
|
|
|
|
# RESTOREFILE is exported by get_config()
|
|
|
|
#
|
|
|
|
make -qf /etc/shorewall/Makefile || FAST=
|
2006-01-19 01:20:23 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$FAST" ]; then
|
|
|
|
|
|
|
|
RESTOREPATH=/var/lib/shorewall/$RESTOREFILE
|
|
|
|
|
|
|
|
if [ -x $RESTOREPATH ]; then
|
|
|
|
if [ -x ${RESTOREPATH}-ipsets ]; then
|
|
|
|
echo Restoring Ipsets...
|
|
|
|
#
|
|
|
|
# We must purge iptables to be sure that there are no
|
|
|
|
# references to ipsets
|
|
|
|
#
|
|
|
|
iptables -F
|
|
|
|
iptables -X
|
|
|
|
${RESTOREPATH}-ipsets
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo Restoring Shorewall...
|
2006-01-25 23:33:50 +01:00
|
|
|
$RESTOREPATH restore
|
2006-01-19 01:20:23 +01:00
|
|
|
date > /var/lib/shorewall/restarted
|
|
|
|
echo Shorewall restored from $RESTOREPATH
|
|
|
|
else
|
2006-01-24 00:30:58 +01:00
|
|
|
do_it
|
2006-01-19 01:20:23 +01:00
|
|
|
fi
|
|
|
|
else
|
2006-01-24 00:30:58 +01:00
|
|
|
do_it
|
2006-01-19 01:20:23 +01:00
|
|
|
fi
|
|
|
|
else
|
2006-01-24 00:30:58 +01:00
|
|
|
do_it
|
2006-01-19 01:20:23 +01:00
|
|
|
fi
|
|
|
|
}
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
|
|
|
# Compile Command Executor
|
|
|
|
#
|
2006-01-19 01:20:23 +01:00
|
|
|
compile_command() {
|
|
|
|
local finished=0
|
|
|
|
|
|
|
|
while [ $finished -eq 0 ]; do
|
|
|
|
[ $# -eq 0 ] && usage 1
|
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
2006-02-03 18:08:37 +01:00
|
|
|
shift
|
2006-01-19 01:20:23 +01:00
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
[ -z "$option" ] && usage 1
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
e*)
|
|
|
|
EXPORT=Yes
|
|
|
|
option=${option#e}
|
|
|
|
;;
|
2006-02-03 18:08:37 +01:00
|
|
|
d)
|
|
|
|
[ -n "$DISTRIBUTION" -o $# -lt 2 ] && usage 2
|
|
|
|
|
|
|
|
[ -f /usr/share/shorewall/prog.header.$1 -a -f /usr/share/shorewall/prog.footer.$1 ] || \
|
|
|
|
{ echo "Distribution $1 is not supported" >&2 && exit 2; }
|
|
|
|
DISTRIBUTION=".$1"
|
|
|
|
export DISTRIBUTION
|
|
|
|
shift
|
|
|
|
option=${option#d}
|
|
|
|
;;
|
2006-01-19 01:20:23 +01:00
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
file=
|
|
|
|
|
|
|
|
case $# in
|
|
|
|
1)
|
|
|
|
file=$1
|
|
|
|
;;
|
|
|
|
2)
|
|
|
|
[ -n "$SHOREWALL_DIR" ] && usage 2
|
|
|
|
|
|
|
|
if [ ! -d $1 ]; then
|
|
|
|
if [ -e $1 ]; then
|
|
|
|
echo "$1 is not a directory" >&2 && exit 2
|
|
|
|
else
|
|
|
|
echo "Directory $1 does not exist" >&2 && exit 2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
SHOREWALL_DIR=$1
|
|
|
|
export SHOREWALL_DIR
|
|
|
|
file=$2
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
export EXPORT
|
|
|
|
|
2006-02-03 22:39:00 +01:00
|
|
|
progress_message3 "Compiling..."
|
|
|
|
|
2006-02-03 16:10:46 +01:00
|
|
|
exec $SHOREWALL_SHELL /usr/share/shorewall/compiler $debugging compile $file
|
2006-01-19 01:20:23 +01:00
|
|
|
}
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
2006-01-24 00:30:58 +01:00
|
|
|
# Check Command Executor
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
2006-01-24 00:30:58 +01:00
|
|
|
check_command() {
|
2006-01-19 01:20:23 +01:00
|
|
|
local finished=0
|
|
|
|
|
|
|
|
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
2006-02-03 16:27:54 +01:00
|
|
|
e*)
|
|
|
|
EXPORT=Yes
|
|
|
|
option=${option#e}
|
2006-01-23 02:41:24 +01:00
|
|
|
;;
|
2006-01-19 01:20:23 +01:00
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
case $# in
|
|
|
|
0)
|
|
|
|
;;
|
|
|
|
1)
|
|
|
|
[ -n "$SHOREWALL_DIR" ] && usage 2
|
|
|
|
|
|
|
|
if [ ! -d $1 ]; then
|
|
|
|
if [ -e $1 ]; then
|
|
|
|
echo "$1 is not a directory" >&2 && exit 2
|
|
|
|
else
|
|
|
|
echo "Directory $1 does not exist" >&2 && exit 2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
SHOREWALL_DIR=$1
|
|
|
|
export SHOREWALL_DIR
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-02-10 19:45:05 +01:00
|
|
|
export EXPORT
|
2006-01-19 01:20:23 +01:00
|
|
|
|
2006-02-03 22:39:00 +01:00
|
|
|
progress_message3 "Checking..."
|
|
|
|
|
2006-01-24 00:30:58 +01:00
|
|
|
exec $SHOREWALL_SHELL /usr/share/shorewall/compiler $debugging $nolock check
|
2006-01-19 01:20:23 +01:00
|
|
|
}
|
2006-01-24 00:30:58 +01:00
|
|
|
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
2006-01-24 00:30:58 +01:00
|
|
|
# Restart Command Executor
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
2006-01-24 00:30:58 +01:00
|
|
|
restart_command() {
|
2006-01-19 01:20:23 +01:00
|
|
|
local finished=0
|
|
|
|
|
|
|
|
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
|
|
|
n*)
|
|
|
|
NOROUTES=Yes
|
|
|
|
option=${option#n}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
case $# in
|
|
|
|
0)
|
|
|
|
;;
|
|
|
|
1)
|
|
|
|
[ -n "$SHOREWALL_DIR" ] && usage 2
|
|
|
|
|
|
|
|
if [ ! -d $1 ]; then
|
|
|
|
if [ -e $1 ]; then
|
|
|
|
echo "$1 is not a directory" >&2 && exit 2
|
|
|
|
else
|
|
|
|
echo "Directory $1 does not exist" >&2 && exit 2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
SHOREWALL_DIR=$1
|
|
|
|
export SHOREWALL_DIR
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-02-04 04:45:03 +01:00
|
|
|
if [ -z "$STARTUP_ENABLED" ]; then
|
|
|
|
error_message "ERROR: Startup is disabled"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
export NOROUTES
|
|
|
|
|
|
|
|
[ -n "$nolock" ] || mutex_on
|
|
|
|
|
2006-01-23 21:44:31 +01:00
|
|
|
progress_message3 "Compiling..."
|
|
|
|
|
2006-01-24 00:30:58 +01:00
|
|
|
if $SHOREWALL_SHELL /usr/share/shorewall/compiler $debugging $nolock compile /var/lib/shorewall/.restart; then
|
|
|
|
/var/lib/shorewall/.restart restart
|
2006-01-19 01:20:23 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
[ -n "$nolock" ] || mutex_off
|
|
|
|
}
|
2006-01-24 00:30:58 +01:00
|
|
|
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
|
|
|
# Show Command Executor
|
|
|
|
#
|
2006-01-19 01:20:23 +01:00
|
|
|
show_command() {
|
|
|
|
local finished=0
|
|
|
|
|
|
|
|
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
|
|
|
v*)
|
2006-03-24 00:26:41 +01:00
|
|
|
VERBOSE_OFFSET=$(($VERBOSE_OFFSET + 1 ))
|
2006-01-24 17:10:41 +01:00
|
|
|
option=${option#v}
|
2006-01-19 01:20:23 +01:00
|
|
|
;;
|
2006-02-03 16:27:54 +01:00
|
|
|
x*)
|
|
|
|
IPT_OPTIONS="-xnv"
|
|
|
|
option=${option#x}
|
|
|
|
;;
|
2006-01-19 01:20:23 +01:00
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
[ -n "$debugging" ] && set -x
|
|
|
|
case "$1" in
|
|
|
|
connections)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
echo "Shorewall-$version Connections at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
cat /proc/net/ip_conntrack
|
|
|
|
;;
|
|
|
|
nat)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
echo "Shorewall-$version NAT Table at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
show_reset
|
|
|
|
$IPTABLES -t nat -L $IPT_OPTIONS
|
|
|
|
;;
|
|
|
|
tos|mangle)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
echo "Shorewall-$version Mangle Table at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
show_reset
|
|
|
|
$IPTABLES -t mangle -L $IPT_OPTIONS
|
|
|
|
;;
|
|
|
|
log)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
echo "Shorewall-$version Log at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
show_reset
|
|
|
|
host=$(echo $HOSTNAME | sed 's/\..*$//')
|
|
|
|
packet_log 20
|
|
|
|
;;
|
|
|
|
tc)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
echo "Shorewall-$version Traffic Control at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
show_tc
|
|
|
|
;;
|
|
|
|
classifiers)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
echo "Shorewall-$version Clasifiers at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
show_classifiers
|
|
|
|
;;
|
|
|
|
zones)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
if [ -f /var/lib/shorewall/zones ]; then
|
|
|
|
echo "Shorewall-$version Zones at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
while read zone type hosts; do
|
|
|
|
echo "$zone ($type)"
|
|
|
|
for host in $hosts; do
|
|
|
|
echo " $host"
|
|
|
|
done
|
|
|
|
done < /var/lib/shorewall/zones
|
|
|
|
echo
|
|
|
|
else
|
|
|
|
echo " ERROR: /var/lib/shorewall/zones does not exist" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
capabilities)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
determine_capabilities
|
2006-02-18 16:22:03 +01:00
|
|
|
VERBOSE=2
|
2006-01-19 01:20:23 +01:00
|
|
|
report_capabilities
|
|
|
|
;;
|
|
|
|
actions)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
echo "allowBcast # Silently Allow Broadcast/multicast"
|
|
|
|
echo "dropBcast # Silently Drop Broadcast/multicast"
|
|
|
|
echo "dropNotSyn # Silently Drop Non-syn TCP packets"
|
|
|
|
echo "rejNotSyn # Silently Reject Non-syn TCP packets"
|
|
|
|
echo "dropInvalid # Silently Drop packets that are in the INVALID conntrack state"
|
|
|
|
echo "allowInvalid # Accept packets that are in the INVALID conntrack state."
|
|
|
|
echo "allowoutUPnP # Allow traffic from local command 'upnpd'"
|
|
|
|
echo "allowinUPnP # Allow UPnP inbound (to firewall) traffic"
|
|
|
|
echo "forwardUPnP # Allow traffic that upnpd has redirected from"
|
|
|
|
cat /usr/share/shorewall/actions.std /etc/shorewall/actions | grep -Ev '^\#|^$'
|
|
|
|
;;
|
|
|
|
macros)
|
|
|
|
[ $# -gt 1 ] && usage 1
|
|
|
|
for macro in /usr/share/shorewall/macro.*; do
|
|
|
|
foo=`grep 'This macro' $macro | head -n 1`
|
|
|
|
if [ -n "$foo" ]; then
|
|
|
|
macro=${macro#*.}
|
|
|
|
foo=${foo%.*}
|
|
|
|
echo " $macro ${foo#\#}" | sed 's/This macro //'
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Shorewall-$version $([ $# -gt 0 ] && echo Chains || echo Chain) $* at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
show_reset
|
|
|
|
if [ $# -gt 0 ]; then
|
|
|
|
for chain in $*; do
|
|
|
|
$IPTABLES -L $chain $IPT_OPTIONS
|
|
|
|
done
|
|
|
|
else
|
|
|
|
$IPTABLES -L $IPT_OPTIONS
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
|
|
|
# Dump Command Executor
|
|
|
|
#
|
2006-01-19 01:20:23 +01:00
|
|
|
dump_command() {
|
|
|
|
local finished=0
|
|
|
|
|
|
|
|
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
2006-02-03 16:27:54 +01:00
|
|
|
x*)
|
|
|
|
IPT_OPTIONS="-xnv"
|
|
|
|
option=${option#x}
|
2006-01-19 01:20:23 +01:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
[ -n "$debugging" ] && set -x
|
|
|
|
[ $# -eq 0 ] || usage 1
|
|
|
|
clear_term
|
|
|
|
echo "Shorewall-$version Dump at $HOSTNAME - $(date)"
|
|
|
|
echo
|
|
|
|
show_reset
|
|
|
|
host=$(echo $HOSTNAME | sed 's/\..*$//')
|
|
|
|
$IPTABLES -L $IPT_OPTIONS
|
|
|
|
echo
|
|
|
|
packet_log 20
|
|
|
|
|
|
|
|
heading "NAT Table"
|
|
|
|
$IPTABLES -t nat -L $IPT_OPTIONS
|
|
|
|
|
|
|
|
heading "Mangle Table"
|
|
|
|
$IPTABLES -t mangle -L $IPT_OPTIONS
|
|
|
|
echo
|
|
|
|
cat /proc/net/ip_conntrack
|
|
|
|
|
|
|
|
heading "IP Configuration"
|
|
|
|
ip addr ls
|
|
|
|
|
|
|
|
heading "IP Stats"
|
|
|
|
ip -stat link ls
|
|
|
|
|
|
|
|
if qt mywhich brctl; then
|
|
|
|
heading "Bridges"
|
|
|
|
brctl show
|
|
|
|
fi
|
|
|
|
|
|
|
|
heading "/proc"
|
|
|
|
show_proc /proc/version
|
|
|
|
show_proc /proc/sys/net/ipv4/ip_forward
|
|
|
|
show_proc /proc/sys/net/ipv4/icmp_echo_ignore_all
|
|
|
|
|
|
|
|
for directory in /proc/sys/net/ipv4/conf/*; do
|
|
|
|
for file in proxy_arp arp_filter arp_ignore rp_filter log_martians; do
|
|
|
|
show_proc $directory/$file
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -n "$(ip rule ls)" ]; then
|
|
|
|
heading "Routing Rules"
|
|
|
|
ip rule ls
|
|
|
|
ip rule ls | while read rule; do
|
|
|
|
echo ${rule##* }
|
|
|
|
done | sort -u | while read table; do
|
|
|
|
heading "Table $table:"
|
|
|
|
ip route ls table $table
|
|
|
|
done
|
|
|
|
else
|
|
|
|
heading "Routing Table"
|
|
|
|
ip route ls
|
|
|
|
fi
|
|
|
|
|
|
|
|
heading "ARP"
|
|
|
|
arp -na
|
|
|
|
|
|
|
|
if qt mywhich lsmod; then
|
|
|
|
heading "Modules"
|
|
|
|
lsmod | grep -E '^ip_|^ipt_|^iptable_'
|
|
|
|
fi
|
|
|
|
|
|
|
|
determine_capabilities
|
|
|
|
echo
|
|
|
|
report_capabilities
|
|
|
|
|
|
|
|
if [ -n "$TC_ENABLED" ]; then
|
|
|
|
echo
|
|
|
|
echo "Traffic Control"
|
|
|
|
echo
|
|
|
|
show_tc
|
|
|
|
echo "Traffic Filters"
|
|
|
|
echo
|
|
|
|
show_classifiers
|
|
|
|
fi
|
|
|
|
}
|
2006-01-24 16:24:20 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Safe-start/safe-restart Command Executor
|
|
|
|
#
|
|
|
|
safe_commands() {
|
|
|
|
local finished=0
|
|
|
|
|
|
|
|
# test is the shell supports timed read
|
|
|
|
read -t 0 junk 2> /dev/null
|
|
|
|
if [ $? -eq 2 -a ! -x /bin/bash ];then
|
|
|
|
echo "Your shell does not support a feature required to execute this command".
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
|
|
|
n*)
|
|
|
|
NOROUTES=Yes
|
|
|
|
option=${option#n}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
[ $# -eq 0 ] || usage 2
|
|
|
|
|
2006-02-04 04:45:03 +01:00
|
|
|
if [ -z "$STARTUP_ENABLED" ]; then
|
|
|
|
error_message "ERROR: Startup is disabled"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2006-01-24 16:24:20 +01:00
|
|
|
mutex_on
|
|
|
|
|
|
|
|
if shorewall_is_started; then
|
|
|
|
running=Yes
|
|
|
|
else
|
|
|
|
running=
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$COMMAND" = "safe-start" -a -n "$running" ]; then
|
|
|
|
# the command is safe-start but the firewall is already running
|
|
|
|
error_message "Shorewall is already started"
|
|
|
|
mutex_off
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$COMMAND" = "safe-start" -o -z "$running" ]; then
|
|
|
|
# the command is safe-start or shorewall is not started yet
|
|
|
|
command="start"
|
|
|
|
else
|
|
|
|
# the command is safe-restart and the firewall is already running
|
|
|
|
command="restart"
|
|
|
|
fi
|
|
|
|
|
2006-02-03 22:39:00 +01:00
|
|
|
progress_message3 "Compiling..."
|
|
|
|
|
2006-01-24 16:24:20 +01:00
|
|
|
if ! $SHOREWALL_SHELL /usr/share/shorewall/compiler $debugging nolock compile /var/lib/shorewall/.$command; then
|
|
|
|
status=$?
|
|
|
|
mutex_off
|
|
|
|
exit $status
|
|
|
|
fi
|
|
|
|
|
2006-01-25 23:33:50 +01:00
|
|
|
RESTOREFILE=.safe
|
2006-01-24 16:24:20 +01:00
|
|
|
RESTOREPATH=/var/lib/shorewall/.safe
|
|
|
|
|
|
|
|
save_config
|
|
|
|
|
2006-02-03 22:39:00 +01:00
|
|
|
case $command in
|
|
|
|
start)
|
|
|
|
progress_message3 "Starting..."
|
|
|
|
;;
|
|
|
|
restart)
|
|
|
|
progress_message3 "Restarting..."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-01-24 16:24:20 +01:00
|
|
|
/var/lib/shorewall/.$command $command
|
|
|
|
|
|
|
|
echo -n "Do you want to accept the new firewall configuration? [y/n] "
|
|
|
|
|
|
|
|
if read_yesno_with_timeout; then
|
|
|
|
echo "New configuration has been accepted"
|
|
|
|
else
|
|
|
|
if [ "$command" = "restart" ]; then
|
2006-01-25 23:33:50 +01:00
|
|
|
/var/lib/shorewall/.safe restore
|
2006-01-24 16:24:20 +01:00
|
|
|
else
|
|
|
|
/var/lib/shorewall/.$command clear
|
|
|
|
fi
|
|
|
|
|
|
|
|
mutex_off
|
|
|
|
echo "New configuration has been rejected and the old one restored"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
mutex_off
|
|
|
|
[ $? -eq 0 ] && [ -n "$SUBSYSLOCK" ] && touch $SUBSYSLOCK
|
|
|
|
}
|
|
|
|
|
2006-01-22 03:35:15 +01:00
|
|
|
#
|
|
|
|
# Restore Comand Executor
|
|
|
|
#
|
2006-01-19 01:20:23 +01:00
|
|
|
restore_command() {
|
|
|
|
local finished=0
|
|
|
|
|
|
|
|
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
|
|
|
n*)
|
|
|
|
NOROUTES=Yes
|
|
|
|
option=${option#n}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
case $# in
|
|
|
|
0)
|
|
|
|
;;
|
|
|
|
1)
|
|
|
|
RESTOREFILE="$1"
|
|
|
|
validate_restorefile '<restore file>'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-02-04 04:45:03 +01:00
|
|
|
if [ -z "$STARTUP_ENABLED" ]; then
|
|
|
|
error_message "ERROR: Startup is disabled"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
RESTOREPATH=/var/lib/shorewall/$RESTOREFILE
|
|
|
|
|
|
|
|
export NOROUTES
|
|
|
|
|
|
|
|
[ -n "$nolock" ] || mutex_on
|
|
|
|
|
|
|
|
if [ -x $RESTOREPATH ]; then
|
|
|
|
if [ -x ${RESTOREPATH}-ipsets ] ; then
|
|
|
|
echo Restoring Ipsets...
|
|
|
|
iptables -F
|
|
|
|
iptables -X
|
|
|
|
${RESTOREPATH}-ipsets
|
|
|
|
fi
|
|
|
|
|
2006-02-03 22:39:00 +01:00
|
|
|
progress_message3 "Restoring Shorewall..."
|
2006-01-25 23:33:50 +01:00
|
|
|
$RESTOREPATH restore && echo "Shorewall restored from /var/lib/shorewall/$RESTOREFILE"
|
2006-01-19 01:20:23 +01:00
|
|
|
[ -n "$nolock" ] || mutex_off
|
|
|
|
else
|
|
|
|
echo "File /var/lib/shorewall/$RESTOREFILE: file not found"
|
|
|
|
[ -n "$nolock" ] || mutex_off
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
}
|
2003-07-27 20:17:39 +02:00
|
|
|
#
|
|
|
|
# Help information
|
|
|
|
#
|
|
|
|
help()
|
|
|
|
{
|
|
|
|
[ -x $HELP ] && { export version; exec $HELP $*; }
|
|
|
|
echo "Help subsystem is not installed at $HELP"
|
|
|
|
}
|
2005-08-02 18:46:30 +02:00
|
|
|
|
2002-10-23 18:48:40 +02:00
|
|
|
#
|
|
|
|
# Give Usage Information
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
usage() # $1 = exit status
|
|
|
|
{
|
2006-02-15 16:20:17 +01:00
|
|
|
echo "Usage: $(basename $0) [debug|trace] [nolock] [ -q ] [ -v ] [ -t ] <command>"
|
2002-05-01 01:13:15 +02:00
|
|
|
echo "where <command> is one of:"
|
2006-01-12 00:42:06 +01:00
|
|
|
echo " add <interface>[:<host-list>] ... <zone>"
|
2003-07-27 20:17:39 +02:00
|
|
|
echo " allow <address> ..."
|
2006-02-10 19:45:05 +01:00
|
|
|
echo " check [ -e ] [ <directory> ]"
|
2003-07-27 20:17:39 +02:00
|
|
|
echo " clear"
|
2006-02-03 18:08:37 +01:00
|
|
|
echo " compile [ -e ] [ -d <distribution> ] [ <directory name> ] <path name>"
|
2006-01-12 00:42:06 +01:00
|
|
|
echo " delete <interface>[:<host-list>] ... <zone>"
|
2003-08-24 03:24:23 +02:00
|
|
|
echo " drop <address> ..."
|
2006-02-03 16:27:54 +01:00
|
|
|
echo " dump [ -x ]"
|
2005-07-09 06:45:32 +02:00
|
|
|
echo " forget [ <file name> ]"
|
2003-07-27 20:17:39 +02:00
|
|
|
echo " help [ <command > | host | address ]"
|
|
|
|
echo " hits"
|
2005-12-03 00:58:57 +01:00
|
|
|
echo " ipcalc { <address>/<vlsm> | <address> <netmask> }"
|
|
|
|
echo " ipdecimal { <address> | <integer> }"
|
2003-07-27 20:17:39 +02:00
|
|
|
echo " iprange <address>-<address>"
|
2006-03-23 17:37:45 +01:00
|
|
|
echo " logdrop <address> ..."
|
|
|
|
echo " logreject <address> ..."
|
2006-01-25 23:33:50 +01:00
|
|
|
echo " logwatch [<refresh interval>]"
|
2003-07-27 20:17:39 +02:00
|
|
|
echo " refresh"
|
2003-08-24 03:24:23 +02:00
|
|
|
echo " reject <address> ..."
|
2003-07-27 20:17:39 +02:00
|
|
|
echo " reset"
|
2006-02-03 16:27:54 +01:00
|
|
|
echo " restart [ -n ] [ <directory> ]"
|
|
|
|
echo " restore [ -n ] [ <file name> ]"
|
2005-07-09 06:45:32 +02:00
|
|
|
echo " save [ <file name> ]"
|
2006-02-03 16:27:54 +01:00
|
|
|
echo " show [ -x ] [<chain> [ <chain> ... ]|actions|capabilities|classifiers|connections|log|macros|mangle|nat|tc|zones]"
|
|
|
|
echo " start [ -f ] [ -n ] [ <directory> ]"
|
2002-05-01 01:13:15 +02:00
|
|
|
echo " stop"
|
|
|
|
echo " status"
|
|
|
|
echo " try <directory> [ <timeout> ]"
|
2003-07-27 20:17:39 +02:00
|
|
|
echo " version"
|
2005-07-09 07:55:29 +02:00
|
|
|
echo " safe-start"
|
|
|
|
echo " safe-restart"
|
2005-08-02 18:46:30 +02:00
|
|
|
echo
|
2002-05-01 01:13:15 +02:00
|
|
|
exit $1
|
|
|
|
}
|
|
|
|
|
2002-10-23 18:48:40 +02:00
|
|
|
#
|
|
|
|
# Display the time that the counters were last reset
|
|
|
|
#
|
2002-07-23 00:31:07 +02:00
|
|
|
show_reset() {
|
2005-07-26 01:08:09 +02:00
|
|
|
[ -f /var/lib/shorewall/restarted ] && \
|
|
|
|
echo "Counters reset $(cat /var/lib/shorewall/restarted)" && \
|
2002-11-11 00:15:53 +01:00
|
|
|
echo
|
2002-07-23 00:31:07 +02:00
|
|
|
}
|
2005-07-09 07:55:29 +02:00
|
|
|
|
2005-07-09 07:45:05 +02:00
|
|
|
#
|
|
|
|
# Display's the passed file name followed by "=" and the file's contents.
|
|
|
|
#
|
2005-08-02 18:46:30 +02:00
|
|
|
show_proc() # $1 = name of a file
|
2005-07-09 07:45:05 +02:00
|
|
|
{
|
2005-07-09 06:45:32 +02:00
|
|
|
[ -f $1 ] && echo " $1 = $(cat $1)"
|
|
|
|
}
|
|
|
|
|
2005-08-02 18:46:30 +02:00
|
|
|
read_yesno_with_timeout() {
|
2005-07-09 07:55:29 +02:00
|
|
|
read -t 60 yn 2> /dev/null
|
|
|
|
if [ $? -eq 2 ]
|
|
|
|
then
|
|
|
|
# read doesn't support timeout
|
|
|
|
test -x /bin/bash || return 2 # bash is not installed so the feature is not available
|
|
|
|
/bin/bash -c 'read -t 60 yn ; if [ "$yn" == "y" ] ; then exit 0 ; else exit 1 ; fi' # invoke bash and use its version of read
|
|
|
|
return $?
|
|
|
|
else
|
|
|
|
# read supports timeout
|
|
|
|
case "$yn" in
|
|
|
|
y|Y)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2005-08-08 20:05:22 +02:00
|
|
|
#
|
|
|
|
# Print a heading with leading and trailing black lines
|
|
|
|
#
|
|
|
|
heading() {
|
|
|
|
echo
|
|
|
|
echo "$@"
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
2006-01-09 18:11:30 +01:00
|
|
|
#
|
2006-03-24 00:26:41 +01:00
|
|
|
# Create the appropriate -q option to pass onward
|
2006-01-09 18:11:30 +01:00
|
|
|
#
|
2006-01-23 02:41:24 +01:00
|
|
|
make_verbose() {
|
2006-03-24 00:26:41 +01:00
|
|
|
local v=$VERBOSE_OFFSET option=-
|
2006-01-09 18:11:30 +01:00
|
|
|
|
2006-03-24 00:26:41 +01:00
|
|
|
if [ $VERBOSE_OFFSET -gt 0 ]; then
|
2006-01-23 02:41:24 +01:00
|
|
|
while [ $v -gt 0 ]; do
|
|
|
|
option="${option}v"
|
|
|
|
v=$(($v - 1))
|
2006-01-09 18:11:30 +01:00
|
|
|
done
|
|
|
|
|
2006-03-24 00:26:41 +01:00
|
|
|
echo $option
|
|
|
|
elif [ $VERBOSE_OFFSET -lt 0 ]; then
|
|
|
|
while [ $v -lt 0 ]; do
|
|
|
|
option="${option}q"
|
|
|
|
v=$(($v + 1))
|
|
|
|
done
|
|
|
|
|
2006-01-09 18:11:30 +01:00
|
|
|
echo $option
|
|
|
|
fi
|
|
|
|
}
|
2006-01-19 01:20:23 +01:00
|
|
|
|
2002-10-23 18:48:40 +02:00
|
|
|
#
|
|
|
|
# Execution begins here
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
debugging=
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
if [ $# -gt 0 ] && [ "$1" = "debug" -o "$1" = "trace" ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
debugging=debug
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
|
|
|
nolock=
|
|
|
|
|
|
|
|
if [ $# -gt 0 ] && [ "$1" = "nolock" ]; then
|
|
|
|
nolock=nolock
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
|
|
|
SHOREWALL_DIR=
|
2005-07-09 06:45:32 +02:00
|
|
|
IPT_OPTIONS="-nv"
|
|
|
|
FAST=
|
2006-03-24 00:26:41 +01:00
|
|
|
VERBOSE_OFFSET=0
|
2005-09-15 01:01:13 +02:00
|
|
|
NOROUTES=
|
2006-01-13 00:26:37 +01:00
|
|
|
EXPORT=
|
2006-02-15 16:20:17 +01:00
|
|
|
export TIMESTAMP=
|
2005-09-15 03:07:12 +02:00
|
|
|
noroutes=
|
2005-07-09 06:45:32 +02:00
|
|
|
|
2006-01-17 18:00:54 +01:00
|
|
|
finished=0
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2006-01-17 18:00:54 +01:00
|
|
|
while [ $finished -eq 0 ]; do
|
2002-05-01 01:13:15 +02:00
|
|
|
[ $# -eq 0 ] && usage 1
|
2005-07-09 06:45:32 +02:00
|
|
|
option=$1
|
|
|
|
case $option in
|
2006-01-17 18:08:41 +01:00
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
;;
|
2005-07-09 06:45:32 +02:00
|
|
|
-*)
|
|
|
|
option=${option#-}
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
[ -z "$option" ] && usage 1
|
2005-09-30 18:54:24 +02:00
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
c)
|
|
|
|
[ $# -eq 1 ] && usage 1
|
|
|
|
|
|
|
|
if [ ! -d $2 ]; then
|
|
|
|
if [ -e $2 ]; then
|
|
|
|
echo "$2 is not a directory" >&2 && exit 2
|
|
|
|
else
|
|
|
|
echo "Directory $2 does not exist" >&2 && exit 2
|
|
|
|
fi
|
|
|
|
fi
|
2005-09-30 18:54:24 +02:00
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
SHOREWALL_DIR=$2
|
|
|
|
option=
|
|
|
|
shift
|
|
|
|
;;
|
2006-01-13 00:26:37 +01:00
|
|
|
e*)
|
|
|
|
EXPORT=Yes
|
|
|
|
option=${option#e}
|
|
|
|
;;
|
2005-07-09 06:45:32 +02:00
|
|
|
x*)
|
|
|
|
IPT_OPTIONS="-xnv"
|
|
|
|
option=${option#x}
|
|
|
|
;;
|
|
|
|
q*)
|
2006-03-24 00:26:41 +01:00
|
|
|
VERBOSE_OFFSET=$(($VERBOSE_OFFSET - 1 ))
|
2005-07-09 06:45:32 +02:00
|
|
|
option=${option#q}
|
|
|
|
;;
|
|
|
|
f*)
|
|
|
|
FAST=Yes
|
|
|
|
option=${option#f}
|
|
|
|
;;
|
2005-07-09 07:45:05 +02:00
|
|
|
v*)
|
2006-03-24 00:26:41 +01:00
|
|
|
VERBOSE_OFFSET=$(($VERBOSE_OFFSET + 1 ))
|
2006-01-24 17:10:41 +01:00
|
|
|
option=${option#v}
|
2005-07-09 07:45:05 +02:00
|
|
|
;;
|
2005-09-15 01:01:13 +02:00
|
|
|
n*)
|
|
|
|
NOROUTES=Yes
|
|
|
|
option=${option#n}
|
2005-09-30 18:54:24 +02:00
|
|
|
;;
|
2006-02-15 16:20:17 +01:00
|
|
|
t*)
|
|
|
|
TIMESTAMP=Yes
|
|
|
|
option=${option#t}
|
|
|
|
;;
|
2006-01-17 18:00:54 +01:00
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
2005-07-09 06:45:32 +02:00
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
2006-01-17 18:00:54 +01:00
|
|
|
finished=1
|
2005-07-09 06:45:32 +02:00
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2002-06-04 17:08:50 +02:00
|
|
|
if [ $# -eq 0 ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
usage 1
|
|
|
|
fi
|
|
|
|
|
2002-06-15 19:27:41 +02:00
|
|
|
[ -n "$SHOREWALL_DIR" ] && export SHOREWALL_DIR
|
2003-01-07 00:01:23 +01:00
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin:/usr/local/sbin
|
|
|
|
MUTEX_TIMEOUT=
|
|
|
|
|
2003-03-08 19:01:32 +01:00
|
|
|
SHARED_DIR=/usr/share/shorewall
|
2003-01-07 00:01:23 +01:00
|
|
|
FIREWALL=$SHARED_DIR/firewall
|
|
|
|
FUNCTIONS=$SHARED_DIR/functions
|
|
|
|
VERSION_FILE=$SHARED_DIR/version
|
2003-07-27 20:17:39 +02:00
|
|
|
HELP=$SHARED_DIR/help
|
2003-01-07 00:01:23 +01:00
|
|
|
|
|
|
|
if [ -f $FUNCTIONS ]; then
|
|
|
|
. $FUNCTIONS
|
|
|
|
else
|
|
|
|
echo "$FUNCTIONS does not exist!" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
ensure_config_path
|
|
|
|
|
|
|
|
config=$(find_file shorewall.conf)
|
2003-03-08 19:01:32 +01:00
|
|
|
|
|
|
|
if [ -f $config ]; then
|
2005-07-09 06:45:32 +02:00
|
|
|
if [ -r $config ]; then
|
|
|
|
. $config
|
|
|
|
else
|
|
|
|
echo "Cannot read $config! (Hint: Are you root?)" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2003-03-08 19:01:32 +01:00
|
|
|
else
|
|
|
|
echo "$config does not exist!" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
ensure_config_path
|
|
|
|
export CONFIG_PATH
|
|
|
|
|
2005-07-09 07:45:05 +02:00
|
|
|
get_config
|
|
|
|
|
2003-01-07 00:01:23 +01:00
|
|
|
if [ ! -f $FIREWALL ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
echo "ERROR: Shorewall is not properly installed"
|
2003-01-07 00:01:23 +01:00
|
|
|
if [ -L $FIREWALL ]; then
|
|
|
|
echo " $FIREWALL is a symbolic link to a"
|
2002-07-06 00:24:40 +02:00
|
|
|
echo " non-existant file"
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
2003-01-07 00:01:23 +01:00
|
|
|
echo " The file $FIREWALL does not exist"
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2003-01-07 00:01:23 +01:00
|
|
|
if [ -f $VERSION_FILE ]; then
|
2005-07-09 06:45:32 +02:00
|
|
|
version=$(cat $VERSION_FILE)
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
2002-06-15 19:27:41 +02:00
|
|
|
echo "ERROR: Shorewall is not properly installed"
|
2003-01-07 00:01:23 +01:00
|
|
|
echo " The file $VERSION_FILE does not exist"
|
2002-05-01 01:13:15 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
banner="Shorewall-$version Status at $HOSTNAME -"
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
case $(echo -e) in
|
2002-11-11 17:46:50 +01:00
|
|
|
-e*)
|
2003-01-06 20:54:50 +01:00
|
|
|
RING_BELL="echo \a"
|
2002-11-11 17:46:50 +01:00
|
|
|
;;
|
|
|
|
*)
|
2003-01-06 20:54:50 +01:00
|
|
|
RING_BELL="echo -e \a"
|
2002-11-11 17:46:50 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
case $(echo -n "Testing") in
|
2002-11-11 17:46:50 +01:00
|
|
|
-n*)
|
|
|
|
ECHO_N=
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ECHO_N=-n
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-01-18 21:17:58 +01:00
|
|
|
COMMAND=$1
|
|
|
|
|
|
|
|
case "$COMMAND" in
|
2005-07-09 06:45:32 +02:00
|
|
|
start)
|
2006-01-18 21:17:58 +01:00
|
|
|
shift
|
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
start_command $@
|
2006-01-18 21:17:58 +01:00
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
;;
|
2005-07-09 07:45:05 +02:00
|
|
|
stop|reset|clear|refresh)
|
2002-05-01 01:13:15 +02:00
|
|
|
[ $# -ne 1 ] && usage 1
|
2005-09-15 01:01:13 +02:00
|
|
|
export NOROUTES
|
2006-01-18 21:17:58 +01:00
|
|
|
exec $SHOREWALL_SHELL $FIREWALL $debugging $nolock $COMMAND
|
2005-07-09 07:45:05 +02:00
|
|
|
;;
|
2006-02-03 16:10:46 +01:00
|
|
|
compile)
|
2006-01-15 17:35:09 +01:00
|
|
|
shift
|
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
compile_command $@
|
2006-01-13 00:26:37 +01:00
|
|
|
|
2006-01-07 02:08:23 +01:00
|
|
|
;;
|
2006-01-18 21:17:58 +01:00
|
|
|
restart)
|
|
|
|
shift
|
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
restart_command $@
|
2006-01-18 21:17:58 +01:00
|
|
|
|
|
|
|
;;
|
|
|
|
check)
|
2006-01-19 01:20:23 +01:00
|
|
|
shift
|
2005-09-15 01:01:13 +02:00
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
check_command $@
|
2005-09-30 18:54:24 +02:00
|
|
|
|
2006-01-07 07:04:16 +01:00
|
|
|
;;
|
2006-01-12 00:30:33 +01:00
|
|
|
add|delete)
|
|
|
|
[ $# -lt 3 ] && usage 1
|
|
|
|
exec $SHOREWALL_SHELL $FIREWALL $debugging $nolock $@
|
|
|
|
;;
|
2003-01-23 02:13:36 +01:00
|
|
|
show|list)
|
2006-01-19 01:20:23 +01:00
|
|
|
shift
|
|
|
|
|
|
|
|
show_command $@
|
2005-09-30 18:54:24 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
status)
|
2005-07-28 16:37:56 +02:00
|
|
|
[ $# -eq 1 ] || usage 1
|
2005-07-30 23:59:12 +02:00
|
|
|
echo "Shorewall-$version Status at $HOSTNAME - $(date)"
|
|
|
|
echo
|
2005-07-29 21:06:37 +02:00
|
|
|
if shorewall_is_started ; then
|
2005-07-29 20:32:50 +02:00
|
|
|
echo "Shorewall is running"
|
2005-07-30 23:59:12 +02:00
|
|
|
status=0
|
|
|
|
else
|
|
|
|
echo "Shorewall is stopped"
|
|
|
|
status=4
|
2005-07-29 20:32:50 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f /var/lib/shorewall/state ]; then
|
2005-07-30 23:59:12 +02:00
|
|
|
state="$(cat /var/lib/shorewall/state)"
|
2006-01-17 18:34:34 +01:00
|
|
|
case $state in
|
2005-07-29 20:32:50 +02:00
|
|
|
Stopped*|Clear*)
|
|
|
|
status=3
|
|
|
|
;;
|
|
|
|
esac
|
2005-07-28 16:37:56 +02:00
|
|
|
else
|
2005-07-29 20:32:50 +02:00
|
|
|
state=Unknown
|
2005-07-28 16:37:56 +02:00
|
|
|
fi
|
2005-07-30 23:59:12 +02:00
|
|
|
echo "State:$state"
|
2005-07-29 20:32:50 +02:00
|
|
|
echo
|
2005-08-02 18:46:30 +02:00
|
|
|
exit $status
|
2005-07-28 16:37:56 +02:00
|
|
|
;;
|
|
|
|
dump)
|
2006-01-19 01:20:23 +01:00
|
|
|
shift
|
2005-07-09 07:45:05 +02:00
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
dump_command $@
|
2005-09-30 18:54:24 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
hits)
|
2005-12-03 00:58:57 +01:00
|
|
|
[ -n "$debugging" ] && set -x
|
2002-07-06 00:24:40 +02:00
|
|
|
[ $# -eq 1 ] || usage 1
|
2005-07-09 07:45:05 +02:00
|
|
|
clear_term
|
2005-07-09 06:45:32 +02:00
|
|
|
echo "Shorewall-$version Hits at $HOSTNAME - $(date)"
|
2002-11-11 00:15:53 +01:00
|
|
|
echo
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
timeout=30
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
if [ $(grep -c "$LOGFORMAT" $LOGFILE ) -gt 0 ] ; then
|
2002-07-06 00:24:40 +02:00
|
|
|
echo " HITS IP DATE"
|
|
|
|
echo " ---- --------------- ------"
|
2003-05-21 23:36:05 +02:00
|
|
|
grep "$LOGFORMAT" $LOGFILE | sed 's/\(.\{6\}\)\(.*SRC=\)\(.*\)\( DST=.*\)/\3 \1/' | sort | uniq -c | sort -rn
|
2002-07-06 00:24:40 +02:00
|
|
|
echo ""
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
echo " HITS IP PORT"
|
|
|
|
echo " ---- --------------- -----"
|
2003-05-21 23:36:05 +02:00
|
|
|
grep "$LOGFORMAT" $LOGFILE | sed 's/\(.*SRC=\)\(.*\)\( DST=.*DPT=\)\([0-9]\{1,5\}\)\(.*\)/\2 \4/
|
2002-06-30 00:41:30 +02:00
|
|
|
t
|
|
|
|
s/\(.*SRC=\)\(.*\)\( DST=.*\)/\2/' | sort | uniq -c | sort -rn
|
2002-07-06 00:24:40 +02:00
|
|
|
echo ""
|
|
|
|
|
|
|
|
echo " HITS DATE"
|
|
|
|
echo " ---- ------"
|
2003-05-21 23:36:05 +02:00
|
|
|
grep "$LOGFORMAT" $LOGFILE | sed 's/\(.\{6\}\)\(.*\)/\1/' | sort | uniq -c | sort -rn
|
2002-07-06 00:24:40 +02:00
|
|
|
echo ""
|
|
|
|
|
|
|
|
echo " HITS PORT SERVICE(S)"
|
2003-02-23 15:10:37 +01:00
|
|
|
echo " ---- ----- ----------"
|
2003-06-01 05:14:20 +02:00
|
|
|
grep "$LOGFORMAT.*DPT" $LOGFILE | sed 's/\(.*DPT=\)\([0-9]\{1,5\}\)\(.*\)/\2/' | sort | uniq -c | sort -rn | \
|
2002-07-06 00:24:40 +02:00
|
|
|
while read count port ; do
|
|
|
|
# List all services defined for the given port
|
2005-07-09 06:45:32 +02:00
|
|
|
srv=$(grep "^[^#].*\\b$port/" /etc/services | cut -f 1 | sort -u)
|
|
|
|
srv=$(echo $srv | sed 's/ /,/g')
|
2002-07-06 00:24:40 +02:00
|
|
|
|
|
|
|
if [ -n "$srv" ] ; then
|
|
|
|
printf '%7d %5d %s\n' $count $port $srv
|
|
|
|
else
|
|
|
|
printf '%7d %5d\n' $count $port
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
version)
|
|
|
|
echo $version
|
|
|
|
;;
|
|
|
|
try)
|
2005-07-26 01:08:09 +02:00
|
|
|
[ -n "$SHOREWALL_DIR" ] && startup_error "ERROR: -c option may not be used with \"try\""
|
2002-05-01 01:13:15 +02:00
|
|
|
[ $# -lt 2 -o $# -gt 3 ] && usage 1
|
2006-03-24 00:26:41 +01:00
|
|
|
VERBOSE=$(make_verbose)
|
2005-09-15 03:07:12 +02:00
|
|
|
[ -n "$NOROUTES" ] && NOROUTES=-n
|
2006-01-23 02:41:24 +01:00
|
|
|
if ! $0 $debugging $VERBOSE -c $2 restart; then
|
2005-07-09 07:45:05 +02:00
|
|
|
if ! $IPTABLES -L shorewall > /dev/null 2> /dev/null; then
|
2006-01-23 02:41:24 +01:00
|
|
|
$0 $VERBOSE $NOROUTES start
|
2002-06-04 17:08:50 +02:00
|
|
|
fi
|
2005-07-09 07:45:05 +02:00
|
|
|
elif ! $IPTABLES -L shorewall > /dev/null 2> /dev/null; then
|
2006-01-23 02:41:24 +01:00
|
|
|
$0 $VERBOSE $NOROUTES start
|
2002-05-01 01:13:15 +02:00
|
|
|
elif [ $# -eq 3 ]; then
|
|
|
|
sleep $3
|
2006-01-23 02:41:24 +01:00
|
|
|
$0 $VERBOSE $NOROUTES restart
|
2002-07-06 00:24:40 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
2002-06-02 19:05:51 +02:00
|
|
|
logwatch)
|
2006-01-19 01:20:23 +01:00
|
|
|
shift
|
|
|
|
|
|
|
|
finished=0
|
|
|
|
|
2006-01-25 23:33:50 +01:00
|
|
|
while [ $finished -eq 0 -a $# -ne 0 ]; do
|
2006-01-19 01:20:23 +01:00
|
|
|
option=$1
|
|
|
|
case $option in
|
|
|
|
-*)
|
|
|
|
option=${option#-}
|
|
|
|
|
|
|
|
[ -z "$option" ] && usage 1
|
|
|
|
|
|
|
|
while [ -n "$option" ]; do
|
|
|
|
case $option in
|
|
|
|
v*)
|
2006-01-23 02:41:24 +01:00
|
|
|
VERBOSE=$(($VERBOSE + 1 ))
|
2006-01-24 17:10:41 +01:00
|
|
|
option=${option#v}
|
2006-01-19 01:20:23 +01:00
|
|
|
;;
|
2006-01-26 00:58:12 +01:00
|
|
|
q*)
|
|
|
|
VERBOSE=$(($VERBOSE - 1 ))
|
|
|
|
option=${option#q}
|
|
|
|
;;
|
2006-01-19 01:20:23 +01:00
|
|
|
-)
|
|
|
|
finished=1
|
|
|
|
option=
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
finished=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2005-12-03 00:58:57 +01:00
|
|
|
[ -n "$debugging" ] && set -x
|
2006-01-19 01:20:23 +01:00
|
|
|
|
|
|
|
if [ $# -eq 1 ]; then
|
|
|
|
logwatch $1
|
|
|
|
elif [ $# -eq 0 ]; then
|
2002-06-02 19:05:51 +02:00
|
|
|
logwatch 30
|
|
|
|
else
|
|
|
|
usage 1
|
|
|
|
fi
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-06-04 22:17:46 +02:00
|
|
|
drop)
|
2005-12-03 00:58:57 +01:00
|
|
|
[ -n "$debugging" ] && set -x
|
2002-07-06 00:24:40 +02:00
|
|
|
[ $# -eq 1 ] && usage 1
|
2006-02-04 18:14:46 +01:00
|
|
|
if shorewall_is_started ; then
|
|
|
|
mutex_on
|
|
|
|
while [ $# -gt 1 ]; do
|
|
|
|
shift
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j reject
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j DROP
|
2006-03-23 17:37:45 +01:00
|
|
|
qt $IPTABLES -D dynamic -s $1 -j logreject
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j logdrop
|
2006-02-04 18:14:46 +01:00
|
|
|
$IPTABLES -A dynamic -s $1 -j DROP || break 1
|
|
|
|
echo "$1 Dropped"
|
|
|
|
done
|
|
|
|
mutex_off
|
|
|
|
else
|
|
|
|
error_message "ERROR: Shorewall is not started"
|
|
|
|
exit 2
|
|
|
|
fi
|
2002-06-04 17:08:50 +02:00
|
|
|
;;
|
2006-03-23 17:37:45 +01:00
|
|
|
logdrop)
|
2005-12-03 00:58:57 +01:00
|
|
|
[ -n "$debugging" ] && set -x
|
2002-07-06 00:24:40 +02:00
|
|
|
[ $# -eq 1 ] && usage 1
|
2006-02-04 18:14:46 +01:00
|
|
|
if shorewall_is_started ; then
|
|
|
|
mutex_on
|
|
|
|
while [ $# -gt 1 ]; do
|
|
|
|
shift
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j reject
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j DROP
|
2006-03-23 17:37:45 +01:00
|
|
|
qt $IPTABLES -D dynamic -s $1 -j logreject
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j logdrop
|
|
|
|
$IPTABLES -A dynamic -s $1 -j logdrop || break 1
|
|
|
|
echo "$1 Dropped"
|
|
|
|
done
|
|
|
|
mutex_off
|
|
|
|
else
|
|
|
|
error_message "ERROR: Shorewall is not started"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
reject|logreject)
|
|
|
|
[ -n "$debugging" ] && set -x
|
|
|
|
[ $# -eq 1 ] && usage 1
|
|
|
|
if shorewall_is_started ; then
|
|
|
|
mutex_on
|
|
|
|
while [ $# -gt 1 ]; do
|
|
|
|
shift
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j reject
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j DROP
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j logreject
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j logdrop
|
|
|
|
$IPTABLES -A dynamic -s $1 -j $COMMAND || break 1
|
2006-02-04 18:14:46 +01:00
|
|
|
echo "$1 Rejected"
|
|
|
|
done
|
|
|
|
mutex_off
|
|
|
|
else
|
|
|
|
error_message "ERROR: Shorewall is not started"
|
|
|
|
exit 2
|
|
|
|
fi
|
2002-06-04 22:17:46 +02:00
|
|
|
;;
|
|
|
|
allow)
|
2005-12-03 00:58:57 +01:00
|
|
|
[ -n "$debugging" ] && set -x
|
2002-07-06 00:24:40 +02:00
|
|
|
[ $# -eq 1 ] && usage 1
|
2006-02-04 18:14:46 +01:00
|
|
|
if shorewall_is_started ; then
|
|
|
|
mutex_on
|
|
|
|
while [ $# -gt 1 ]; do
|
|
|
|
shift
|
2006-03-23 17:37:45 +01:00
|
|
|
if qt $IPTABLES -D dynamic -s $1 -j reject ||\
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j DROP ||\
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j logdrop ||\
|
|
|
|
qt $IPTABLES -D dynamic -s $1 -j logreject
|
|
|
|
then
|
2006-02-04 18:14:46 +01:00
|
|
|
echo "$1 Allowed"
|
|
|
|
else
|
|
|
|
echo "$1 Not Dropped or Rejected"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
mutex_off
|
|
|
|
else
|
|
|
|
error_message "ERROR: Shorewall is not started"
|
|
|
|
exit 2
|
|
|
|
fi
|
2002-06-04 22:17:46 +02:00
|
|
|
;;
|
|
|
|
save)
|
2005-12-03 00:58:57 +01:00
|
|
|
[ -n "$debugging" ] && set -x
|
2005-07-09 06:45:32 +02:00
|
|
|
|
|
|
|
case $# in
|
|
|
|
1)
|
|
|
|
;;
|
|
|
|
2)
|
|
|
|
RESTOREFILE="$2"
|
|
|
|
validate_restorefile '<restore file>'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
RESTOREPATH=/var/lib/shorewall/$RESTOREFILE
|
|
|
|
|
2006-01-24 16:24:20 +01:00
|
|
|
[ "$nolock" ] || mutex_on
|
|
|
|
|
2005-07-09 07:55:29 +02:00
|
|
|
save_config
|
2003-08-24 03:24:23 +02:00
|
|
|
|
2006-01-24 16:24:20 +01:00
|
|
|
[ "$nolock" ] || mutex_off
|
2002-06-04 22:17:46 +02:00
|
|
|
;;
|
2005-07-09 06:45:32 +02:00
|
|
|
forget)
|
|
|
|
case $# in
|
|
|
|
1)
|
|
|
|
;;
|
|
|
|
2)
|
|
|
|
RESTOREFILE="$2"
|
|
|
|
validate_restorefile '<restore file>'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
|
|
RESTOREPATH=/var/lib/shorewall/$RESTOREFILE
|
|
|
|
|
|
|
|
if [ -x $RESTOREPATH ]; then
|
2005-07-09 07:55:29 +02:00
|
|
|
|
|
|
|
if [ -x ${RESTOREPATH}-ipsets ]; then
|
|
|
|
rm -f ${RESTOREPATH}-ipsets
|
|
|
|
echo " ${RESTOREPATH}-ipsets removed"
|
|
|
|
fi
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
rm -f $RESTOREPATH
|
2006-01-25 18:33:38 +01:00
|
|
|
rm -f ${RESTOREPATH}-iptables
|
2005-07-09 06:45:32 +02:00
|
|
|
echo " $RESTOREPATH removed"
|
|
|
|
elif [ -f $RESTOREPATH ]; then
|
2005-07-09 07:45:05 +02:00
|
|
|
echo " $RESTOREPATH exists and is not a saved Shorewall configuration"
|
2005-07-09 06:45:32 +02:00
|
|
|
fi
|
2005-08-03 22:24:55 +02:00
|
|
|
rm -f /var/lib/shorewall/save
|
2005-07-09 06:45:32 +02:00
|
|
|
;;
|
2003-07-05 19:14:21 +02:00
|
|
|
ipcalc)
|
2005-07-09 06:45:32 +02:00
|
|
|
[ -n "$debugging" ] && set -x
|
2003-07-05 19:14:21 +02:00
|
|
|
if [ $# -eq 2 ]; then
|
|
|
|
address=${2%/*}
|
2003-07-05 19:23:53 +02:00
|
|
|
vlsm=${2#*/}
|
2003-07-05 19:14:21 +02:00
|
|
|
elif [ $# -eq 3 ]; then
|
|
|
|
address=$2
|
2005-07-09 06:45:32 +02:00
|
|
|
vlsm=$(ip_vlsm $3)
|
2003-07-05 19:14:21 +02:00
|
|
|
else
|
|
|
|
usage 1
|
|
|
|
fi
|
2005-09-30 18:54:24 +02:00
|
|
|
|
2003-07-05 19:23:53 +02:00
|
|
|
[ -z "$vlsm" ] && exit 2
|
|
|
|
[ "x$address" = "x$vlsm" ] && usage 2
|
2003-07-05 19:41:28 +02:00
|
|
|
[ $vlsm -gt 32 ] && echo "Invalid VLSM: /$vlsm" >&2 && exit 2
|
2003-07-05 19:14:21 +02:00
|
|
|
|
2003-07-05 19:23:53 +02:00
|
|
|
address=$address/$vlsm
|
2003-07-05 19:14:21 +02:00
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
echo " CIDR=$address"
|
|
|
|
temp=$(ip_netmask $address); echo " NETMASK=$(encodeaddr $temp)"
|
|
|
|
temp=$(ip_network $address); echo " NETWORK=$temp"
|
|
|
|
temp=$(broadcastaddress $address); echo " BROADCAST=$temp"
|
2003-07-05 19:14:21 +02:00
|
|
|
;;
|
|
|
|
|
2003-07-06 15:24:23 +02:00
|
|
|
iprange)
|
2005-12-03 00:58:57 +01:00
|
|
|
[ -n "$debugging" ] && set -x
|
2003-07-06 15:24:23 +02:00
|
|
|
case $2 in
|
|
|
|
*.*.*.*-*.*.*.*)
|
|
|
|
ip_range $2
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2005-12-03 00:58:57 +01:00
|
|
|
ipdecimal)
|
|
|
|
[ -n "$debugging" ] && set -x
|
|
|
|
case $2 in
|
|
|
|
*.*.*.*)
|
|
|
|
echo " $(decodeaddr $2)"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo " $(encodeaddr $2)"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2005-07-09 06:45:32 +02:00
|
|
|
restore)
|
2006-01-18 21:17:58 +01:00
|
|
|
shift
|
|
|
|
|
2006-01-19 01:20:23 +01:00
|
|
|
restore_command $@
|
2005-09-15 01:01:13 +02:00
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
;;
|
2005-08-02 18:46:30 +02:00
|
|
|
call)
|
2005-12-03 00:58:57 +01:00
|
|
|
[ -n "$debugging" ] && set -x
|
2003-07-05 19:55:43 +02:00
|
|
|
#
|
|
|
|
# Undocumented way to call functions in /usr/share/shorewall/functions directly
|
|
|
|
#
|
2006-01-05 00:34:07 +01:00
|
|
|
shift
|
2003-07-05 19:55:43 +02:00
|
|
|
$@
|
|
|
|
;;
|
2003-07-27 20:17:39 +02:00
|
|
|
help)
|
|
|
|
shift
|
|
|
|
[ $# -ne 1 ] && usage 1
|
|
|
|
help $@
|
|
|
|
;;
|
2005-07-09 07:55:29 +02:00
|
|
|
safe-restart|safe-start)
|
2006-01-24 16:24:20 +01:00
|
|
|
shift
|
2005-09-30 18:54:24 +02:00
|
|
|
|
2006-01-24 16:24:20 +01:00
|
|
|
safe_commands $@
|
2005-07-09 07:55:29 +02:00
|
|
|
|
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
*)
|
|
|
|
usage 1
|
|
|
|
;;
|
2003-07-05 19:14:21 +02:00
|
|
|
|
2003-02-23 15:10:37 +01:00
|
|
|
esac
|