summaryrefslogtreecommitdiffstats
path: root/iptables/tests/shell/testcases/ipt-save/0005iptables_0
blob: d5eb76a74f596db6bb9b7364fe9b01a69f9e7985 (plain)
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
#!/bin/bash

set -e

tmpfile1=$(mktemp)
tmpfile2=$(mktemp)

clean_tmpfile()
{
	rm -f "$tmpfile1" "$tmpfile2"
}

trap clean_tmpfile EXIT


cat > $tmpfile1<<EOF
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT
-N FOO
-A FOO -j DROP
EOF

$XT_MULTI iptables -N FOO
$XT_MULTI iptables -A FOO -j DROP
$XT_MULTI iptables -S > $tmpfile2

diff -u $tmpfile1 $tmpfile2

rm -f $tmpfile1 $tmpfile2