]> git.proxmox.com Git - pve-firewall.git/blob - test/README
Fix #1841: ebtables: sort interfaces per guest
[pve-firewall.git] / test / README
1 =A simple simulator to test our iptables rules=
2
3 ==Invovation==
4
5 # ./fwtester.pl
6
7 This scans for subdirectory named test-* an invokes fwtester.pl
8 for each subdirectory with:
9
10 # ./fwtester.pl test-<name>/tests
11
12 ==Test directory contents==
13
14 Each test directory can contain the following files:
15
16 *cluster.fw Cluster wide firewall config
17
18 *host.fw Host firewall config
19
20 *<VMID>.fw Firewall config for VMs
21
22 *tests Test descriptions
23
24 ==Test description==
25
26 The test description file can contain one or more tests using
27 the following syntax:
28
29 { from => '<zone>' , to => '<zone>', action => '<DROP|RECECT|ACCEPT>', [ source => '<ip>',] [ dest => '<ip>',] [ proto => '<tcp|udp>',] [ dport => <port>,], [ sport => <port>,] }
30
31 The following <zone> definition exist currently:
32
33 * host: The host itself
34
35 * outside: The outside world (alias for 'vmbr0/eth0')
36
37 * vm<ID>: A qemu virtual machine
38
39 * ct<ID>: An openvz container
40
41 * nfvm: Non firewalled VM (alias for 'vmbr0/tapXYZ')
42
43 * vmbr<\d+>/<bport>: Unmanaged bridge port
44
45
46 ==Test examples==
47
48 { from => 'outside', to => 'ct200', dport => 22, action => 'ACCEPT' }
49 { from => 'vm101', to => 'vm100', dport => 443, action => 'ACCEPT', id => 'vm2vm'}
50
51 You can assign an 'id' to each test, so that you can run them separately:
52
53 ./fwtester.pl -d test-basic1/tests vm2vm
54