]> git.proxmox.com Git - pve-firewall.git/blame_incremental - test/README
buildsys: use dpkg-architecture
[pve-firewall.git] / test / README
... / ...
CommitLineData
1=A simple simulator to test our iptables rules=
2
3==Invovation==
4
5 # ./fwtester.pl
6
7This scans for subdirectory named test-* an invokes fwtester.pl
8for each subdirectory with:
9
10 # ./fwtester.pl test-<name>/tests
11
12==Test directory contents==
13
14Each 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
26The test description file can contain one or more tests using
27the following syntax:
28
29 { from => '<zone>' , to => '<zone>', action => '<DROP|RECECT|ACCEPT>', [ source => '<ip>',] [ dest => '<ip>',] [ proto => '<tcp|udp>',] [ dport => <port>,], [ sport => <port>,] }
30
31The 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
51You can assign an 'id' to each test, so that you can run them separately:
52
53 ./fwtester.pl -d test-basic1/tests vm2vm
54