I recently figured out the modem/router I found in a car I purchased is compatible with Time Warner. It saves me $4 bucks a month, and is DOCSIS 3.0. Well since I own the thing, I wanted to find some mods possibly for it, but the interwebs produced a video saying Time Warner throttles youtube.
Im curious if this is legit, and would I get in trouble with TWC for doing this.
Im curious if this is legit, and would I get in trouble with TWC for doing this.
PC:
Go to start, type in CMD and right click and open as administrator, then type
netsh advfirewall firewall add rule name="YoutubeHack" dir=in action=block remoteip=173.194.55.0/24,206.111.0.0/16 enable=yes
To remove this rule, type:
netsh advfirewall firewall delete rule name="YoutubeHack"
For Macs:
sudo ipfw add reject src-ip 173.194.55.0/24 in
sudo ipfw add reject src-ip 206.111.0.0/16 in
To check if they were added:
sudo ipfw list
Go to start, type in CMD and right click and open as administrator, then type
netsh advfirewall firewall add rule name="YoutubeHack" dir=in action=block remoteip=173.194.55.0/24,206.111.0.0/16 enable=yes
To remove this rule, type:
netsh advfirewall firewall delete rule name="YoutubeHack"
For Macs:
sudo ipfw add reject src-ip 173.194.55.0/24 in
sudo ipfw add reject src-ip 206.111.0.0/16 in
To check if they were added:
sudo ipfw list
Comment