Skip to content

Commit

Permalink
reversed order for fragmentation thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
klaver authored Aug 15, 2018
1 parent 597f0c0 commit e5d3aca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sysctl.conf
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,11 @@ net.ipv4.tcp_max_orphans = 16384
net.ipv4.tcp_orphan_retries = 0

# Limit the maximum memory used to reassemble IP fragments (CVE-2018-5391)
net.ipv4.ipfrag_high_thresh = 262144
net.ipv6.ip6frag_high_thresh = 262144
net.ipv4.ipfrag_low_thresh = 196608
net.ipv6.ip6frag_low_thresh = 196608
net.ipv4.ipfrag_high_thresh = 262144
net.ipv6.ip6frag_high_thresh = 262144


# don't cache ssthresh from previous connection
net.ipv4.tcp_no_metrics_save = 1
Expand Down

0 comments on commit e5d3aca

Please sign in to comment.