repo.or.cz
/
ferm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix previous NEWS commit, oops
[ferm.git]
/
test
/
misc
/
chain.ferm
blob
6c030cb0a0cf059823f9007951ccfe5353dce86e
1
table filter {
2
chain FOO {
3
ACCEPT;
4
}
5
chain INPUT {
6
# jump to previously declared chain
7
proto tcp jump FOO;
8
# jump to chain which is not yet declared
9
proto udp jump BAR;
10
}
11
chain BAR {
12
DROP;
13
}
14
}