Accessing iptables DROP records
Code:
num pkts bytes target prot opt in out source destination
7 0 0 DROP all -- * * 110.240.0.0/12 0.0.0.0/0 /* china */
10 11 472 DROP all -- * * 111.240.0.0/12 0.0.0.0/0 /* ~ */
I have these two drop records in my iptables. Most have pkts and bytes of 0. My question is: is pkts=11 and bytes=472 in record 10 showing that source 111.240.0.0/12 has been trying to hit my server again after I put the DROP record in?
Thanks.
|