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>
21 lines
1.1 KiB
Plaintext
21 lines
1.1 KiB
Plaintext
iptables -A FJ-vnet0 -p all -m state --state ESTABLISHED,RELATED -m comment \
|
|
--comment 'out: existing and related (ftp) connections' -j RETURN
|
|
iptables -A HJ-vnet0 -p all -m state --state ESTABLISHED,RELATED -m comment \
|
|
--comment 'out: existing and related (ftp) connections' -j RETURN
|
|
iptables -A FP-vnet0 -p all -m state --state ESTABLISHED -m comment \
|
|
--comment 'in: existing connections' -j ACCEPT
|
|
iptables -A FP-vnet0 -p tcp --dport 21:22 -m state --state NEW -m comment \
|
|
--comment 'in: ftp and ssh' -j ACCEPT
|
|
iptables -A FP-vnet0 -p icmp -m state --state NEW -m comment \
|
|
--comment 'in: icmp' -j ACCEPT
|
|
iptables -A FJ-vnet0 -p udp --dport 53 -m state --state NEW -m comment \
|
|
--comment 'out: DNS lookups' -j RETURN
|
|
iptables -A HJ-vnet0 -p udp --dport 53 -m state --state NEW -m comment \
|
|
--comment 'out: DNS lookups' -j RETURN
|
|
iptables -A FJ-vnet0 -p all -m comment \
|
|
--comment 'inout: drop all non-accepted traffic' -j DROP
|
|
iptables -A FP-vnet0 -p all -m comment \
|
|
--comment 'inout: drop all non-accepted traffic' -j DROP
|
|
iptables -A HJ-vnet0 -p all -m comment \
|
|
--comment 'inout: drop all non-accepted traffic' -j DROP
|