]> git.ipfire.org Git - ipfire-3.x.git/blame - firewall/src/zones.green
Move all packages to root.
[ipfire-3.x.git] / firewall / src / zones.green
CommitLineData
2534973b
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2009 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
22function zones_green_add() {
23 # $1 = device
24
25 zones_global_add $1
26 zones_policy_green $1
27
28}
29
30function zones_policy_green() {
31 local device
32
33 device=$1
34
35 # Accept any traffic from green
dbfeda6c
MT
36 iptables -A ZONE_${device}_POLICY -i $device -j ACCEPT
37 iptables -A ZONE_${device}_POLICY -o $device -j ACCEPT
2534973b 38}