I am currently using the following to limit IP connections:
iptables -A INPUT -p tcp --syn --dport 22 -m connlimit --connlimit-above 4 --connlimit-mask 32 -j REJECT --reject-with tcp-reset
To limit connection per IP to port 22, so the connection limit is 4, but some times I see some IPs still can connect with 50 connection. Any advice to fix this? My tables are as follow:
Chain INPUT (policy ACCEPT)
target prot opt source destination
REJECT tcp -- anywhere anywhere tcp dpt:20000 flags:FIN,SYN,RST,ACK/SYN #conn src/32 > 2 reject-with tcp-reset
REJECT tcp -- anywhere anywhere tcp dpt:ssh flags:FIN,SYN,RST,ACK/SYN #conn src/32 > 2 reject-with tcp-reset
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
netstat -ant | awk '{print $6}' | sort | uniq -c | sort -n
1 CLOSE_WAIT
1 established)
1 Foreign
6 FIN_WAIT2
11 LISTEN
12 TIME_WAIT
58 FIN_WAIT1
80 ESTABLISHED
90 LAST_ACK
135 SYN_RECV
added iptables
sudo iptables -v -x -n -L
Chain INPUT (policy ACCEPT 12000346 packets, 771042886 bytes)
pkts bytes target prot opt in out source destination
0 0 ACCEPT tcp -- lxcbr0 * 0.0.0.0/0 0.0.0.0/0 tcp dpt:53
0 0 ACCEPT udp -- lxcbr0 * 0.0.0.0/0 0.0.0.0/0 udp dpt:53
0 0 ACCEPT tcp -- lxcbr0 * 0.0.0.0/0 0.0.0.0/0 tcp dpt:67
0 0 ACCEPT udp -- lxcbr0 * 0.0.0.0/0 0.0.0.0/0 udp dpt:67
0 0 REJECT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:20000 flags:0x17/0x02 #conn src/32 > 2 reject-with tcp-reset
401401 20329584 REJECT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:22 flags:0x17/0x02 #conn src/32 > 2 reject-with tcp-reset
Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
0 0 ACCEPT all -- * lxcbr0 0.0.0.0/0 0.0.0.0/0
0 0 ACCEPT all -- lxcbr0 * 0.0.0.0/0 0.0.0.0/0
Chain OUTPUT (policy ACCEPT 11508472 packets, 493814350 bytes)
pkts bytes target prot opt in out source destination
sudo iptables -v -x -n -L
. In your summarized list are those 135 SYN_RECV connections all to port 20000 or 22? And all from the same or a small number of IPs? – Doug Smythies Aug 30 '16 at 15:00sudo netstat -ntu
and don't post process down to just counts, but rather edit that into your question. You can edit to hide your IP address if you want, but leave the bad guy IP addresses. – Doug Smythies Sep 01 '16 at 00:01/var/log/auth.log
? – Doug Smythies Sep 01 '16 at 15:10/etc/ssh/sshd_config
the default file? If you made any changes from default, tell us what they are. – Doug Smythies Sep 01 '16 at 15:32