2002-05-01 01:13:15 +02:00
|
|
|
############################################################################
|
2003-02-15 01:09:44 +01:00
|
|
|
# Shorewall 1.4 -- /etc/shorewall/common.def
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2003-02-23 15:10:37 +01:00
|
|
|
# This file defines the rules that are applied before a policy of
|
2002-05-01 01:13:15 +02:00
|
|
|
# DROP or REJECT is applied. In addition to the rules defined in this file,
|
|
|
|
# the firewall will also define a DROP rule for each subnet broadcast
|
|
|
|
# address defined in /etc/shorewall/interfaces (including "detect").
|
|
|
|
#
|
2002-05-30 14:55:47 +02:00
|
|
|
# Do not modify this file -- if you wish to change these rules, create
|
|
|
|
# /etc/shorewall/common to replace it. It is suggested that you include
|
2002-08-13 22:51:16 +02:00
|
|
|
# the command ". /etc/shorewall/common.def" in your
|
2002-05-30 14:55:47 +02:00
|
|
|
# /etc/shorewall/common file so that you will continue to get the
|
|
|
|
# advantage of new releases of this file.
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
|
|
|
run_iptables -A common -p icmp -j icmpdef
|
|
|
|
############################################################################
|
|
|
|
# NETBIOS chatter
|
|
|
|
#
|
2003-05-20 01:28:37 +02:00
|
|
|
run_iptables -A common -p udp --dport 135 -j reject
|
2003-03-26 17:11:31 +01:00
|
|
|
run_iptables -A common -p udp --dport 137:139 -j reject
|
|
|
|
run_iptables -A common -p udp --dport 445 -j reject
|
|
|
|
run_iptables -A common -p tcp --dport 139 -j reject
|
|
|
|
run_iptables -A common -p tcp --dport 445 -j reject
|
2002-05-01 01:13:15 +02:00
|
|
|
run_iptables -A common -p tcp --dport 135 -j reject
|
|
|
|
############################################################################
|
|
|
|
# UPnP
|
|
|
|
#
|
|
|
|
run_iptables -A common -p udp --dport 1900 -j DROP
|
|
|
|
############################################################################
|
|
|
|
# BROADCASTS
|
|
|
|
#
|
|
|
|
run_iptables -A common -d 255.255.255.255 -j DROP
|
|
|
|
run_iptables -A common -d 224.0.0.0/4 -j DROP
|
2002-05-18 15:45:23 +02:00
|
|
|
############################################################################
|
2002-05-30 14:55:47 +02:00
|
|
|
# AUTH -- Silently reject it so that connections don't get delayed.
|
2002-05-18 15:45:23 +02:00
|
|
|
#
|
|
|
|
run_iptables -A common -p tcp --dport 113 -j reject
|
2003-02-08 21:58:44 +01:00
|
|
|
############################################################################
|
|
|
|
# DNS -- Silenty drop late replies
|
|
|
|
run_iptables -A common -p udp --sport 53 -mstate --state NEW -j DROP
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
|