mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
3ba789ccd5
Create a nwfilterxml2firewalltest to exercise the ebiptables_driver.applyNewRules method with a variety of different XML input files. The XML input files are taken from the libvirt-tck nwfilter tests. While the nwfilter tests verify the final state of the iptables chains, this test verifies the set of commands invoked to create the chains. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
25 lines
581 B
XML
25 lines
581 B
XML
<filter name='tck-testcase'>
|
|
<uuid>0a5288ea-612c-834a-6bbf-82a03a1a3244</uuid>
|
|
|
|
<!-- allow incoming ssh connections -->
|
|
<rule action='accept' direction='in' priority='100'>
|
|
<tcp dstportstart='22'/>
|
|
</rule>
|
|
|
|
<!-- allow incoming ICMP (ping) packets -->
|
|
<rule action='accept' direction='in' priority='200'>
|
|
<icmp/>
|
|
</rule>
|
|
|
|
<!-- allow all outgoing traffic -->
|
|
<rule action='accept' direction='in' priority='300'>
|
|
<all/>
|
|
</rule>
|
|
|
|
<!-- drop all other traffic -->
|
|
<rule action='drop' direction='inout' priority='1000'>
|
|
<all/>
|
|
</rule>
|
|
|
|
</filter>
|