Connection succeeds, don't receive IP
Sometime in the last day or so I stopped receiving a new IP after connecting. Connection succeeds, but nothing routes over the VPN interface.
Connecting to: us-west.privateinternetaccess.com
Are there known issues right now? It's not a cache issue or anything like that.
Thanks.
Connecting to: us-west.privateinternetaccess.com
Are there known issues right now? It's not a cache issue or anything like that.
Thanks.
Comments
While connected to the VPN? This should give us the information we need to know why it's not being routed properly.
# ip addr
I suspect the issue is with your routing table: your network interface appears to be configured twice.
You have two default routes to your ISP sandwiched between PIA's default route, so it's likely the reason why you're still leaking through your ISP.
How are you connecting to your ISP? Are you just using NetworkManager or something like dhcpcd/dhclient/netctl/systemd-networkd/wicd?
You can probably try removing the extra route, but it won't persist across reboots:
It's also possible however that doing so will end up removing both of them.
Another possible approach is to do what the app does:
This essentially adds two routes that are one bit more precise than the default one, so it will be used regardless. Note that with this one, you will need to add the two routes every single time you connect OpenVPN, and won't persist across reboots either.
Hope this helps!