forked from dpiquet/mypve-firewall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.conf
72 lines (57 loc) · 2 KB
/
global.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
############################################
#
# Global firewall configuration
#
############################################
# Trusted Networks and hosts
TRUSTNETS='10.228.3.1/32 194.199.227.0/24'
# PVE Peers, all required protocols are enabled between nodes
PROXMOX_PEERS='192.168.1.2 192.168.1.3'
# This node IP address
PROXMOX_ADDR='192.168.1.15'
# Uncomment this to allow routed Virtual Machines
#IP_FORWARD=1
# Uncomment this to allow logging
#LOG_INVALID_PACKETS=1
##################################
# Scanning prevention
##################################
#
# Uncomment HYPERVISOR_BLOCK_XMAS_SCAN to block XMAS Scan technique on the hypervisor
# Uncomment HYPERVISOR_BLOCK_NULL_SCAN to block NULL Scan technique on the hypervisor
# Uncomment HYPERVISOR_BLOCK_FIN_SCAN to block FIN Scan technique on the hypervisor
#
# Uncomment BRIDGED_VM_BLOCK_XMAS_SCAN to block XMAS Scan technique
# on the bridged virtual machines
# Uncomment BRIDGED_VM_BLOCK_NULL_SCAN to block NULL Scan technique
# on the bridged virtual machines
# Uncomment BRIDGED_VM_BLOCK_FIN_SCAN to block FIN Scan technique
# on the bridged virtual machines
#HYPERVISOR_BLOCK_XMAS_SCAN=1
#HYPERVISOR_BLOCK_NULL_SCAN=1
#HYPERVISOR_BLOCK_FIN_SCAN=1
#BRIDGED_VM_BLOCK_XMAS_SCAN=1
#BRIDGED_VM_BLOCK_NULL_SCAN=1
#BRIDGED_VM_BLOCK_FIN_SCAN=1
#####################################
# STRICT TCP SYN
#####################################
#
# uncomment HYPERVISOR_STRICT_SYN to drop NEW connexions without SYN flag on the hypervisor
# uncomment BRIDGED_VM_STRICT_SYN to drop NEW connexions
# without SYN flag on the bridged virtual machines
#
#HYPERVISOR_STRICT_SYN=1
#BRIDGED_VM_STRICT_SYN=1
#####################################
# IPTABLES user chains names
#####################################
# Iptables User Chain names
#COMMON_VM_CHAIN='common_vm_newin'
#VM_CHAIN='vm_newin'
#PROXMOX_CHAIN='proxmox_newin'
#LOGDROP_CHAIN='log_drop'
######################################
# path to iptables executable
######################################
#IPTABLES='/sbin/iptables'