]> git.proxmox.com Git - pve-firewall.git/blame - example/100.fw
switch back to gnu99 std
[pve-firewall.git] / example / 100.fw
CommitLineData
ec6b1100 1# Example VM firewall configuration
41b6fef1 2
7e8b8ae7
AD
3# VM specific firewall options
4[OPTIONS]
41b6fef1
DM
5
6# disable/enable the whole thing
7enable: 1
8
9# disable/enable MAC address filter
10macfilter: 0
11
12# default policy
72f63fde
DM
13policy_in: DROP
14policy_out: REJECT
41b6fef1 15
178a63be
DM
16# log dropped incoming connection
17log_level_in: info
18
19# disable log for outgoing connections
20log_level_out: nolog
21
41b6fef1
DM
22# filter SMURFS
23nosmurfs: 1
24
25# filter illegal combinations of TCP flags
26tcpflags: 1
27
28# enable DHCP
29dhcp: 1
30
ec6b1100 31
92e976b3 32[RULES]
ec6b1100 33
92e976b3 34#TYPE ACTION IFACE SOURCE DEST PROTO D-PORT S-PORT
41b6fef1 35
92e976b3
DM
36IN SSH(ACCEPT) net0
37IN SSH(ACCEPT) net0 # a comment
38IN SSH(ACCEPT) net0 192.168.2.192 # only allow SSH from 192.168.2.192
39|IN SSH(ACCEPT) net0 # disabled rule
ec6b1100 40
92e976b3
DM
41# add a security group
42GROUP group1 net0
ec6b1100 43
92e976b3
DM
44OUT DNS(ACCEPT) net0
45OUT Ping(ACCEPT) net0
46OUT SSH(ACCEPT)
ec6b1100
DM
47
48
49