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
/
comments.ferm
blob
62e4f4074c16ff105071427ff476b5d023a28cbb
1
# test comment syntax
2
3
@def $EMPTY = (
4
# only a comment
5
);
6
7
@def $ONE = (
8
192.168.0.1 # comment after data
9
);
10
11
@def $TWO = (
12
# nothing in this line
13
192.168.0.2
14
);
15
16
table filter chain INPUT {
17
saddr (
18
192.168.0.3 #foo
19
) ACCEPT;
20
daddr $EMPTY DROP;
21
saddr $ONE REJECT;
22
daddr $TWO ACCEPT;
23
}