
Youtube
We have to wait for the video to load> 360p for a few seconds, breaks in the middle of viewing have become commonplace and this is with a fairly wide channel.

The reason is that providers are underestimating the speed of video caching servers, all you need to do is block access to them.
In order for the request to go past the cdn of YouTube servers, you need to block the range of ip addresses (in the router or on the computer).
173.194.55.0/24 and 206.111.0.0/16
Under Windows (except for xp) with the firewall turned on, it’s enough to open cmd with administrator rights.
in poppy

The reason is that providers are underestimating the speed of video caching servers, all you need to do is block access to them.
In order for the request to go past the cdn of YouTube servers, you need to block the range of ip addresses (in the router or on the computer).
173.194.55.0/24 and 206.111.0.0/16
Under Windows (except for xp) with the firewall turned on, it’s enough to open cmd with administrator rights.
netsh advfirewall firewall add rule name="youtube" dir=in action=block remoteip=173.194.55.0/24,206.111.0.0/16 enable=yes
in poppy
sudo ipfw add reject src-ip 173.194.55.0/24 in
sudo ipfw add reject src-ip 206.111.0.0/16 in
linux
iptables -I INPUT -s 206.111.0.0/16 -j DROP
iptables -I INPUT -s 173.194.55.0/24 -j DROP