Connected but can't access to any online content

Official client software for OpenVPN Access Server and OpenVPN Cloud.
Locked
Azsde
OpenVpn Newbie
Posts: 4
Joined: Tue Apr 22, 2014 4:13 pm

Connected but can't access to any online content

Post by Azsde » Tue Apr 22, 2014 4:21 pm

Hi,

I'm having an issue that I can't resolve and it is starting to drive me crazy :geek:

I had a OpenVPN server set up on a Raspberry Pi,everything worked great, but with all that hearthbleed talk, I decided to do a full re-install of my server.

Once I'm done, I try to connect to it with my windows computer with the GUI client, no problem so far, I can access any online content and whenever i check my external IP adress, it's the one from my server.

Then I try over my wifi network on my android phone, no problem once again.

BUT, when I try over cellular data, I can connect to the server, but no internet traffic doesn't seem to be working ...

Here are my settings :


My client configuration file :

Code: Select all

client
dev tun
proto udp
remote myserveradress 443
resolv-retry infinite
nobind
persist-key
persist-tun

ca ca.crt
cert client.crt
key client.key
comp-lzo
verb 3

My Server configuration file :

Code: Select all


port 443
proto udp
dev tun
ca ca.crt
cert server.crt
key server.key 
dh dh2048.pem
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "redirect-gateway def1 bypass-dhcp"
keepalive 10 120
comp-lzo
persist-key
persist-tun
status openvpn-status.log
verb 3
I'm completly lost, maybe someone can help me ?

Thank you in advance :P
Last edited by Azsde on Tue Apr 22, 2014 4:32 pm, edited 2 times in total.

Azsde
OpenVpn Newbie
Posts: 4
Joined: Tue Apr 22, 2014 4:13 pm

Re: Connected but can't access to any online content

Post by Azsde » Tue Apr 22, 2014 6:59 pm

I tried on windows with the connection from my android (share data connection) and i can't get any data either ...

Here's the difference in the log file, once on the wifi network from my phone (on the left), once on my ethernet connection (on the right) : http://www.diffchecker.com/auuwgm4m

Azsde
OpenVpn Newbie
Posts: 4
Joined: Tue Apr 22, 2014 4:13 pm

Re: Connected but can't access to any online content

Post by Azsde » Wed Apr 23, 2014 9:33 am

debbie10t wrote:Typically you would use port 443 with proto tcp-server (Server conf) and proto tcp-client (client conf) not proto udp ...
You have no idea how much I love you right now !! :D

I spent HOURS trying to fix this problem and I even wondered if my mobile provider didn't block my server on purpose :roll: (i use it mostly to speed up my data connection which is limited by the provider)

Thank you very much, my problem is now solved :mrgreen:

Locked