TCP: Mögliches SYN-Flooding auf Port 80. Anfrage wird gelöscht, obwohl net.ipv4.tcp_syncookies auf Null gesetzt ist

TCP: Mögliches SYN-Flooding auf Port 80. Anfrage wird gelöscht, obwohl net.ipv4.tcp_syncookies auf Null gesetzt ist

Ich habe ein seltsames Problem, net.ipv4.tcp_syncookiesist auf Null gesetzt. Aber ich habe immer noch die folgende Warnung in meinen /var/log/messages TCP: Possible SYN flooding on port 80. Dropping request.

sysctl -a | grep cooki
net.ipv4.tcp_syncookies = 0
net.ipv4.tcp_cookie_size = 0
=========================================
net.ipv4.tcp_max_syn_backlog=500000
=========================================

iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination   

=========================================
Centos 6.2 64bit
Linux 3.0.0+ #1 SMP Fri Oct 26 07:55:47 EEST 2012 x86_64 x86_64 x86_64 GNU/Linux

/var/log/messges

net_ratelimit: 6168 callbacks suppressed
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.
TCP: Possible SYN flooding on port 80. Dropping request.

Antwort1

Jede Anwendung übergibt einen Backlog-Parameter, wenn sie den Listen-Aufruf zum Abhören eines Ports macht. Wenn die Anwendung Verbindungsanfragen langsam verarbeitet, können Sie am Ende diese Nachrichten erhalten, die etwas irreführend sind. Der Parameter ist wie ein TCP_max_syn_backlog pro Port.

verwandte Informationen