Hi,
I am sharing my internet connection with a few people and they dont want to listen about using kazaa. With all the stuff going on now with the RIAA and MPAA I dont want to take a chance that I will get in trouble since the internet connection is in my name. I am using IPTABLES on redhat for my router. I have googled for ways to block Kazaa Lite but keep coming up with the same line of code over and over which doesnt work. Sure it blocks people from downloading files from my network but I want to block access completely so that nobody on this network can d/l stuff on kazaa AT ALL! My current kazaa rules are like this:
Code:
iptables -A FORWARD -d 213.248.112.0/24 -j REJECT
iptables -A INPUT -p tcp -i $EXTI --dport 1214 -j DROP
iptables -A INPUT -p tcp -i $INTI --dport 1214 -j DROP
iptables -A FORWARD -p tcp -i $EXTI --dport 1214 -j REJECT
iptables -A FORWARD -p tcp -i $INTI --dport 1214 -j REJECT
I would really appriciate it if someone could give me a hand with this. Thanks again.
-Eric