sysctl.conf: set net.ipv4.tcp_ecn = 0 and net.ipv4.tcp_window_scaling = 0
This commit is contained in:
parent
f95ef7b25c
commit
62263a2704
6
Makefile
6
Makefile
@ -77,12 +77,6 @@ install-files:
|
|||||||
install: install-dirs install-tools install-locales install-files
|
install: install-dirs install-tools install-locales install-files
|
||||||
|
|
||||||
dist: clean
|
dist: clean
|
||||||
@case `sed 15q ChangeLog` in \
|
|
||||||
*"$(VERSION)"*) : ;; \
|
|
||||||
*) \
|
|
||||||
echo "ChangeLog not updated; not releasing" 1>&2;\
|
|
||||||
exit 1;; \
|
|
||||||
esac
|
|
||||||
@git log > ChangeLog.git
|
@git log > ChangeLog.git
|
||||||
@mkdir /tmp/$(distdir)
|
@mkdir /tmp/$(distdir)
|
||||||
@cp -a * /tmp/$(distdir)/
|
@cp -a * /tmp/$(distdir)/
|
||||||
|
@ -20,7 +20,7 @@ net.ipv4.conf.all.log_martians = 1
|
|||||||
net.ipv4.conf.all.rp_filter = 1
|
net.ipv4.conf.all.rp_filter = 1
|
||||||
|
|
||||||
# Enable ECN (Explicit Congestion Notification) in TCP connections
|
# Enable ECN (Explicit Congestion Notification) in TCP connections
|
||||||
#net.ipv4.tcp_ecn = 1
|
net.ipv4.tcp_ecn = 0
|
||||||
|
|
||||||
# Enable syncookies to hosts when the kernels syn backlog queue is overflowed
|
# Enable syncookies to hosts when the kernels syn backlog queue is overflowed
|
||||||
net.ipv4.tcp_syncookies = 1
|
net.ipv4.tcp_syncookies = 1
|
||||||
@ -37,3 +37,5 @@ net.ipv4.icmp_echo_ignore_broadcasts = 1
|
|||||||
# Controls whether core dumps will append the PID to the core filename.
|
# Controls whether core dumps will append the PID to the core filename.
|
||||||
# Useful for debugging multi-threaded applications.
|
# Useful for debugging multi-threaded applications.
|
||||||
kernel.core_uses_pid = 1
|
kernel.core_uses_pid = 1
|
||||||
|
|
||||||
|
net.ipv4.tcp_window_scaling = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user