iOS to Synology NAS VPN server

Official client software for OpenVPN Access Server and OpenVPN Cloud.
mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

iOS to Synology NAS VPN server

Post by mbierman » Fri Jun 29, 2018 4:33 am

Ok this used to work beautifully, but I changed some configurations (none that I thought were related to VPN) and it isn't working and I need some help getting it working.

I simply want to use VPN from iPhone 6S (running iOS 12 beta) and iPad Air2 (iOS 11.4 I think whatever is the latest) to my Synology DS412+.

I have been using OpenVPN in the past:

I configure the server using the Synology GUI:
Transport: UDP
Encryption: BF-CBC
Auth: SHA1
I forward port 1194 through the firewall.

Again, If anyone has recommendations on better encryption or auth, etc. I'd love to know how to do this better!

I export the config which looks like this:

Code: Select all

dev tun
tls-client

remote myserver 1194 udp
remote altserver 1194 udp

# 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 1.1.1.1
dhcp-option DNS 1.0.0.1

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 BF-CBC

auth SHA1

auth-user-pass
<ca>
-----BEGIN CERTIFICATE-----
  deleted
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
deleted
-----END CERTIFICATE-----
</ca>
I notice when I try to connect from my iPhone I see that in the log it seems to be connecting via IPv6 even though I specified ipV4.

Code: Select all

2018-06-28 20:49:33 Server poll timeout, trying next remote entry...
2018-06-28 20:49:33 EVENT: RECONNECTING
2018-06-28 20:49:33 EVENT: RESOLVE
2018-06-28 20:49:44 EVENT: RECONNECTING
2018-06-28 20:49:44 EVENT: RESOLVE
2018-06-28 20:49:44 Contacting [2607:7700:0:15::1806:8605]:1194/UDP via UDP
2018-06-28 20:49:44 EVENT: WAIT
2018-06-28 20:49:44 Connecting to [myserver.net]:1194 (2607:7700:0:15::1806:8605) via UDPv6
And it never connects. Any advice would be greatly appreciated. I don't think IPv6 should work since my DDNS for the remote server isn't IPV6.

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Fri Jun 29, 2018 5:07 am

So I think I found something that might be the right answer... https://community.openvpn.net/openvpn/ticket/614

So I tried modifying my config as follows but it isn't working. Maybe I didn't understand how to apply the solution:

Code: Select all

dev tun
tls-client


remote thebiermans.ddns.net 1194 udp
remote thebiermans.dynamic-dns.net 1194 udp

# 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 1.1.1.1
dhcp-option DNS 1.0.0.1

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
keepalive 15 60
redirect-gateway ipv6
mute-replay-warnings

script-security 2


comp-lzo

reneg-sec 0

cipher BF-CBC

auth SHA1

auth-user-pass
<ca>
-----BEGIN CERTIFICATE-----
removed
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
removed
-----END CERTIFICATE-----
</ca>

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Fri Jun 29, 2018 6:24 am

I also found this discussion. viewtopic.php?t=21989

But neither adding this to the client config file didn't help

Code: Select all

push-remove tun-ipv6
push-remove ifconfig-ipv6
push-remove route-ipv6
nor adding "4" to udp in the client config

Code: Select all

proto udp4
remote xxxx.ddns.net 1194 udp4
dev tun
seemed to do any good. I can't find any documentation on this.

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Fri Jun 29, 2018 7:12 am

So I did find https://community.openvpn.net/openvpn/w ... edwithOVPN
It is also possible to connect using IPv6. In the current 2.3 releases, you will need to replace udp, tcp-client or tcp-server with udp6, tcp6-client or tcp6-server as the argument to the --proto option. From the OpenVPN 2.4, OpenVPN will try both IPv6 and IPv4 when just using udp/tcp-client/tcp-server. To enforce only IPv4-only, you need to use udp4, tcp4-client or tcp4-server; and similar to enforce IPv6-only with udp6/tcp6-client/tcp6-server.
which supports what the other threads said, but perhaps I am not understanding the syntax and have entered something wrong?

TinCanTech
OpenVPN Protagonist
Posts: 11139
Joined: Fri Jun 03, 2016 1:17 pm

Re: iOS to Synology NAS VPN server

Post by TinCanTech » Fri Jun 29, 2018 12:51 pm

Are you saying that openvpn always tries to use IPv6 because that is the address returned by DNS for your DDNS server name ?

What happens if you try to ping the same server name .. do you also get an IPv6 address ?

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Fri Jun 29, 2018 6:20 pm

TinCanTech wrote:
Fri Jun 29, 2018 12:51 pm
Are you saying that openvpn always tries to use IPv6 because that is the address returned by DNS for your DDNS server name ?

What happens if you try to ping the same server name .. do you also get an IPv6 address ?
Ping returns a IPv4 fro my lan. What is happening is OpenVPN is using UDPv6 protocol and not UDPv4 protocol no matter what I have tried to do in terms of configuration.

When I ping from my carrier network (T-Mobile) I get no response from ping. I think OpenVPN is failing over to IPv6?

TinCanTech
OpenVPN Protagonist
Posts: 11139
Joined: Fri Jun 03, 2016 1:17 pm

Re: iOS to Synology NAS VPN server

Post by TinCanTech » Fri Jun 29, 2018 7:20 pm

Have you tried this ?
viewtopic.php?t=21989#p75761
oat_bondmen wrote:the fix for this is to force T-Mobile to use an ipv4 profile using a custom carrier configuration within Apple Configurator

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Fri Jun 29, 2018 7:35 pm

That requires converting your phone to "supervised" which is a pain in the ass. If I understand, you have to wipe and restore the device to set that up.

TinCanTech
OpenVPN Protagonist
Posts: 11139
Joined: Fri Jun 03, 2016 1:17 pm

Re: iOS to Synology NAS VPN server

Post by TinCanTech » Fri Jun 29, 2018 8:09 pm

I don't think there is much openvpn can do as it stands.

You could report this to the developer at the bugs page for iOS ..

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Fri Jun 29, 2018 10:08 pm

Ok so I reconfigured my DDNS so that it is an AAAA record. When I poll it, It replies with both IPv6 and IPv4 addresses. So things should be good now but alas I am still not connecting. I do see in the OpenVPN log that it does what it should, first it tries IPv4 and then IPv6 but it times out. If I use my IPV4 address as remote then things do work.

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Fri Jun 29, 2018 10:17 pm

Actually looking at the logs, the IOS client is using both IPv4 and IPv5 but it is always going to the IPV6 IP address. That seems like a bug in OpenVPN to me, isn't it?

TinCanTech
OpenVPN Protagonist
Posts: 11139
Joined: Fri Jun 03, 2016 1:17 pm

Re: iOS to Synology NAS VPN server

Post by TinCanTech » Fri Jun 29, 2018 10:38 pm

mbierman wrote:
Fri Jun 29, 2018 10:17 pm
Actually looking at the logs
What logs ..........

please post some log details.

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Sat Jun 30, 2018 1:27 am

Here's a couple of login attempts. I've tried a lot of tweaks to the config file included below but to no avail.

Code: Select all

2018-06-29 16:09:53 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 16:09:53 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 16:09:53 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 16:09:53 EVENT: RESOLVE
2018-06-29 16:09:53 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:09:53 EVENT: WAIT
2018-06-29 16:09:53 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:10:03 Server poll timeout, trying next remote entry...
2018-06-29 16:10:03 EVENT: RECONNECTING
2018-06-29 16:10:03 EVENT: RESOLVE
2018-06-29 16:10:03 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:10:03 EVENT: WAIT
2018-06-29 16:10:03 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:21:48 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:21:48 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:21:48 UNUSED OPTIONS
1 [tls-client] 
6 [topology] [subnet] 

2018-06-29 18:21:48 EVENT: RESOLVE
2018-06-29 18:21:48 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:21:48 EVENT: WAIT
2018-06-29 18:21:48 Connecting to [2001:558:6045:104:854a:358d:91eb:de23]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
Config file

Code: Select all

dev tun
tls-client
# 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 udp6
remove tun-ipv6
remove ifconfig-ipv6
remove route-ipv6
mute-replay-warnings


# remote 2001:558:6045:104:854a:358d:91eb:de23 1194
remote thebiermans.ddns.net 1194 udp4
# remote 	24.6.134.5 1194 udp4


topology subnet
# pull

# keepalive 15 60

# 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 1.1.1.1
dhcp-option DNS 1.0.0.1

# Try to preserve some state across restarts.
# persist-key
# persist-tun


# script-security 2

comp-lzo

reneg-sec 0

cipher BF-CBC

auth SHA1

auth-user-pass
<ca>
-----BEGIN CERTIFICATE-----
removed
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
removed
-----END CERTIFICATE-----
</ca>

TinCanTech
OpenVPN Protagonist
Posts: 11139
Joined: Fri Jun 03, 2016 1:17 pm

Re: iOS to Synology NAS VPN server

Post by TinCanTech » Sat Jun 30, 2018 11:12 am

mbierman wrote:
Sat Jun 30, 2018 1:27 am
# 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 udp6
Have you tried proto udp4 ?

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Sat Jun 30, 2018 3:40 pm

Have you tried proto udp4 ?
yes. And it still tries IPv6 address as well as IPv4.

TinCanTech
OpenVPN Protagonist
Posts: 11139
Joined: Fri Jun 03, 2016 1:17 pm

Re: iOS to Synology NAS VPN server

Post by TinCanTech » Sat Jun 30, 2018 4:24 pm

And does it connect with UDP4 ?

Please post logs ..

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Sat Jun 30, 2018 9:11 pm

I did post some above. Here's more.

Code: Select all


2018-06-29 15:48:54 EVENT: RESOLVE
2018-06-29 15:48:54 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:48:54 EVENT: WAIT
2018-06-29 15:48:54 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:49:04 Server poll timeout, trying next remote entry...
2018-06-29 15:49:04 EVENT: RECONNECTING
2018-06-29 15:49:04 EVENT: RESOLVE
2018-06-29 15:49:04 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:49:04 EVENT: WAIT
2018-06-29 15:49:04 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:49:15 Server poll timeout, trying next remote entry...
2018-06-29 15:49:15 EVENT: RECONNECTING
2018-06-29 15:49:15 EVENT: RESOLVE
2018-06-29 15:49:15 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:49:15 EVENT: WAIT
2018-06-29 15:49:15 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:49:25 Server poll timeout, trying next remote entry...
2018-06-29 15:49:25 EVENT: RECONNECTING
2018-06-29 15:49:25 EVENT: RESOLVE
2018-06-29 15:49:25 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:49:25 EVENT: WAIT
2018-06-29 15:49:25 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:49:36 Server poll timeout, trying next remote entry...
2018-06-29 15:49:36 EVENT: RECONNECTING
2018-06-29 15:49:36 EVENT: RESOLVE
2018-06-29 15:49:36 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:49:36 EVENT: WAIT
2018-06-29 15:49:36 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:49:37 EVENT: DISCONNECTED
2018-06-29 15:49:37 Raw stats on disconnect:
  BYTES_OUT : 588
  PACKETS_OUT : 42
  N_RECONNECT : 4
2018-06-29 15:49:37 Performance stats on disconnect:
  CPU usage (microseconds): 80815
  Network bytes per CPU second: 7275
  Tunnel bytes per CPU second: 0
2018-06-29 15:49:38 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 15:49:38 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 15:49:38 UNUSED OPTIONS
1 [tls-client] 
4 [remove] [tun-ipv6] 
5 [remove] [ifconfig-ipv6] 
6 [remove] [route-ipv6] 
7 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 15:49:38 EVENT: RESOLVE
2018-06-29 15:49:38 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:49:38 EVENT: WAIT
2018-06-29 15:49:38 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:49:48 Server poll timeout, trying next remote entry...
2018-06-29 15:49:48 EVENT: RECONNECTING
2018-06-29 15:49:48 EVENT: RESOLVE
2018-06-29 15:49:48 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:49:48 EVENT: WAIT
2018-06-29 15:49:48 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:49:59 Server poll timeout, trying next remote entry...
2018-06-29 15:49:59 EVENT: RECONNECTING
2018-06-29 15:49:59 EVENT: RESOLVE
2018-06-29 15:49:59 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:49:59 EVENT: WAIT
2018-06-29 15:49:59 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:50:09 Server poll timeout, trying next remote entry...
2018-06-29 15:50:09 EVENT: RECONNECTING
2018-06-29 15:50:09 EVENT: RESOLVE
2018-06-29 15:50:09 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:50:09 EVENT: WAIT
2018-06-29 15:50:09 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:50:19 Server poll timeout, trying next remote entry...
2018-06-29 15:50:19 EVENT: RECONNECTING
2018-06-29 15:50:19 EVENT: RESOLVE
2018-06-29 15:50:20 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:50:20 EVENT: WAIT
2018-06-29 15:50:20 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:50:30 Server poll timeout, trying next remote entry...
2018-06-29 15:50:30 EVENT: RECONNECTING
2018-06-29 15:50:30 EVENT: RESOLVE
2018-06-29 15:50:30 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:50:30 EVENT: WAIT
2018-06-29 15:50:30 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:50:38 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 15:50:38 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 15:50:38 Performance stats on disconnect:
  CPU usage (microseconds): 101773
  Network bytes per CPU second: 7978
  Tunnel bytes per CPU second: 0
2018-06-29 15:50:38 EVENT: DISCONNECTED
2018-06-29 15:50:38 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 15:50:38 Performance stats on disconnect:
  CPU usage (microseconds): 103099
  Network bytes per CPU second: 7875
  Tunnel bytes per CPU second: 0
2018-06-29 15:53:41 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 15:53:41 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 15:53:41 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 15:53:41 EVENT: RESOLVE
2018-06-29 15:53:41 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 15:53:41 EVENT: WAIT
2018-06-29 15:53:41 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 15:53:52 Server poll timeout, trying next remote entry...
2018-06-29 15:53:52 EVENT: RECONNECTING
2018-06-29 15:53:52 EVENT: RESOLVE
2018-06-29 15:53:52 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 15:53:52 EVENT: WAIT
2018-06-29 15:53:52 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 15:54:02 Server poll timeout, trying next remote entry...
2018-06-29 15:54:02 EVENT: RECONNECTING
2018-06-29 15:54:02 EVENT: RESOLVE
2018-06-29 15:54:02 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 15:54:02 EVENT: WAIT
2018-06-29 15:54:02 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 15:54:13 Server poll timeout, trying next remote entry...
2018-06-29 15:54:13 EVENT: RECONNECTING
2018-06-29 15:54:13 EVENT: RESOLVE
2018-06-29 15:54:13 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 15:54:13 EVENT: WAIT
2018-06-29 15:54:13 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 15:54:23 Server poll timeout, trying next remote entry...
2018-06-29 15:54:23 EVENT: RECONNECTING
2018-06-29 15:54:23 EVENT: RESOLVE
2018-06-29 15:54:23 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 15:54:23 EVENT: WAIT
2018-06-29 15:54:23 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 15:54:52 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 15:54:52 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 15:54:52 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 15:54:52 EVENT: RESOLVE
2018-06-29 15:54:53 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:54:53 EVENT: WAIT
2018-06-29 15:54:53 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:55:03 Server poll timeout, trying next remote entry...
2018-06-29 15:55:03 EVENT: RECONNECTING
2018-06-29 15:55:03 EVENT: RESOLVE
2018-06-29 15:55:03 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:55:03 EVENT: WAIT
2018-06-29 15:55:03 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:55:13 Server poll timeout, trying next remote entry...
2018-06-29 15:55:13 EVENT: RECONNECTING
2018-06-29 15:55:13 EVENT: RESOLVE
2018-06-29 15:55:13 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:55:13 EVENT: WAIT
2018-06-29 15:55:13 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:55:23 Server poll timeout, trying next remote entry...
2018-06-29 15:55:23 EVENT: RECONNECTING
2018-06-29 15:55:23 EVENT: RESOLVE
2018-06-29 15:55:23 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:55:23 EVENT: WAIT
2018-06-29 15:55:23 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:55:29 EVENT: DISCONNECTED
2018-06-29 15:55:29 Raw stats on disconnect:
  BYTES_OUT : 518
  PACKETS_OUT : 37
  N_RECONNECT : 3
2018-06-29 15:55:29 Performance stats on disconnect:
  CPU usage (microseconds): 69696
  Network bytes per CPU second: 7432
  Tunnel bytes per CPU second: 0
2018-06-29 15:55:31 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 15:55:31 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 15:55:31 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 15:55:31 EVENT: RESOLVE
2018-06-29 15:55:31 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:55:31 EVENT: WAIT
2018-06-29 15:55:31 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:55:41 Server poll timeout, trying next remote entry...
2018-06-29 15:55:41 EVENT: RECONNECTING
2018-06-29 15:55:41 EVENT: RESOLVE
2018-06-29 15:55:41 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:55:41 EVENT: WAIT
2018-06-29 15:55:41 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:55:51 Server poll timeout, trying next remote entry...
2018-06-29 15:55:51 EVENT: RECONNECTING
2018-06-29 15:55:51 EVENT: RESOLVE
2018-06-29 15:55:51 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:55:51 EVENT: WAIT
2018-06-29 15:55:51 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:56:02 Server poll timeout, trying next remote entry...
2018-06-29 15:56:02 EVENT: RECONNECTING
2018-06-29 15:56:02 EVENT: RESOLVE
2018-06-29 15:56:02 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:56:02 EVENT: WAIT
2018-06-29 15:56:02 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:56:09 EVENT: DISCONNECTED
2018-06-29 15:56:09 Raw stats on disconnect:
  BYTES_OUT : 532
  PACKETS_OUT : 38
  N_RECONNECT : 3
2018-06-29 15:56:09 Performance stats on disconnect:
  CPU usage (microseconds): 75700
  Network bytes per CPU second: 7027
  Tunnel bytes per CPU second: 0
2018-06-29 15:56:11 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 15:56:11 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 15:56:11 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 15:56:11 EVENT: RESOLVE
2018-06-29 15:56:11 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:56:11 EVENT: WAIT
2018-06-29 15:56:11 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:56:21 Server poll timeout, trying next remote entry...
2018-06-29 15:56:21 EVENT: RECONNECTING
2018-06-29 15:56:21 EVENT: RESOLVE
2018-06-29 15:56:21 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:56:21 EVENT: WAIT
2018-06-29 15:56:21 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:56:31 Server poll timeout, trying next remote entry...
2018-06-29 15:56:31 EVENT: RECONNECTING
2018-06-29 15:56:31 EVENT: RESOLVE
2018-06-29 15:56:31 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:56:31 EVENT: WAIT
2018-06-29 15:56:31 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:56:42 Server poll timeout, trying next remote entry...
2018-06-29 15:56:42 EVENT: RECONNECTING
2018-06-29 15:56:42 EVENT: RESOLVE
2018-06-29 15:56:42 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:56:42 EVENT: WAIT
2018-06-29 15:56:42 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:56:44 EVENT: DISCONNECTED
2018-06-29 15:56:44 Raw stats on disconnect:
  BYTES_OUT : 462
  PACKETS_OUT : 33
  N_RECONNECT : 3
2018-06-29 15:56:44 Performance stats on disconnect:
  CPU usage (microseconds): 62246
  Network bytes per CPU second: 7422
  Tunnel bytes per CPU second: 0
2018-06-29 15:56:46 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 15:56:46 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 15:56:46 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 15:56:46 EVENT: RESOLVE
2018-06-29 15:56:46 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:56:46 EVENT: WAIT
2018-06-29 15:56:46 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:56:57 Server poll timeout, trying next remote entry...
2018-06-29 15:56:57 EVENT: RECONNECTING
2018-06-29 15:56:57 EVENT: RESOLVE
2018-06-29 15:56:57 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:56:57 EVENT: WAIT
2018-06-29 15:56:57 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:57:07 Server poll timeout, trying next remote entry...
2018-06-29 15:57:07 EVENT: RECONNECTING
2018-06-29 15:57:07 EVENT: RESOLVE
2018-06-29 15:57:07 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:57:07 EVENT: WAIT
2018-06-29 15:57:07 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:57:18 Server poll timeout, trying next remote entry...
2018-06-29 15:57:18 EVENT: RECONNECTING
2018-06-29 15:57:18 EVENT: RESOLVE
2018-06-29 15:57:18 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:57:18 EVENT: WAIT
2018-06-29 15:57:18 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:57:28 Server poll timeout, trying next remote entry...
2018-06-29 15:57:28 EVENT: RECONNECTING
2018-06-29 15:57:28 EVENT: RESOLVE
2018-06-29 15:57:29 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:57:29 EVENT: WAIT
2018-06-29 15:57:29 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:57:39 Server poll timeout, trying next remote entry...
2018-06-29 15:57:39 EVENT: RECONNECTING
2018-06-29 15:57:39 EVENT: RESOLVE
2018-06-29 15:57:39 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:57:39 EVENT: WAIT
2018-06-29 15:57:39 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:57:46 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 15:57:46 Raw stats on disconnect:
  BYTES_OUT : 798
  PACKETS_OUT : 57
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 15:57:46 Performance stats on disconnect:
  CPU usage (microseconds): 102251
  Network bytes per CPU second: 7804
  Tunnel bytes per CPU second: 0
2018-06-29 15:57:46 EVENT: DISCONNECTED
2018-06-29 15:57:46 Raw stats on disconnect:
  BYTES_OUT : 798
  PACKETS_OUT : 57
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 15:57:46 Performance stats on disconnect:
  CPU usage (microseconds): 102251
  Network bytes per CPU second: 7804
  Tunnel bytes per CPU second: 0
2018-06-29 15:57:50 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 15:57:50 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 15:57:50 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 15:57:50 EVENT: RESOLVE
2018-06-29 15:57:50 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:57:50 EVENT: WAIT
2018-06-29 15:57:50 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:58:00 Server poll timeout, trying next remote entry...
2018-06-29 15:58:00 EVENT: RECONNECTING
2018-06-29 15:58:00 EVENT: RESOLVE
2018-06-29 15:58:00 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:58:00 EVENT: WAIT
2018-06-29 15:58:00 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:58:10 Server poll timeout, trying next remote entry...
2018-06-29 15:58:10 EVENT: RECONNECTING
2018-06-29 15:58:10 EVENT: RESOLVE
2018-06-29 15:58:10 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:58:10 EVENT: WAIT
2018-06-29 15:58:10 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:58:21 Server poll timeout, trying next remote entry...
2018-06-29 15:58:21 EVENT: RECONNECTING
2018-06-29 15:58:21 EVENT: RESOLVE
2018-06-29 15:58:21 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:58:21 EVENT: WAIT
2018-06-29 15:58:21 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:58:31 Server poll timeout, trying next remote entry...
2018-06-29 15:58:31 EVENT: RECONNECTING
2018-06-29 15:58:31 EVENT: RESOLVE
2018-06-29 15:58:31 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:58:31 EVENT: WAIT
2018-06-29 15:58:31 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:58:42 Server poll timeout, trying next remote entry...
2018-06-29 15:58:42 EVENT: RECONNECTING
2018-06-29 15:58:42 EVENT: RESOLVE
2018-06-29 15:58:42 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:58:42 EVENT: WAIT
2018-06-29 15:58:42 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:58:50 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 15:58:50 Raw stats on disconnect:
  BYTES_OUT : 826
  PACKETS_OUT : 59
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 15:58:50 Performance stats on disconnect:
  CPU usage (microseconds): 104439
  Network bytes per CPU second: 7908
  Tunnel bytes per CPU second: 0
2018-06-29 15:58:50 EVENT: DISCONNECTED
2018-06-29 15:58:50 Raw stats on disconnect:
  BYTES_OUT : 826
  PACKETS_OUT : 59
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 15:58:50 Performance stats on disconnect:
  CPU usage (microseconds): 105312
  Network bytes per CPU second: 7843
  Tunnel bytes per CPU second: 0
2018-06-29 15:59:35 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 15:59:35 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 15:59:35 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 15:59:35 EVENT: RESOLVE
2018-06-29 15:59:35 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:59:35 EVENT: WAIT
2018-06-29 15:59:35 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:59:46 Server poll timeout, trying next remote entry...
2018-06-29 15:59:46 EVENT: RECONNECTING
2018-06-29 15:59:46 EVENT: RESOLVE
2018-06-29 15:59:46 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:59:46 EVENT: WAIT
2018-06-29 15:59:46 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 15:59:56 Server poll timeout, trying next remote entry...
2018-06-29 15:59:56 EVENT: RECONNECTING
2018-06-29 15:59:56 EVENT: RESOLVE
2018-06-29 15:59:56 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 15:59:56 EVENT: WAIT
2018-06-29 15:59:56 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:00:06 Server poll timeout, trying next remote entry...
2018-06-29 16:00:06 EVENT: RECONNECTING
2018-06-29 16:00:06 EVENT: RESOLVE
2018-06-29 16:00:06 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:00:06 EVENT: WAIT
2018-06-29 16:00:06 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:00:16 Server poll timeout, trying next remote entry...
2018-06-29 16:00:16 EVENT: RECONNECTING
2018-06-29 16:00:16 EVENT: RESOLVE
2018-06-29 16:00:16 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:00:16 EVENT: WAIT
2018-06-29 16:00:16 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:00:27 Server poll timeout, trying next remote entry...
2018-06-29 16:00:27 EVENT: RECONNECTING
2018-06-29 16:00:27 EVENT: RESOLVE
2018-06-29 16:00:27 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:00:27 EVENT: WAIT
2018-06-29 16:00:27 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:00:35 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 16:00:35 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 16:00:35 Performance stats on disconnect:
  CPU usage (microseconds): 97435
  Network bytes per CPU second: 8333
  Tunnel bytes per CPU second: 0
2018-06-29 16:00:35 EVENT: DISCONNECTED
2018-06-29 16:00:35 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 16:00:35 Performance stats on disconnect:
  CPU usage (microseconds): 98271
  Network bytes per CPU second: 8262
  Tunnel bytes per CPU second: 0
2018-06-29 16:03:12 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 16:03:12 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 16:03:12 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 16:03:12 EVENT: RESOLVE
2018-06-29 16:03:12 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:03:12 EVENT: WAIT
2018-06-29 16:03:12 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:03:22 Server poll timeout, trying next remote entry...
2018-06-29 16:03:22 EVENT: RECONNECTING
2018-06-29 16:03:22 EVENT: RESOLVE
2018-06-29 16:03:22 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:03:22 EVENT: WAIT
2018-06-29 16:03:22 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:03:33 Server poll timeout, trying next remote entry...
2018-06-29 16:03:33 EVENT: RECONNECTING
2018-06-29 16:03:33 EVENT: RESOLVE
2018-06-29 16:03:33 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:03:33 EVENT: WAIT
2018-06-29 16:03:33 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:03:43 Server poll timeout, trying next remote entry...
2018-06-29 16:03:43 EVENT: RECONNECTING
2018-06-29 16:03:43 EVENT: RESOLVE
2018-06-29 16:03:43 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:03:43 EVENT: WAIT
2018-06-29 16:03:43 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:03:54 Server poll timeout, trying next remote entry...
2018-06-29 16:03:54 EVENT: RECONNECTING
2018-06-29 16:03:54 EVENT: RESOLVE
2018-06-29 16:03:54 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:03:54 EVENT: WAIT
2018-06-29 16:03:54 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:04:05 Server poll timeout, trying next remote entry...
2018-06-29 16:04:05 EVENT: RECONNECTING
2018-06-29 16:04:05 EVENT: RESOLVE
2018-06-29 16:04:05 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:04:05 EVENT: WAIT
2018-06-29 16:04:05 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:09:53 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 16:09:53 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 16:09:53 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 16:09:53 EVENT: RESOLVE
2018-06-29 16:09:53 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:09:53 EVENT: WAIT
2018-06-29 16:09:53 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 16:10:03 Server poll timeout, trying next remote entry...
2018-06-29 16:10:03 EVENT: RECONNECTING
2018-06-29 16:10:03 EVENT: RESOLVE
2018-06-29 16:10:03 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 16:10:03 EVENT: WAIT
2018-06-29 16:10:03 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:21:48 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:21:48 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:21:48 UNUSED OPTIONS
1 [tls-client] 
6 [topology] [subnet] 

2018-06-29 18:21:48 EVENT: RESOLVE
2018-06-29 18:21:48 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:21:48 EVENT: WAIT
2018-06-29 18:21:48 Connecting to [2001:558:6045:104:854a:358d:91eb:de23]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:21:58 Server poll timeout, trying next remote entry...
2018-06-29 18:21:58 EVENT: RECONNECTING
2018-06-29 18:21:58 EVENT: RESOLVE
2018-06-29 18:21:58 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:21:58 EVENT: WAIT
2018-06-29 18:21:58 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:22:08 Server poll timeout, trying next remote entry...
2018-06-29 18:22:08 EVENT: RECONNECTING
2018-06-29 18:22:08 EVENT: RESOLVE
2018-06-29 18:22:08 Contacting [2607:7700:0:21::1806:8605]:1194/UDP via UDP
2018-06-29 18:22:08 EVENT: WAIT
2018-06-29 18:22:08 Connecting to [24.6.134.5]:1194 (2607:7700:0:21::1806:8605) via UDPv6
2018-06-29 18:22:18 Server poll timeout, trying next remote entry...
2018-06-29 18:22:18 EVENT: RECONNECTING
2018-06-29 18:22:18 EVENT: RESOLVE
2018-06-29 18:22:18 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:22:18 EVENT: WAIT
2018-06-29 18:22:18 Connecting to [2001:558:6045:104:854a:358d:91eb:de23]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:22:29 Server poll timeout, trying next remote entry...
2018-06-29 18:22:29 EVENT: RECONNECTING
2018-06-29 18:22:29 EVENT: RESOLVE
2018-06-29 18:22:29 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:22:29 EVENT: WAIT
2018-06-29 18:22:29 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:44:53 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:44:53 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:44:53 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 18:44:53 EVENT: RESOLVE
2018-06-29 18:44:53 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 18:44:53 EVENT: WAIT
2018-06-29 18:44:53 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 18:45:07 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:45:07 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:45:07 UNUSED OPTIONS
1 [tls-client] 
3 [remove] [tun-ipv6] 
4 [remove] [ifconfig-ipv6] 
5 [remove] [route-ipv6] 
6 [mute-replay-warnings] 
8 [topology] [subnet] 

2018-06-29 18:45:07 EVENT: RESOLVE
2018-06-29 18:45:07 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:45:07 EVENT: WAIT
2018-06-29 18:45:07 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:45:17 Server poll timeout, trying next remote entry...
2018-06-29 18:45:17 EVENT: RECONNECTING
2018-06-29 18:45:17 EVENT: RESOLVE
2018-06-29 18:45:17 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:45:17 EVENT: WAIT
2018-06-29 18:45:17 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:45:27 Server poll timeout, trying next remote entry...
2018-06-29 18:45:27 EVENT: RECONNECTING
2018-06-29 18:45:27 EVENT: RESOLVE
2018-06-29 18:45:27 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:45:27 EVENT: WAIT
2018-06-29 18:45:27 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:45:38 Server poll timeout, trying next remote entry...
2018-06-29 18:45:38 EVENT: RECONNECTING
2018-06-29 18:45:38 EVENT: RESOLVE
2018-06-29 18:45:38 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:45:38 EVENT: WAIT
2018-06-29 18:45:38 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:45:48 Server poll timeout, trying next remote entry...
2018-06-29 18:45:48 EVENT: RECONNECTING
2018-06-29 18:45:48 EVENT: RESOLVE
2018-06-29 18:45:48 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:45:48 EVENT: WAIT
2018-06-29 18:45:48 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:45:59 Server poll timeout, trying next remote entry...
2018-06-29 18:45:59 EVENT: RECONNECTING
2018-06-29 18:45:59 EVENT: RESOLVE
2018-06-29 18:45:59 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:45:59 EVENT: WAIT
2018-06-29 18:45:59 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:46:08 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 18:46:08 Raw stats on disconnect:
  BYTES_OUT : 826
  PACKETS_OUT : 59
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:46:08 Performance stats on disconnect:
  CPU usage (microseconds): 102609
  Network bytes per CPU second: 8049
  Tunnel bytes per CPU second: 0
2018-06-29 18:46:08 EVENT: DISCONNECTED
2018-06-29 18:46:08 Raw stats on disconnect:
  BYTES_OUT : 826
  PACKETS_OUT : 59
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:46:08 Performance stats on disconnect:
  CPU usage (microseconds): 103658
  Network bytes per CPU second: 7968
  Tunnel bytes per CPU second: 0
2018-06-29 18:47:36 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:47:36 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:47:36 UNUSED OPTIONS
1 [tls-client] 
4 [topology] [subnet] 

2018-06-29 18:47:36 EVENT: RESOLVE
2018-06-29 18:47:36 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 18:47:36 EVENT: WAIT
2018-06-29 18:47:36 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 18:47:56 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:47:56 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:47:56 UNUSED OPTIONS
1 [tls-client] 
4 [topology] [subnet] 

2018-06-29 18:47:56 EVENT: RESOLVE
2018-06-29 18:47:56 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:47:56 EVENT: WAIT
2018-06-29 18:47:56 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:48:07 Server poll timeout, trying next remote entry...
2018-06-29 18:48:07 EVENT: RECONNECTING
2018-06-29 18:48:07 EVENT: RESOLVE
2018-06-29 18:48:07 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:48:07 EVENT: WAIT
2018-06-29 18:48:07 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:48:17 Server poll timeout, trying next remote entry...
2018-06-29 18:48:17 EVENT: RECONNECTING
2018-06-29 18:48:17 EVENT: RESOLVE
2018-06-29 18:48:17 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:48:18 EVENT: WAIT
2018-06-29 18:48:18 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:48:28 Server poll timeout, trying next remote entry...
2018-06-29 18:48:28 EVENT: RECONNECTING
2018-06-29 18:48:28 EVENT: RESOLVE
2018-06-29 18:48:28 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:48:28 EVENT: WAIT
2018-06-29 18:48:28 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:48:39 Server poll timeout, trying next remote entry...
2018-06-29 18:48:39 EVENT: RECONNECTING
2018-06-29 18:48:39 EVENT: RESOLVE
2018-06-29 18:48:39 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:48:39 EVENT: WAIT
2018-06-29 18:48:39 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:48:49 Server poll timeout, trying next remote entry...
2018-06-29 18:48:49 EVENT: RECONNECTING
2018-06-29 18:48:49 EVENT: RESOLVE
2018-06-29 18:48:49 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:48:49 EVENT: WAIT
2018-06-29 18:48:49 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:48:56 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 18:48:56 Raw stats on disconnect:
  BYTES_OUT : 798
  PACKETS_OUT : 57
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:48:56 Performance stats on disconnect:
  CPU usage (microseconds): 106217
  Network bytes per CPU second: 7512
  Tunnel bytes per CPU second: 0
2018-06-29 18:48:56 EVENT: DISCONNECTED
2018-06-29 18:48:56 Raw stats on disconnect:
  BYTES_OUT : 798
  PACKETS_OUT : 57
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:48:56 Performance stats on disconnect:
  CPU usage (microseconds): 108240
  Network bytes per CPU second: 7372
  Tunnel bytes per CPU second: 0
2018-06-29 18:50:35 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:50:35 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:50:35 UNUSED OPTIONS
1 [tls-client] 
4 [topology] [subnet] 

2018-06-29 18:50:35 EVENT: RESOLVE
2018-06-29 18:50:35 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:50:35 EVENT: WAIT
2018-06-29 18:50:35 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:50:45 Server poll timeout, trying next remote entry...
2018-06-29 18:50:45 EVENT: RECONNECTING
2018-06-29 18:50:45 EVENT: RESOLVE
2018-06-29 18:50:45 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:50:45 EVENT: WAIT
2018-06-29 18:50:45 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:50:56 Server poll timeout, trying next remote entry...
2018-06-29 18:50:56 EVENT: RECONNECTING
2018-06-29 18:50:56 EVENT: RESOLVE
2018-06-29 18:50:56 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:50:56 EVENT: WAIT
2018-06-29 18:50:56 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:51:06 Server poll timeout, trying next remote entry...
2018-06-29 18:51:06 EVENT: RECONNECTING
2018-06-29 18:51:06 EVENT: RESOLVE
2018-06-29 18:51:06 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:51:06 EVENT: WAIT
2018-06-29 18:51:06 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:51:16 Server poll timeout, trying next remote entry...
2018-06-29 18:51:16 EVENT: RECONNECTING
2018-06-29 18:51:16 EVENT: RESOLVE
2018-06-29 18:51:16 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:51:16 EVENT: WAIT
2018-06-29 18:51:16 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:51:27 Server poll timeout, trying next remote entry...
2018-06-29 18:51:27 EVENT: RECONNECTING
2018-06-29 18:51:27 EVENT: RESOLVE
2018-06-29 18:51:27 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:51:27 EVENT: WAIT
2018-06-29 18:51:27 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:51:36 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 18:51:36 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:51:36 Performance stats on disconnect:
  CPU usage (microseconds): 99951
  Network bytes per CPU second: 8123
  Tunnel bytes per CPU second: 0
2018-06-29 18:51:36 EVENT: DISCONNECTED
2018-06-29 18:51:36 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:51:36 Performance stats on disconnect:
  CPU usage (microseconds): 102715
  Network bytes per CPU second: 7905
  Tunnel bytes per CPU second: 0
2018-06-29 18:52:25 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:52:25 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:52:25 UNUSED OPTIONS
1 [tls-client] 
4 [topology] [subnet] 

2018-06-29 18:52:25 EVENT: RESOLVE
2018-06-29 18:52:25 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 18:52:25 EVENT: WAIT
2018-06-29 18:52:25 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 18:52:37 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:52:37 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:52:37 UNUSED OPTIONS
1 [tls-client] 
4 [topology] [subnet] 

2018-06-29 18:52:37 EVENT: RESOLVE
2018-06-29 18:52:38 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:52:38 EVENT: WAIT
2018-06-29 18:52:38 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:52:48 Server poll timeout, trying next remote entry...
2018-06-29 18:52:48 EVENT: RECONNECTING
2018-06-29 18:52:48 EVENT: RESOLVE
2018-06-29 18:52:48 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:52:48 EVENT: WAIT
2018-06-29 18:52:48 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:52:58 Server poll timeout, trying next remote entry...
2018-06-29 18:52:58 EVENT: RECONNECTING
2018-06-29 18:52:58 EVENT: RESOLVE
2018-06-29 18:52:58 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:52:58 EVENT: WAIT
2018-06-29 18:52:58 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:53:09 Server poll timeout, trying next remote entry...
2018-06-29 18:53:09 EVENT: RECONNECTING
2018-06-29 18:53:09 EVENT: RESOLVE
2018-06-29 18:53:09 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:53:09 EVENT: WAIT
2018-06-29 18:53:09 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:53:19 Server poll timeout, trying next remote entry...
2018-06-29 18:53:19 EVENT: RECONNECTING
2018-06-29 18:53:19 EVENT: RESOLVE
2018-06-29 18:53:19 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:53:19 EVENT: WAIT
2018-06-29 18:53:19 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:53:27 EVENT: DISCONNECTED
2018-06-29 18:53:27 Raw stats on disconnect:
  BYTES_OUT : 658
  PACKETS_OUT : 47
  N_RECONNECT : 4
2018-06-29 18:53:27 Performance stats on disconnect:
  CPU usage (microseconds): 88116
  Network bytes per CPU second: 7467
  Tunnel bytes per CPU second: 0
2018-06-29 18:53:28 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:53:28 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:53:28 UNUSED OPTIONS
1 [tls-client] 
4 [topology] [subnet] 

2018-06-29 18:53:28 EVENT: RESOLVE
2018-06-29 18:53:28 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:53:28 EVENT: WAIT
2018-06-29 18:53:28 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:53:38 Server poll timeout, trying next remote entry...
2018-06-29 18:53:38 EVENT: RECONNECTING
2018-06-29 18:53:38 EVENT: RESOLVE
2018-06-29 18:53:38 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:53:38 EVENT: WAIT
2018-06-29 18:53:38 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:53:49 Server poll timeout, trying next remote entry...
2018-06-29 18:53:49 EVENT: RECONNECTING
2018-06-29 18:53:49 EVENT: RESOLVE
2018-06-29 18:53:49 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:53:49 EVENT: WAIT
2018-06-29 18:53:49 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:54:00 Server poll timeout, trying next remote entry...
2018-06-29 18:54:00 EVENT: RECONNECTING
2018-06-29 18:54:00 EVENT: RESOLVE
2018-06-29 18:54:00 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:54:00 EVENT: WAIT
2018-06-29 18:54:00 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:54:10 Server poll timeout, trying next remote entry...
2018-06-29 18:54:10 EVENT: RECONNECTING
2018-06-29 18:54:10 EVENT: RESOLVE
2018-06-29 18:54:10 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:54:10 EVENT: WAIT
2018-06-29 18:54:10 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:54:21 Server poll timeout, trying next remote entry...
2018-06-29 18:54:21 EVENT: RECONNECTING
2018-06-29 18:54:21 EVENT: RESOLVE
2018-06-29 18:54:21 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:54:21 EVENT: WAIT
2018-06-29 18:54:21 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:54:28 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 18:54:28 Raw stats on disconnect:
  BYTES_OUT : 798
  PACKETS_OUT : 57
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:54:28 Performance stats on disconnect:
  CPU usage (microseconds): 97557
  Network bytes per CPU second: 8179
  Tunnel bytes per CPU second: 0
2018-06-29 18:54:28 EVENT: DISCONNECTED
2018-06-29 18:54:28 Raw stats on disconnect:
  BYTES_OUT : 798
  PACKETS_OUT : 57
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:54:28 Performance stats on disconnect:
  CPU usage (microseconds): 99888
  Network bytes per CPU second: 7988
  Tunnel bytes per CPU second: 0
2018-06-29 18:54:43 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:54:43 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:54:43 UNUSED OPTIONS
1 [tls-client] 
4 [topology] [subnet] 

2018-06-29 18:54:43 EVENT: RESOLVE
2018-06-29 18:54:43 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:54:43 EVENT: WAIT
2018-06-29 18:54:43 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:54:53 Server poll timeout, trying next remote entry...
2018-06-29 18:54:53 EVENT: RECONNECTING
2018-06-29 18:54:53 EVENT: RESOLVE
2018-06-29 18:54:53 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:54:53 EVENT: WAIT
2018-06-29 18:54:53 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:55:04 Server poll timeout, trying next remote entry...
2018-06-29 18:55:04 EVENT: RECONNECTING
2018-06-29 18:55:04 EVENT: RESOLVE
2018-06-29 18:55:04 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:55:04 EVENT: WAIT
2018-06-29 18:55:04 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:55:14 Server poll timeout, trying next remote entry...
2018-06-29 18:55:14 EVENT: RECONNECTING
2018-06-29 18:55:14 EVENT: RESOLVE
2018-06-29 18:55:14 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:55:14 EVENT: WAIT
2018-06-29 18:55:14 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:55:24 Server poll timeout, trying next remote entry...
2018-06-29 18:55:24 EVENT: RECONNECTING
2018-06-29 18:55:24 EVENT: RESOLVE
2018-06-29 18:55:24 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:55:24 EVENT: WAIT
2018-06-29 18:55:24 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:55:35 Server poll timeout, trying next remote entry...
2018-06-29 18:55:35 EVENT: RECONNECTING
2018-06-29 18:55:35 EVENT: RESOLVE
2018-06-29 18:55:35 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:55:35 EVENT: WAIT
2018-06-29 18:55:35 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:55:43 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 18:55:43 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:55:43 Performance stats on disconnect:
  CPU usage (microseconds): 101003
  Network bytes per CPU second: 8039
  Tunnel bytes per CPU second: 0
2018-06-29 18:55:43 EVENT: DISCONNECTED
2018-06-29 18:55:43 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:55:43 Performance stats on disconnect:
  CPU usage (microseconds): 103795
  Network bytes per CPU second: 7823
  Tunnel bytes per CPU second: 0
2018-06-29 18:57:48 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:57:48 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:57:48 UNUSED OPTIONS
1 [tls-client] 
7 [topology] [subnet] 
8 [pull] 
10 [script-security] [2] 

2018-06-29 18:57:48 EVENT: RESOLVE
2018-06-29 18:57:48 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 18:57:48 EVENT: WAIT
2018-06-29 18:57:48 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 18:57:57 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:57:57 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:57:57 UNUSED OPTIONS
1 [tls-client] 
7 [topology] [subnet] 
8 [pull] 
10 [script-security] [2] 

2018-06-29 18:57:57 EVENT: RESOLVE
2018-06-29 18:57:58 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:57:58 EVENT: WAIT
2018-06-29 18:57:58 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:58:08 Server poll timeout, trying next remote entry...
2018-06-29 18:58:08 EVENT: RECONNECTING
2018-06-29 18:58:08 EVENT: RESOLVE
2018-06-29 18:58:08 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:58:08 EVENT: WAIT
2018-06-29 18:58:08 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:58:18 Server poll timeout, trying next remote entry...
2018-06-29 18:58:18 EVENT: RECONNECTING
2018-06-29 18:58:18 EVENT: RESOLVE
2018-06-29 18:58:18 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:58:18 EVENT: WAIT
2018-06-29 18:58:18 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:58:28 Server poll timeout, trying next remote entry...
2018-06-29 18:58:28 EVENT: RECONNECTING
2018-06-29 18:58:28 EVENT: RESOLVE
2018-06-29 18:58:28 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:58:28 EVENT: WAIT
2018-06-29 18:58:28 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:58:39 Server poll timeout, trying next remote entry...
2018-06-29 18:58:39 EVENT: RECONNECTING
2018-06-29 18:58:39 EVENT: RESOLVE
2018-06-29 18:58:39 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:58:39 EVENT: WAIT
2018-06-29 18:58:39 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:58:49 Server poll timeout, trying next remote entry...
2018-06-29 18:58:49 EVENT: RECONNECTING
2018-06-29 18:58:49 EVENT: RESOLVE
2018-06-29 18:58:49 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 18:58:49 EVENT: WAIT
2018-06-29 18:58:49 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 18:58:57 EVENT: CONNECTION_TIMEOUT [ERR]
2018-06-29 18:58:57 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:58:57 Performance stats on disconnect:
  CPU usage (microseconds): 101087
  Network bytes per CPU second: 8032
  Tunnel bytes per CPU second: 0
2018-06-29 18:58:57 EVENT: DISCONNECTED
2018-06-29 18:58:57 Raw stats on disconnect:
  BYTES_OUT : 812
  PACKETS_OUT : 58
  CONNECTION_TIMEOUT : 1
  N_RECONNECT : 5
2018-06-29 18:58:57 Performance stats on disconnect:
  CPU usage (microseconds): 101087
  Network bytes per CPU second: 8032
  Tunnel bytes per CPU second: 0
2018-06-29 18:59:55 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:59:55 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:59:55 UNUSED OPTIONS
1 [tls-client] 
7 [topology] [subnet] 
8 [pull] 
10 [script-security] [2] 

2018-06-29 18:59:55 EVENT: RESOLVE
2018-06-29 18:59:55 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 18:59:55 EVENT: WAIT
2018-06-29 18:59:55 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 19:00:01 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 19:00:01 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 19:00:01 UNUSED OPTIONS
1 [tls-client] 
7 [topology] [subnet] 
8 [pull] 
10 [script-security] [2] 

2018-06-29 19:00:01 EVENT: RESOLVE
2018-06-29 19:00:02 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 19:00:02 EVENT: WAIT
2018-06-29 19:00:02 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 19:00:12 Server poll timeout, trying next remote entry...
2018-06-29 19:00:12 EVENT: RECONNECTING
2018-06-29 19:00:12 EVENT: RESOLVE
2018-06-29 19:00:12 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 19:00:12 EVENT: WAIT
2018-06-29 19:00:12 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-29 19:00:22 Server poll timeout, trying next remote entry...
2018-06-29 19:00:22 EVENT: RECONNECTING
2018-06-29 19:00:22 EVENT: RESOLVE
2018-06-29 19:00:22 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-29 19:00:22 EVENT: WAIT
2018-06-29 19:00:22 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Sat Jun 30, 2018 9:31 pm

Here's one that is one that should just be with UDP4 but it is going to an IPV6 address.

Code: Select all

OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-30 14:21:05 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-30 14:21:05 UNUSED OPTIONS
1 [tls-client] 
7 [topology] [subnet] 
8 [pull] 
10 [script-security] [2] 

2018-06-30 14:21:05 EVENT: RESOLVE
2018-06-30 14:21:05 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-30 14:21:05 EVENT: WAIT
2018-06-30 14:21:05 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-30 14:21:15 Server poll timeout, trying next remote entry...
2018-06-30 14:21:15 EVENT: RECONNECTING
2018-06-30 14:21:15 EVENT: RESOLVE
2018-06-30 14:21:15 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-30 14:21:15 EVENT: WAIT
2018-06-30 14:21:15 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-30 14:21:25 Server poll timeout, trying next remote entry...
2018-06-30 14:21:25 EVENT: RECONNECTING
2018-06-30 14:21:25 EVENT: RESOLVE
2018-06-30 14:21:25 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-30 14:21:25 EVENT: WAIT
2018-06-30 14:21:25 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-30 14:21:36 Server poll timeout, trying next remote entry...
2018-06-30 14:21:36 EVENT: RECONNECTING
2018-06-30 14:21:36 EVENT: RESOLVE
2018-06-30 14:21:36 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-30 14:21:36 EVENT: WAIT
2018-06-30 14:21:36 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-30 14:21:46 Server poll timeout, trying next remote entry...
2018-06-30 14:21:46 EVENT: RECONNECTING
2018-06-30 14:21:46 EVENT: RESOLVE
2018-06-30 14:21:46 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-30 14:21:46 EVENT: WAIT
2018-06-30 14:21:46 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6
2018-06-30 14:21:56 Server poll timeout, trying next remote entry...
2018-06-30 14:21:56 EVENT: RECONNECTING
2018-06-30 14:21:56 EVENT: RESOLVE
2018-06-30 14:21:56 Contacting [2001:558:6045:104:854a:358d:91eb:de23]:1194/UDP via UDP
2018-06-30 14:21:56 EVENT: WAIT
2018-06-30 14:21:56 Connecting to [thebiermans.ddns.net]:1194 (2001:558:6045:104:854a:358d:91eb:de23) via UDPv6

TinCanTech
OpenVPN Protagonist
Posts: 11139
Joined: Fri Jun 03, 2016 1:17 pm

Re: iOS to Synology NAS VPN server

Post by TinCanTech » Sun Jul 01, 2018 1:40 am

mbierman wrote:
Sat Jun 30, 2018 9:31 pm
2018-06-29 18:59:55 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 18:59:55 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 18:59:55 UNUSED OPTIONS
1 [tls-client]
7 [topology] [subnet]
8 [pull]
10 [script-security] [2]

2018-06-29 18:59:55 EVENT: RESOLVE
2018-06-29 18:59:55 Contacting [24.6.134.5]:1194/UDP via UDP
2018-06-29 18:59:55 EVENT: WAIT
2018-06-29 18:59:55 Connecting to [thebiermans.ddns.net]:1194 (24.6.134.5) via UDPv4
2018-06-29 19:00:01 ----- OpenVPN Start -----
OpenVPN core 3.2 ios arm64 64-bit built on Feb 22 2018 12:39:28
2018-06-29 19:00:01 Frame=512/2048/512 mssfix-ctrl=1250
2018-06-29 19:00:01 UNUSED OPTIONS
1 [tls-client]
7 [topology] [subnet]
8 [pull]
10 [script-security] [2]
At least one attempt to an ipv4 address ?

mbierman
OpenVPN User
Posts: 21
Joined: Fri Jun 29, 2018 4:31 am

Re: iOS to Synology NAS VPN server

Post by mbierman » Sun Jul 01, 2018 2:23 am

So I can not get it to work when the domain has both a A and an AAAA record. But it is now working if there is only an A record. Regardless if I specify only to use udp4 it always tries both. :( Also, i found that there is a setting in a non obvious place in the iOS app that lets you restrict to IPv4. Not sure why that is needed if you specify in the settings... but..

Post Reply