View previous topic :: View next topic |
Author |
Message |
WarMachine Apprentice

Joined: 15 Jul 2002 Posts: 181
|
Posted: Thu Feb 06, 2003 9:59 pm Post subject: easy IPtables question |
|
|
drop all packets from any ip 208.13.*.* that come in on the http port |
|
Back to top |
|
 |
Larde Guru


Joined: 07 Jun 2002 Posts: 313 Location: Duesseldorf, Germany
|
Posted: Thu Feb 06, 2003 10:09 pm Post subject: |
|
|
iptables -I INPUT -s 208.13.0.0/16 -p TCP --dport 80 -j DROP
Your might want the FORWARD chain as well...
Yours,
Larde. _________________ Someday this will be my home... http://moonage.net/
I'll make you a deal
I'll say I came from Earth and my tongue is taped
|
|
Back to top |
|
 |
|