2002-05-01 00:42:57 +02:00
|
|
|
#
|
2005-09-21 22:37:33 +02:00
|
|
|
# Shorewall version 3.0 - Sample Policy File for two-interface configuration.
|
2006-03-17 03:07:39 +01:00
|
|
|
# Copyright (C) 2006 by the Shorewall Team
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the file README.txt for further details.
|
|
|
|
#
|
2002-05-01 00:42:57 +02:00
|
|
|
#
|
2005-09-21 18:50:49 +02:00
|
|
|
# /etc/shorewall/policy
|
|
|
|
#
|
|
|
|
# THE ORDER OF ENTRIES IN THIS FILE IS IMPORTANT
|
2004-03-14 19:16:35 +01:00
|
|
|
#
|
2002-05-01 00:42:57 +02:00
|
|
|
# This file determines what to do with a new connection request if we
|
2005-09-21 18:50:49 +02:00
|
|
|
# don't get a match from the /etc/shorewall/rules file . For each
|
|
|
|
# source/destination pair, the file is processed in order until a
|
2004-03-14 19:16:35 +01:00
|
|
|
# match is found ("all" will match any client or server).
|
2002-05-01 00:42:57 +02:00
|
|
|
#
|
2005-09-21 18:50:49 +02:00
|
|
|
# INTRA-ZONE POLICIES ARE PRE-DEFINED
|
|
|
|
#
|
|
|
|
# For $FW and for all of the zoned defined in /etc/shorewall/zones,
|
|
|
|
# the POLICY for connections from the zone to itself is ACCEPT (with no
|
|
|
|
# logging or TCP connection rate limiting but may be overridden by an
|
|
|
|
# entry in this file. The overriding entry must be explicit (cannot use
|
|
|
|
# "all" in the SOURCE or DEST).
|
|
|
|
#
|
2002-05-01 00:42:57 +02:00
|
|
|
# Columns are:
|
|
|
|
#
|
2002-05-18 21:48:34 +02:00
|
|
|
# SOURCE Source zone. Must be the name of a zone defined
|
|
|
|
# in /etc/shorewall/zones, $FW or "all".
|
2002-05-01 00:42:57 +02:00
|
|
|
#
|
2002-05-18 21:48:34 +02:00
|
|
|
# DEST Destination zone. Must be the name of a zone defined
|
|
|
|
# in /etc/shorewall/zones, $FW or "all"
|
2002-05-01 00:42:57 +02:00
|
|
|
#
|
|
|
|
# POLICY Policy if no match from the rules file is found. Must
|
2005-09-21 18:50:49 +02:00
|
|
|
# be "ACCEPT", "DROP", "REJECT", "CONTINUE" or "NONE".
|
|
|
|
#
|
|
|
|
# ACCEPT - Accept the connection
|
|
|
|
# DROP - Ignore the connection request
|
|
|
|
# REJECT - For TCP, send RST. For all other,
|
|
|
|
# send "port unreachable" ICMP.
|
|
|
|
# QUEUE - Send the request to a user-space
|
|
|
|
# application using the QUEUE target.
|
|
|
|
# CONTINUE - Pass the connection request past
|
|
|
|
# any other rules that it might also
|
|
|
|
# match (where the source or
|
|
|
|
# destination zone in those rules is
|
|
|
|
# a superset of the SOURCE or DEST
|
|
|
|
# in this policy).
|
|
|
|
# NONE - Assume that there will never be any
|
|
|
|
# packets from this SOURCE
|
|
|
|
# to this DEST. Shorewall will not set
|
|
|
|
# up any infrastructure to handle such
|
|
|
|
# packets and you may not have any
|
|
|
|
# rules with this SOURCE and DEST in
|
|
|
|
# the /etc/shorewall/rules file. If
|
|
|
|
# such a packet _is_ received, the
|
|
|
|
# result is undefined. NONE may not be
|
|
|
|
# used if the SOURCE or DEST columns
|
|
|
|
# contain the firewall zone ($FW) or
|
|
|
|
# "all".
|
2004-03-14 19:16:35 +01:00
|
|
|
#
|
|
|
|
# If this column contains ACCEPT, DROP or REJECT and a
|
2005-09-21 18:50:49 +02:00
|
|
|
# corresponding common action is defined in
|
|
|
|
# /etc/shorewall/actions (or
|
|
|
|
# /usr/share/shorewall/actions.std) then that action
|
|
|
|
# will be invoked before the policy named in this column
|
|
|
|
# is enforced.
|
|
|
|
#
|
2002-05-01 00:42:57 +02:00
|
|
|
# LOG LEVEL If supplied, each connection handled under the default
|
|
|
|
# POLICY is logged at that level. If not supplied, no
|
|
|
|
# log message is generated. See syslog.conf(5) for a
|
|
|
|
# description of log levels.
|
|
|
|
#
|
2002-12-22 20:18:14 +01:00
|
|
|
# Beginning with Shorewall version 1.3.12, you may
|
|
|
|
# also specify ULOG (must be in upper case). This will
|
|
|
|
# log to the ULOG target and sent to a separate log
|
2005-09-21 18:50:49 +02:00
|
|
|
# through use of ulogd
|
|
|
|
# (http://www.gnumonks.org/projects/ulogd).
|
2002-12-22 20:18:14 +01:00
|
|
|
#
|
2002-05-18 21:48:34 +02:00
|
|
|
# If you don't want to log but need to specify the
|
2005-09-21 18:50:49 +02:00
|
|
|
# following column, place "-" here.
|
2002-05-18 21:48:34 +02:00
|
|
|
#
|
|
|
|
# LIMIT:BURST If passed, specifies the maximum TCP connection rate
|
|
|
|
# and the size of an acceptable burst. If not specified,
|
|
|
|
# TCP connections are not limited.
|
|
|
|
#
|
2005-09-21 18:50:49 +02:00
|
|
|
# See http://shorewall.net/Documentation.htm#Policy for additional information.
|
2002-05-01 00:42:57 +02:00
|
|
|
#
|
|
|
|
###############################################################################
|
2002-05-18 21:48:34 +02:00
|
|
|
#SOURCE DEST POLICY LOG LEVEL LIMIT:BURST
|
2006-02-23 23:51:58 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Note about policies and logging:
|
|
|
|
# This file contains an explicit policy for every combination of
|
|
|
|
# zones defined in this sample. This is solely for the purpose of
|
|
|
|
# providing more specific messages in the logs. This is not
|
|
|
|
# necessary for correct operation of the firewall, but greatly
|
|
|
|
# assists in diagnosing problems.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Policies for traffic originating from the local LAN (loc)
|
|
|
|
#
|
|
|
|
# If you want to force clients to access the Internet via a proxy server
|
|
|
|
# on your firewall, change the following policy to REJECT info.
|
2002-05-01 00:42:57 +02:00
|
|
|
loc net ACCEPT
|
2006-02-23 23:51:58 +01:00
|
|
|
loc $FW REJECT info
|
|
|
|
loc all REJECT info
|
|
|
|
|
|
|
|
#
|
|
|
|
# Policies for traffic originating from the firewall ($FW)
|
|
|
|
#
|
|
|
|
# If you want open access to the Internet from your firewall, change the
|
2006-03-03 01:03:44 +01:00
|
|
|
# following policy to ACCEPT and remove the 'info' LOG LEVEL.
|
|
|
|
# This may be useful if you run a proxy server on the firewall.
|
2006-02-23 23:51:58 +01:00
|
|
|
$FW net REJECT info
|
|
|
|
$FW loc REJECT info
|
|
|
|
$FW all REJECT info
|
|
|
|
|
|
|
|
#
|
|
|
|
# Policies for traffic originating from the Internet zone (net)
|
|
|
|
#
|
|
|
|
net $FW DROP info
|
|
|
|
net loc DROP info
|
2002-05-01 00:42:57 +02:00
|
|
|
net all DROP info
|
2006-02-23 23:51:58 +01:00
|
|
|
|
2003-10-06 22:20:34 +02:00
|
|
|
# THE FOLLOWING POLICY MUST BE LAST
|
2002-05-01 00:42:57 +02:00
|
|
|
all all REJECT info
|
2006-02-23 23:51:58 +01:00
|
|
|
|
2003-03-12 21:55:17 +01:00
|
|
|
#LAST LINE -- ADD YOUR ENTRIES ABOVE THIS LINE -- DO NOT REMOVE
|