سلام guys، در اخیرا در یک شبکه اختصاصی مجازی, اما از آن احتمالا تبلیغ خود در نظر گرفته شود که من آنها را ارسال نمی. از آنجایی که من کردم VPN به هر حال، من قادر به اقامت بد واقعا آسان شده بود. اما قبل از آن را بار خواهد بود واقعا آرام، همه چیز دیگری لود شده به راحتی و سریع. به عنوان پسوند کروم گرفتم و آن را لود سریع با vpn در در کروم، اما زمانی که من باز صفری تا آن به سرعت بارگذاری نشده. این می تواند نشانه که ارائه دهنده اینترنت من است من throttling?
4 دیدگاه برای “ارائه دهنده اینترنت من بد throttling است?”
دیدگاهها بسته شدهاند.
Could be unintentionally bad routes.
Reddit uses a CDN (content delivery network) – you’re probably just being routed to a less heavily utilized CDN node.
You can test this by running a ‘traceroute http://www.reddit.com‘ while connected to and then disconnected from your VPN. The last hop will almost certainly be different.
I am highly doubtful they’re actively throttling Reddit.
edit: note, if you’re on Windows it’s ‘tracert.’
Yes.
Or reddit has regional servers and you’re moving from a heavily loaded one to a lightly loaded one.
I use a VPN as a matter of course and find changing which region I’m exiting into often helps reddit performance
i use arch and https://aur.archlinux.org/packages/private-internet-access-vpn/
that package has been the easiest one so far, basically it uses your dns to connect to pia vpn so you dont have to change it to ip, then it changes to pia dns once connected with /etc/resolv.conf file, just 2 lines
i have edited one file: /etc/NetworkManager/dispatcher.d/pia-vpn
#!/bin/bash
#/etc/NetworkManager/dispatcher.d/pia-vpn
interface=”$1″
status=$2
case $status in
vpn-up)
if [[ $interface == “tun0” ]]; then
chattr -i /etc/resolv.conf
echo -e “nameserver 209.222.18.222nnameserver 209.222.18.218**nnameserver 192.168.1.1**” > /etc/resolv.conf
chattr +i /etc/resolv.conf
fi
;;
vpn-down)
if [[ $interface == “tun0” ]]; then
chattr -i /etc/resolv.conf
fi
;;
esac
the address in bold uses my routers dns as fallback because sometimes those 2 pia vpns dns’s are slow be sure to open 1194-1198 udp on ufw and allow route forwarding in /etc/sysctl.conf for ipv4 and to and from tun0 and its subnet of 10.0.0.0/8
if you’re doing super illegal stuff you may want to be more careful about dns leaks although its not the best practice using a vpn with google dns or 4.2.2.1 something like that has never got my door kicked in but you know its in a database somewhere slowly filling out your blackmail portfolio 😀
hope this helps you