Tuesday, April 30, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 1182  / 1 Year ago, fri, december 30, 2022, 3:15:08

When I run sudo iptables -L, I get:



Chain INPUT (policy ACCEPT)
target prot opt source destination
REJECT tcp -- anywhere anywhere tcp dpt:www flags:FIN,SYN,RST,ACK/SYN #conn/32 > 20 reject-with tcp-reset

Chain FORWARD (policy ACCEPT)
target prot opt source destination

Chain OUTPUT (policy ACCEPT)
target prot opt source destination


What does this mean?
I am pretty new to the whole Ubuntu world. I cannot access webmin at times, keep getting The connection has timed out error.


More From » iptables

 Answers
2

This rule limits the number of parallel connections coming from a single IP to your webserver. In this case no more than 20 parallel connections from a single IP are allowed.



Usually rules like these are used to protect against DoS attacks.



Given a browser which opens a new connection for every image included in the HTML file you might easily exceed this limit.


[#33725] Friday, December 30, 2022, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eighethod

Total Points: 358
Total Questions: 112
Total Answers: 119

Location: Cayman Islands
Member since Fri, Mar 4, 2022
2 Years ago
;