This is my first time attempting to make a JFFS script. I am doing this because I cannot find any other way to block an entire range of IP addresses inside the Merlin firmware on my RT-AC66R.
Supposidly blocking these sets of IP addresses will eliminate your ISP (Time Warner) throttling your bandwidth at peak times.
I haven't been able to use YouTube consistantly in like a year, with a 50 mbit connection. Anyways I have made the script called firewall-start in the jffs/scripts folder, and have used putty to make it executable. This is the script.
#!/bin/sh
#script for fixing throttled youtube
iptables -I INPUT -s 173.194.55.0/24 -j DROP
iptables -I INPUT -s 206.111.0.0/16 -j DROP
That is all that there is in the file. Should this work? I have it in there and don't notice any difference, but not really sure how to test to see that it is working.
Thank you for any advice or help you can give. I would love to figure this out and get it out there for people using this router as the solution seems to work for most people.
Supposidly blocking these sets of IP addresses will eliminate your ISP (Time Warner) throttling your bandwidth at peak times.
I haven't been able to use YouTube consistantly in like a year, with a 50 mbit connection. Anyways I have made the script called firewall-start in the jffs/scripts folder, and have used putty to make it executable. This is the script.
#!/bin/sh
#script for fixing throttled youtube
iptables -I INPUT -s 173.194.55.0/24 -j DROP
iptables -I INPUT -s 206.111.0.0/16 -j DROP
That is all that there is in the file. Should this work? I have it in there and don't notice any difference, but not really sure how to test to see that it is working.
Thank you for any advice or help you can give. I would love to figure this out and get it out there for people using this router as the solution seems to work for most people.