-
Notifications
You must be signed in to change notification settings - Fork 24
/
configure.sh
executable file
·277 lines (220 loc) · 8.01 KB
/
configure.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#!/bin/bash
MY_VERSION="1.06"
# ------------------------------------------------------------------------------------------
# -= Arno's Iptables Firewall(AIF) =-
# Single- & multi-homed firewall script with DSL/ADSL support
#
# ~ In memory of my dear parents ~
#
# (C) Copyright 2001-2022 by Arno van Amersfoort
# Web : https://github.com/arno-iptables-firewall/aif
# Email : a r n o DOT v a n DOT a m e r s f o o r t AT g m a i l DOT c o m
# (note: you must remove all spaces and substitute the @ and the .
# at the proper locations!)
# ------------------------------------------------------------------------------------------
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
# 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.
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ------------------------------------------------------------------------------------------
# Check if the environment file exists and if so, load it
#########################################################
if [ -f ./share/arno-iptables-firewall/environment ]; then
. ./share/arno-iptables-firewall/environment
else
printf "\033[40m\033[1;31mERROR: Could not read environment file ./share/arno-iptables-firewall/environment!\033[0m\n\n" >&2
exit 2
fi
# Allow user to override firewall.conf location (undocumented)
FIREWALL_CONF=${1:-/etc/arno-iptables-firewall/firewall.conf}
sanity_check()
{
# root check
if [ "$(id -u)" != "0" ]; then
printf "\033[40m\033[1;31mERROR: Root check FAILED (you MUST be root to use this script)! Quitting...\033[0m\n\n" >&2
exit 1
fi
if [ ! -f "/etc/arno-iptables-firewall/firewall.conf" ]; then
printf "\033[40m\033[1;31mERROR: It looks like arno-iptables-firewall is not installed on this system (yet)! Quitting...\033[0m\n\n" >&2
exit 1
fi
check_command_error sed
check_command_error chmod
check_command_error chown
check_command_error cp
check_command_error ln
check_command_error rm
check_command_error ip
check_command_error cut
check_command_error diff
check_command_error sed
}
change_conf_var()
{
if ! grep -E -q "^#?$2=" "$1"; then
printf "\033[40m\033[1;31mERROR: Variable \"$2\" not found in \"$1\". File is probably outdated!\033[0m\n\n" >&2
elif [ -n "$3" ]; then
sed -i -e "s~^#\?$2=.*$~$2=\"$3\"~" "$1"
fi
}
get_conf_var()
{
printf "$1 "
read ANSWER
if [ -z "$ANSWER" ]; then
if [ -n "$4" ]; then
# echo "$4"
change_conf_var "$2" "$3" "$4"
# else
# echo "(None)"
fi
else
change_conf_var "$2" "$3" "$ANSWER"
fi
return 0
}
get_user_yn()
{
if [ "$2" = "y" ]; then
printf "$1 (Y/n)? "
else
printf "$1 (y/N)? "
fi
read ANSWER_WITH_CASE
ANSWER=`echo "$ANSWER_WITH_CASE" |tr A-Z a-z`
if [ "$ANSWER" = "y" -o "$ANSWER" = "yes" ]; then
return 0
fi
if [ "$ANSWER" = "n" -o "$ANSWER" = "no" ]; then
return 1
fi
# Fallback to default
if [ "$2" = "y" ]; then
return 0
else
return 1
fi
}
verify_interfaces()
{
if [ -z "$1" ]; then
if ! get_user_yn "No interface(s) specified. These are required! Continue anyway" "n"; then
return 1
fi
fi
IFS=' ,'
for interface in $1; do
if ! check_interface $interface; then
if ! get_user_yn "Interface \"$interface\" does not exist (yet). Continue anyway" "n"; then
return 1
fi
fi
done
return 0
}
list_interfaces()
{
ip -o -brief addr show
}
setup_conf_file()
{
# Create backup of old config
cp -fvb "$FIREWALL_CONF" "${FIREWALL_CONF}.bak"
echo ""
echo "Listing available interfaces:"
echo "-----------------------------"
list_interfaces
echo "-----------------------------"
printf "We will now setup the most basic settings of the firewall\n\n"
while true; do
printf "What is your external (aka. internet) interface (multiple interfaces should be comma separated)? "
read EXT_IF
if verify_interfaces $EXT_IF; then
change_conf_var "$FIREWALL_CONF" "EXT_IF" "$EXT_IF"
break
fi
done
if get_user_yn "Does your external interface get its IP through DHCP" "n"; then
change_conf_var "$FIREWALL_CONF" "EXT_IF_DHCP_IP" "1"
else
change_conf_var "$FIREWALL_CONF" "EXT_IF_DHCP_IP" "0"
fi
if get_user_yn "Do you want to enable IPv6 support" "y"; then
change_conf_var "$FIREWALL_CONF" "IPV6_SUPPORT" "1"
else
change_conf_var "$FIREWALL_CONF" "IPV6_SUPPORT" "0"
fi
if get_user_yn "Do you want to be pingable from the internet" "n"; then
change_conf_var "$FIREWALL_CONF" "OPEN_ICMP" "1"
else
change_conf_var "$FIREWALL_CONF" "OPEN_ICMP" "0"
fi
get_conf_var "Which TCP ports do you want to allow from the internet? (eg. 22=SSH, 80=HTTP, etc.) (comma separate multiple ports)?" "$FIREWALL_CONF" "OPEN_TCP" ""
get_conf_var "Which UDP ports do you want to allow from the internet? (eg. 53=DNS, etc.) (comma separate multiple ports)?" "$FIREWALL_CONF" "OPEN_UDP" ""
if get_user_yn "Do you have an internal(aka LAN) interface that you want to setup" "n"; then
while true; do
printf "What is your internal (aka. LAN) interface (multiple interfaces should be comma separated)? "
read INT_IF
if verify_interfaces $INT_IF; then
change_conf_var "$FIREWALL_CONF" "INT_IF" "$INT_IF"
local INTERNAL_NET=""
local INT_NET_BCAST_ADDRESS=""
IFS=' ,'
for interface in $INT_IF; do
INTERNAL_NET="$INTERNAL_NET${INTERNAL_NET:+ }$(get_network_ipv4_address_mask $interface)"
INT_NET_BCAST_ADDRESS="$INT_NET_BCAST_ADDRESS${INT_NET_BCAST_ADDRESS:+ }$(get_network_ipv4_broadcast $interface)"
done
if [ -n "$INTERNAL_NET" ] && [ -n "$INT_NET_BCAST_ADDRESS" ]; then
echo "* Auto-detected internal IPv4 net(s): $INTERNAL_NET"
echo "* Auto-detected internal IPv4 broadcast address(es): $INT_NET_BCAST_ADDRESS"
change_conf_var "$FIREWALL_CONF" "INTERNAL_NET" "$INTERNAL_NET"
change_conf_var "$FIREWALL_CONF" "INT_NET_BCAST_ADDRESS" "$INT_NET_BCAST_ADDRESS"
if get_user_yn "Do you want to enable NAT/masquerading for your internal subnet" "n"; then
change_conf_var "$FIREWALL_CONF" "NAT" "1"
change_conf_var "$FIREWALL_CONF" "NAT_INTERNAL_NET" '\$INTERNAL_NET'
else
change_conf_var "$FIREWALL_CONF" "NAT" "0"
fi
fi
break
fi
done
fi
# Make sure init script is executable and root owned
if [ -f /etc/init.d/arno-iptables-firewall ]; then
chown 0:0 /etc/init.d/arno-iptables-firewall
chmod 755 /etc/init.d/arno-iptables-firewall
fi
# Set the correct permissions on the config file
chown 0:0 "$FIREWALL_CONF"
chmod 600 "$FIREWALL_CONF"
}
# main line:
AIF_VERSION="$(grep "MY_VERSION=" ./bin/arno-iptables-firewall |sed -e "s/^MY_VERSION=\"//" -e "s/\"$//")"
printf "\033[40m\033[1;32mArno's Iptables Firewall(AIF) v$AIF_VERSION\033[0m\n"
printf "Configure Script v$MY_VERSION\n"
echo "-------------------------------------------------------------------------------"
sanity_check
if diff ./etc/arno-iptables-firewall/firewall.conf "$FIREWALL_CONF" >/dev/null; then
if get_user_yn "Your firewall.conf is not configured yet.\nDo you want me to help you setup a basic configuration" "y"; then
setup_conf_file
else
echo "* Skipped"
fi
else
if get_user_yn "Your firewall.conf looks already customized.\nModify configuration" "n"; then
setup_conf_file
else
echo "* Skipped"
fi
fi
echo ""
echo "** Configuration done **"
echo ""
exit 0