Results 11 to 14 of 14
Originally Posted by lefter
[root@localhost root]# iptables -A input -s 127.0.0.1 -p icmp -j DENY
use DROP.. not DENY...
- 11-08-2007 #11
- 11-08-2007 #12
Yeah a couple of things here.
FIRST: Don't highjack other peoples posts. Start your own!
SECOND: By doing what you are trying to do you are going to break your system!!
Enough said.
- 11-10-2007 #13Just Joined!
- Join Date
- Jul 2006
- Posts
- 14
Anyone have an answer for me? Again, i'm trying to block incoming connections to my ftp data ports (2000-4000) from certain ip ranges, but not incoming connections to my ftp server port itself (21)
- 11-15-2007 #14
iptables -I INPUT -s 192.168.0.0/24 -p tcp --dport 2000:4000 -j DROP



Reply With Quote
