Disable upload and download, allow web browsing only.
Posted: Sun Jul 31, 2016 10:49 pm
Limit upload and download speed without slowing browsing speed with iptables
Hello,
I was searching for a way in order to disable downloading and uploading without slowing down browsing speed with iptables (Just for fun and for testing). If this way worked please add it as a new feature in the upcoming version
iptables -I INPUT -p tcp --dport 80 -m length --length 900:65535 -j DROP
iptables -I OUTPUT -p tcp --dport 80 -m length --length 900:65535 -j DROP
iptables -I FORWARD -p tcp --dport 80 -m length --length 900:65535 -j DROP
please tell me if these rules worked for you and please tell me if you noticed anything slowing down or changed
Hello,
I was searching for a way in order to disable downloading and uploading without slowing down browsing speed with iptables (Just for fun and for testing). If this way worked please add it as a new feature in the upcoming version
iptables -I INPUT -p tcp --dport 80 -m length --length 900:65535 -j DROP
iptables -I OUTPUT -p tcp --dport 80 -m length --length 900:65535 -j DROP
iptables -I FORWARD -p tcp --dport 80 -m length --length 900:65535 -j DROP
please tell me if these rules worked for you and please tell me if you noticed anything slowing down or changed