I´had set up an OpenVPN Server on Raspberry Pi.
The Connection from Windows Clients works fine, but I have problems with one of my Android device.
I am connected successfully to the Server and I also can ping and make an nslookup, for exmaple via the Terminal App, but i cannot access any website via Browser or e.g. via the Amazon App.
Here is my Client-Config:
Code: Select all
dev tun
client
proto udp
remote x.x.x.x port-number
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert client.crt
key client.key
tls-auth tls-auth.key 1
ns-cert-type server
comp-lzo
verb 3
tun-mtu 1400
mssfix 1360
auth SHA512
cipher AES-256-CBC
tls-version-min 1.2
tls-cipher TLS-ECDHE-RSA-WITH-AES-128-GCM-SHA256:TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256:TLS-ECDHE-RSA-WITH-AES-256-GCM-SHA384:TLS-DHE-RSA-WITH-AES-256-CBC-SHA256
My Server config:
Any idea?
Searching for a solution for hours now... :-/
Thank You!