iptables: block source-ip after connecto port
hi
i would like to drop all icoming packets of any ip tried to connect to telnet (port 23) which is meant as trap for port-scans, there are some samples out there but i got none of them working until now :-( iptables -N port-scan iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m limit --limit 3/m --limit-burst 5 -j LOG --log-prefix "portscan trap: " iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m recent --update --seconds 60 -j RETURN iptables -A port-scan -j DROP -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org |
iptables: block source-ip after connecto port
On 04-01-12 06:54, Reindl Harald wrote:
hi i would like to drop all icoming packets of any ip tried to connect to telnet (port 23) which is meant as trap for port-scans, there are some samples out there but i got none of them working until now :-( iptables -N port-scan iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m limit --limit 3/m --limit-burst 5 -j LOG --log-prefix "portscan trap: " iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m recent --update --seconds 60 -j RETURN iptables -A port-scan -j DROP Don't have much experience with iptables but shouldn't the rule apply to the INPUT filter? So, taking your rules, something like this: iptables -N port-scan iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m limit --limit 3/m --limit-burst 5 -j LOG --log-prefix "portscan trap: " iptables -A INPUT -j port-scan Regards, Patrick -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org |
iptables: block source-ip after connecto port
Am 04.01.2012 09:29, schrieb Patrick Lists:
> On 04-01-12 06:54, Reindl Harald wrote: >> hi >> >> i would like to drop all icoming packets of any ip tried >> to connect to telnet (port 23) which is meant as trap >> for port-scans, there are some samples out there but i got >> none of them working until now :-( >> >> iptables -N port-scan >> iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m limit --limit 3/m --limit-burst 5 -j LOG >> --log-prefix "portscan trap: " >> iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m recent --update --seconds 60 -j RETURN >> iptables -A port-scan -j DROP > > Don't have much experience with iptables but shouldn't the rule apply to the INPUT filter? So, taking your rules, > something like this: > > iptables -N port-scan > iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m limit --limit 3/m --limit-burst 5 -j LOG > --log-prefix "portscan trap: " > iptables -A INPUT -j port-scan this does not work (this is only the logline) i do not want to block (only) port 23, syn-packet on port 23 should be the trigger to block the remote-address on ALL incoming ports for 60 seconds and have no idea how to define this ____________________ it does even not drop port 23 and if it would it can this way not define drop packets to all other ports the first line is only logging.............. iptables -N port-scan iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m limit --limit 3/m --limit-burst 5 -j LOG --log-prefix "portscan trap: " iptables -A port-scan -p tcp --dport 23 --tcp-flags ALL SYN -m recent --update --seconds 60 -j DROP iptables -A INPUT -j port-scan -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org |
| All times are GMT. The time now is 04:51 AM. |
VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.