2006-10-04 23:05:48 +03:00
|
|
|
#!/bin/sh /etc/rc.common
|
2006-06-28 02:53:48 +03:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2005-07-01 18:19:39 +03:00
|
|
|
|
|
|
|
## Please make changes in /etc/firewall.user
|
2007-06-30 22:30:38 +03:00
|
|
|
START=45
|
2006-10-04 23:05:48 +03:00
|
|
|
start() {
|
|
|
|
include /lib/network
|
|
|
|
scan_interfaces
|
2007-06-30 22:30:38 +03:00
|
|
|
config_load /var/state/network
|
2006-10-04 23:05:48 +03:00
|
|
|
|
|
|
|
config_get WAN wan ifname
|
2006-10-16 02:04:23 +03:00
|
|
|
config_get WANDEV wan device
|
2006-10-04 23:05:48 +03:00
|
|
|
config_get LAN lan ifname
|
2007-10-29 13:00:33 +02:00
|
|
|
config_get LAN_MASK lan netmask
|
|
|
|
config_get LAN_IP lan ipaddr
|
|
|
|
LAN_NET=$(/bin/ipcalc.sh $LAN_IP $LAN_MASK | grep NETWORK | cut -d= -f2)
|
2006-10-04 23:05:48 +03:00
|
|
|
|
|
|
|
## CLEAR TABLES
|
|
|
|
for T in filter nat; do
|
|
|
|
iptables -t $T -F
|
|
|
|
iptables -t $T -X
|
|
|
|
done
|
|
|
|
|
|
|
|
iptables -N input_rule
|
2006-12-20 07:58:41 +02:00
|
|
|
iptables -N input_wan
|
2006-10-04 23:05:48 +03:00
|
|
|
iptables -N output_rule
|
|
|
|
iptables -N forwarding_rule
|
2006-12-20 07:58:41 +02:00
|
|
|
iptables -N forwarding_wan
|
2007-02-08 03:25:18 +02:00
|
|
|
|
|
|
|
iptables -t nat -N NEW
|
2006-10-04 23:05:48 +03:00
|
|
|
iptables -t nat -N prerouting_rule
|
2006-12-20 07:58:41 +02:00
|
|
|
iptables -t nat -N prerouting_wan
|
2006-10-04 23:05:48 +03:00
|
|
|
iptables -t nat -N postrouting_rule
|
|
|
|
|
|
|
|
iptables -N LAN_ACCEPT
|
|
|
|
[ -z "$WAN" ] || iptables -A LAN_ACCEPT -i "$WAN" -j RETURN
|
2006-10-16 02:04:23 +03:00
|
|
|
[ -z "$WANDEV" -o "$WANDEV" = "$WAN" ] || iptables -A LAN_ACCEPT -i "$WANDEV" -j RETURN
|
2006-10-04 23:05:48 +03:00
|
|
|
iptables -A LAN_ACCEPT -j ACCEPT
|
|
|
|
|
|
|
|
### INPUT
|
|
|
|
### (connections with the router as destination)
|
|
|
|
|
|
|
|
# base case
|
|
|
|
iptables -P INPUT DROP
|
|
|
|
iptables -A INPUT -m state --state INVALID -j DROP
|
|
|
|
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
|
|
|
|
iptables -A INPUT -p tcp --tcp-flags SYN SYN --tcp-option \! 2 -j DROP
|
|
|
|
|
|
|
|
#
|
|
|
|
# insert accept rule or to jump to new accept-check table here
|
|
|
|
#
|
|
|
|
iptables -A INPUT -j input_rule
|
2006-12-20 07:58:41 +02:00
|
|
|
[ -z "$WAN" ] || iptables -A INPUT -i $WAN -j input_wan
|
2006-10-04 23:05:48 +03:00
|
|
|
|
|
|
|
# allow
|
|
|
|
iptables -A INPUT -j LAN_ACCEPT # allow from lan/wifi interfaces
|
|
|
|
iptables -A INPUT -p icmp -j ACCEPT # allow ICMP
|
|
|
|
iptables -A INPUT -p gre -j ACCEPT # allow GRE
|
|
|
|
|
|
|
|
# reject (what to do with anything not allowed earlier)
|
|
|
|
iptables -A INPUT -p tcp -j REJECT --reject-with tcp-reset
|
|
|
|
iptables -A INPUT -j REJECT --reject-with icmp-port-unreachable
|
|
|
|
|
|
|
|
### OUTPUT
|
|
|
|
### (connections with the router as source)
|
|
|
|
|
|
|
|
# base case
|
|
|
|
iptables -P OUTPUT DROP
|
|
|
|
iptables -A OUTPUT -m state --state INVALID -j DROP
|
|
|
|
iptables -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
|
|
|
|
|
|
|
|
#
|
|
|
|
# insert accept rule or to jump to new accept-check table here
|
|
|
|
#
|
|
|
|
iptables -A OUTPUT -j output_rule
|
|
|
|
|
|
|
|
# allow
|
|
|
|
iptables -A OUTPUT -j ACCEPT #allow everything out
|
|
|
|
|
|
|
|
# reject (what to do with anything not allowed earlier)
|
|
|
|
iptables -A OUTPUT -p tcp -j REJECT --reject-with tcp-reset
|
|
|
|
iptables -A OUTPUT -j REJECT --reject-with icmp-port-unreachable
|
|
|
|
|
|
|
|
### FORWARDING
|
|
|
|
### (connections routed through the router)
|
|
|
|
|
|
|
|
# base case
|
|
|
|
iptables -P FORWARD DROP
|
|
|
|
iptables -A FORWARD -m state --state INVALID -j DROP
|
|
|
|
iptables -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
|
|
|
|
iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT
|
|
|
|
|
|
|
|
#
|
|
|
|
# insert accept rule or to jump to new accept-check table here
|
|
|
|
#
|
|
|
|
iptables -A FORWARD -j forwarding_rule
|
2006-12-20 07:58:41 +02:00
|
|
|
[ -z "$WAN" ] || iptables -A FORWARD -i $WAN -j forwarding_wan
|
2006-10-04 23:05:48 +03:00
|
|
|
|
|
|
|
# allow
|
2006-11-10 01:13:15 +02:00
|
|
|
iptables -A FORWARD -i $LAN -o $LAN -j ACCEPT
|
2006-10-04 23:05:48 +03:00
|
|
|
[ -z "$WAN" ] || iptables -A FORWARD -i $LAN -o $WAN -j ACCEPT
|
|
|
|
|
|
|
|
# reject (what to do with anything not allowed earlier)
|
|
|
|
# uses the default -P DROP
|
|
|
|
|
|
|
|
### MASQ
|
2007-03-27 19:45:10 +03:00
|
|
|
iptables -t nat -A PREROUTING -m state --state NEW -p tcp -j NEW
|
2006-10-04 23:05:48 +03:00
|
|
|
iptables -t nat -A PREROUTING -j prerouting_rule
|
2006-12-20 07:58:41 +02:00
|
|
|
[ -z "$WAN" ] || iptables -t nat -A PREROUTING -i "$WAN" -j prerouting_wan
|
2006-10-04 23:05:48 +03:00
|
|
|
iptables -t nat -A POSTROUTING -j postrouting_rule
|
2007-10-29 13:00:33 +02:00
|
|
|
### Only LAN
|
|
|
|
[ -z "$WAN" ] || iptables -t nat -A POSTROUTING --src $LAN_NET/$LAN_MASK -o $WAN -j MASQUERADE
|
2007-02-08 03:25:18 +02:00
|
|
|
|
|
|
|
iptables -t nat -A NEW -m limit --limit 50 --limit-burst 100 -j RETURN && \
|
|
|
|
iptables -t nat -A NEW -j DROP
|
|
|
|
|
2006-10-04 23:05:48 +03:00
|
|
|
## USER RULES
|
|
|
|
[ -f /etc/firewall.user ] && . /etc/firewall.user
|
|
|
|
[ -n "$WAN" -a -e /etc/config/firewall ] && {
|
2006-11-03 12:10:08 +02:00
|
|
|
export WAN
|
2006-10-04 23:05:48 +03:00
|
|
|
awk -f /usr/lib/common.awk -f /usr/lib/firewall.awk /etc/config/firewall | ash
|
|
|
|
}
|
|
|
|
}
|
2005-05-31 02:46:18 +03:00
|
|
|
|
2006-10-04 23:05:48 +03:00
|
|
|
stop() {
|
|
|
|
iptables -P INPUT ACCEPT
|
|
|
|
iptables -P OUTPUT ACCEPT
|
|
|
|
iptables -P FORWARD ACCEPT
|
|
|
|
iptables -F
|
2006-12-20 07:58:41 +02:00
|
|
|
iptables -X
|
2006-10-04 23:05:48 +03:00
|
|
|
iptables -t nat -P PREROUTING ACCEPT
|
|
|
|
iptables -t nat -P POSTROUTING ACCEPT
|
|
|
|
iptables -t nat -P OUTPUT ACCEPT
|
|
|
|
iptables -t nat -F
|
2006-12-20 07:58:41 +02:00
|
|
|
iptables -t nat -X
|
2006-04-05 05:09:22 +03:00
|
|
|
}
|