summaryrefslogtreecommitdiffstats
path: root/tests/xmlfiles/71-rule-real.xml
diff options
context:
space:
mode:
authorArturo Borrero <arturo.borrero.glez@gmail.com>2013-07-25 22:44:40 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-07-25 22:55:44 +0200
commit02295f3d01d13adba9fefeb7b9a40ea379aded1b (patch)
tree608134747cebe3518cccec8e9b4fc16158cd0503 /tests/xmlfiles/71-rule-real.xml
parentab12dcd69bc56897f3138d2ead5294f775238166 (diff)
tests: xml: add realistic XML tests files
This patch refresh current XML testfiles with some realworld expressions extracted from rules. The nft instruction itself is added as a comment for future references. All XMl files are now indented with tabs instead of spaces. Also, a bunch of new realworld rules with mixed expressions are added. I used this command to get the XML formatted with tabs: $ export XMLLINT_INDENT=$'\t' $ xmllint --format file.xml The xmllint tool is included in the libxml2-utils package (at least on debian systems). Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/xmlfiles/71-rule-real.xml')
-rw-r--r--tests/xmlfiles/71-rule-real.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/xmlfiles/71-rule-real.xml b/tests/xmlfiles/71-rule-real.xml
new file mode 100644
index 0000000..6bed65b
--- /dev/null
+++ b/tests/xmlfiles/71-rule-real.xml
@@ -0,0 +1,31 @@
+<rule family="ip" table="filter" chain="output" handle="35" version="0">
+ <rule_flags>0</rule_flags>
+ <expr type="payload">
+ <dreg>1</dreg>
+ <offset>9</offset>
+ <len>1</len>
+ <base>network</base>
+ </expr>
+ <expr type="cmp">
+ <sreg>1</sreg>
+ <op>eq</op>
+ <cmpdata>
+ <data_reg type="value">
+ <len>1</len>
+ <data0>0x00000006</data0>
+ </data_reg>
+ </cmpdata>
+ </expr>
+ <expr type="payload">
+ <dreg>1</dreg>
+ <offset>2</offset>
+ <len>2</len>
+ <base>transport</base>
+ </expr>
+ <expr type="lookup">
+ <set>map1</set>
+ <sreg>1</sreg>
+ <dreg>0</dreg>
+ </expr>
+</rule>
+<!-- nft add rule ip filter output tcp dport vmap { 22 => accept, 23 => drop, } -->