]> git.proxmox.com Git - pve-firewall.git/blame_incremental - debian/README
fix systemd warning about PIDFile directory
[pve-firewall.git] / debian / README
... / ...
CommitLineData
1Experimental software, only used for testing!
2=============================================
3
4
5Quick Intro
6===========
7
8VM firewall rules are read from:
9
10 /etc/pve/firewall/<VMID>.fw
11
12Cluster wide rules and security group are read from:
13
14 /etc/pve/firewall/cluster.fw
15
16Host firewall rules are read from:
17
18 /etc/pve/local/host.fw
19
20You can find examples in the example/ dir
21
22
23Use the following command to mange the firewall:
24
25To test the firewall configuration:
26
27./pvefw compile
28
29To start or update the firewall:
30
31./pvefw start
32
33To update the firewall rules (the firewall is not started if it
34is not already running):
35
36./pvefw update
37
38To stop the firewall:
39
40./pvefw stop
41
42
43Implementation details
44======================
45
46We write iptables rules directly, an generate the following chains
47as entry points in the 'forward' table:
48
49PVEFW-INPUT
50PVEFW-OUTPUT
51PVEFW-FORWARD
52
53We do not touch other (user defined) chains.
54
55Each VM can have its own firewall definition file in
56
57/etc/pve/firewall/<VMID>.fw
58
59That file has a section [RULES] to define firewall rules.
60
61Format is: TYPE ACTION IFACE SOURCE DEST PROTO D-PORT S-PORT
62
63* TYPE: IN|OUT|GROUP
64* ACTION: action or macro
65* IFACE: vm network interface (net0 - net5), or '-' for all interfaces
66* SOURCE: source IP address, or '-' for any source
67* DEST: dest IP address, or '-' for any destination address
68* PROTO: see /etc/protocols
69* D-PORT: destination port
70* S-PORT: source port
71
72A rule for inbound traffic looks like this:
73
74IN SSH(ACCEPT) net0
75
76Outbound rules looks like:
77
78OUT SSH(ACCEPT)
79
80Problems
81===================
82
83There are a number of restrictions when using iptables to filter
84bridged traffic. The physdev match feature does not work correctly
85when traffic is routed from host to bridge:
86
87 * when a packet being sent through a bridge entered the firewall on
88 another interface and was being forwarded to the bridge.
89
90 * when a packet originating on the firewall itself is being sent through
91 a bridge.
92
93We use a second bridge for each interface to avoid above problem.
94
95eth0-->vmbr0<--tapXiY (non firewalled tap)
96 <--linkXiY-->linkXiYp-->fwbrXiY-->tapXiY (firewalled tap)