I presume that I have a routing problem and I'd guess that '[ifconfig] [10.10.50.10] [10.10.50.9]' is trying to tell me what the problem is. But, I can't understand/see the problem.
Can anyone give me a clue?
Thank you.
- nello
iOS Log
Code: Select all
2015-06-23 15:43:54 SSL Handshake: TLSv1.0/TLS-DHE-RSA-WITH-AES-256-CBC-SHA
2015-06-23 15:43:54 Session is ACTIVE
2015-06-23 15:43:54 EVENT: GET_CONFIG
2015-06-23 15:43:54 Sending PUSH_REQUEST to server...
2015-06-23 15:43:54 OPTIONS:
0 [redirect-gateway] [def1]
1 [dhcp-option] [DNS] [10.10.49.1]
2 [route] [10.10.49.0] [255.255.255.0]
3 [route] [10.10.50.1]
4 [topology] [net30]
5 [ping] [10]
6 [ping-restart] [120]
7 [ifconfig] [10.10.50.10] [10.10.50.9]
2015-06-23 15:43:54 LZO-ASYM init swap=0 asym=0
2015-06-23 15:43:54 EVENT: ASSIGN_IP
2015-06-23 15:43:54 Connected via tun
2015-06-23 15:43:54 EVENT: CONNECTED @<OpenVPN Server FQDN>:443 (<OpenVPN Server IP Address>) via /UDPv4 on tun/10.10.50.10/
2015-06-23 15:43:54 NET Internet:ReachableViaWiFi/-R t----l-
2015-06-23 15:43:55 SetStatus Connected
iPhone.ovpn
Code: Select all
#
# Client connection parameters
client
dev tun
proto udp
nobind
comp-lzo
persist-key
;cipher x
;user nobody
;group nobody
#
# Server is only <OpenVPN Server FQDN>
remote <OpenVPN Server FQDN> 443
resolv-retry infinite
remote-cert-tls server
verify-x509-name <OpenVPN Server FQDN> name
<tls-auth>
-----BEGIN OpenVPN Static key V1-----
...
-----END OpenVPN Static key V1-----
</tls-auth>
key-direction 1
#
# Access Internet through server
dhcp-option DNS 10.10.49.1
redirect-gateway def1
#
# Silence repeating messages
mute 10
#
# Silence duplicate packet warnings
mute-replay-warnings
#
# Log file verbosity
# 0 Silent, except for fatal errors
# 4 General usage
# 5-6 Debug connection problems
# 9 Extremely verbose
verb 6
#
# Certificate authority public key
<ca>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</ca>