I managed to download an OpenVPN file from VPN Gate, imported it and connected it. The VPN was connected and my IP was changed, but I couldn't access certain page (which I believe is blocked by my ISP) as it would like when using my local wireless network. As far as I know a VPN should bypass any blocks by my ISP.
I tried, using DNS and direct IP address (also using both TCP and UDP method), but none of them works. I also tried connecting with both wireless and USB wired from my Android phone but none works, too. (wireless is tethered from Android phone)
Though, with same VPN configuration, I can reach the page with my phone.
I'm connected from a phone with LTE connection, and it's my only source of internet until this post edited.
Here is the output of ifconfig
, route
and traceroute google.com
in order. I typed it when connected to VPN.
Output of ip route show
(while connected to VPN) and resolv.conf
file:
$ ip route show
default via 10.211.1.98 dev tun0 proto static metric 50
default via 192.168.43.1 dev wlo1 proto static metric 600
10.211.1.98 dev tun0 proto kernel scope link src 10.211.1.97 metric 50
131.147.175.48 via 192.168.43.1 dev wlo1 proto static metric 600
169.254.0.0/16 dev wlo1 scope link metric 1000
192.168.43.0/24 dev wlo1 proto kernel scope link src 192.168.43.77 metric 600
$ cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1
How do I reach the blocked page, then?
traceroute
, run like this:traceroute google.com
. Likewise, please also includeifconfig
androute
. – Kaz Wolfe Jan 13 '18 at 16:42ip route show
andcat /etc/resolv.conf
? – vidarlo Jan 13 '18 at 17:11