Debugging iOS requests timing out on Cellular data

Official client software for OpenVPN Access Server and OpenVPN Cloud.
Post Reply
johnryan
OpenVpn Newbie
Posts: 1
Joined: Tue Mar 12, 2024 3:54 am

Debugging iOS requests timing out on Cellular data

Post by johnryan » Tue Mar 12, 2024 3:59 am

Hello!

I've been trying to get OpenVPN set up so I can access my home network from my phone. I've made a lot of progress but am stuck.

Currently I'm able to connect via the OpenVPN Connect app whether on wifi or cellular, but when on cellular the ip addresses don't connect. Safari just shows a spinner and the request just never resolves (though this seems to be the same behavior whether the vpn is connected or not).

I'm using the 172.16.x.x subnet - are there any recommendations for how I can debug this issue or suggestions for what may be wrong?

Edit: Adding more of the config

Code: Select all

dev tun
tls-client

remote xxxxxx 1194

# The "float" tells OpenVPN to accept authenticated packets from any address,
# not only the address which was specified in the --remote option.
# This is useful when you are connecting to a peer which holds a dynamic address
# such as a dial-in user or DHCP client.
# (Please refer to the manual of OpenVPN for more information.)

#float

# If redirect-gateway is enabled, the client will redirect it's
# default network gateway through the VPN.
# It means the VPN connection will firstly connect to the VPN Server
# and then to the internet.
# (Please refer to the manual of OpenVPN for more information.)

#redirect-gateway def1

# dhcp-option DNS: To set primary domain name server address.
# Repeat this option to set secondary DNS server addresses.

# dhcp-option DNS xxx

pull

# If you want to connect by Server's IPv6 address, you should use
# "proto udp6" in UDP mode or "proto tcp6-client" in TCP mode
proto udp

script-security 2


comp-lzo

reneg-sec 0

cipher AES-256-CBC

auth SHA512

auth-user-pass
<ca>
//CERTIFICATE

</ca>

Thanks!

Post Reply