summaryrefslogtreecommitdiffstats
path: root/iptables/tests/shell/testcases/ipt-restore/0009-table-name-comment_0
blob: 4e2202df986cf980cd7e6e693ecc61284c6f4607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# when restoring a ruleset, *tables-restore prefixes each rule with
# '-t <tablename>' so standard rule parsing routines may be used. This means
# that it has to detect and reject rules which already contain a table option.

$XT_MULTI iptables-restore <<EOF
*filter
-t nat -A FORWARD -j ACCEPT
COMMIT
EOF

[[ $? != 0 ]] || exit 1