[pve-devel] [PATCH pve-firewall] add nf_conntrack_tcp_be_liberal option
Alexandre Derumier
aderumier at odiso.com
Wed Feb 20 11:05:50 CET 2019
Allow to not flag as invalid, out of windows packets.
Can't persist in sysctl at boot, because if need to be set
after conntrack loading.
Signed-off-by: Alexandre Derumier <aderumier at odiso.com>
---
src/PVE/Firewall.pm | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/src/PVE/Firewall.pm b/src/PVE/Firewall.pm
index 2125d3b..0f7ad07 100644
--- a/src/PVE/Firewall.pm
+++ b/src/PVE/Firewall.pm
@@ -1248,6 +1248,12 @@ our $host_option_properties = {
default => 0,
optional => 1,
},
+ nf_conntrack_tcp_be_liberal => {
+ description => "Don't flag out of window packets as invalid.",
+ type => 'boolean',
+ default => 0,
+ optional => 1,
+ },
};
our $vm_option_properties = {
@@ -2646,7 +2652,7 @@ sub parse_hostfw_option {
my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
- if ($line =~ m/^(enable|nosmurfs|tcpflags|ndp|log_nf_conntrack|nf_conntrack_allow_invalid):\s*(0|1)\s*$/i) {
+ if ($line =~ m/^(enable|nosmurfs|tcpflags|ndp|log_nf_conntrack|nf_conntrack_allow_invalid|nf_conntrack_tcp_be_liberal):\s*(0|1)\s*$/i) {
$opt = lc($1);
$value = int($2);
} elsif ($line =~ m/^(log_level_in|log_level_out|tcp_flags_log_level|smurf_log_level):\s*(($loglevels)\s*)?$/i) {
@@ -4078,6 +4084,8 @@ sub apply_ruleset {
update_nf_conntrack_tcp_timeout_established($hostfw_conf);
+ update_nf_conntrack_tcp_be_liberal($hostfw_conf);
+
update_nf_conntrack_logging($hostfw_conf);
}
@@ -4115,6 +4123,16 @@ sub update_nf_conntrack_tcp_timeout_established {
PVE::ProcFSTools::write_proc_entry("/proc/sys/net/netfilter/nf_conntrack_tcp_timeout_established", $value);
}
+sub update_nf_conntrack_tcp_be_liberal {
+ my ($hostfw_conf) = @_;
+
+ my $options = $hostfw_conf->{options} || {};
+
+ my $value = defined($options->{nf_conntrack_tcp_be_liberal}) ? $options->{nf_conntrack_tcp_be_liberal} : 0;
+
+ PVE::ProcFSTools::write_proc_entry("/proc/sys/net/netfilter/nf_conntrack_tcp_be_liberal", $value);
+}
+
my $log_nf_conntrack_enabled = undef;
sub update_nf_conntrack_logging {
my ($hostfw_conf) = @_;
--
2.11.0
More information about the pve-devel
mailing list