Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: What is the best way to automate/script Vopono? (Mostly in regard to sudo/authorization) #150

Open
d4h0 opened this issue May 15, 2022 · 16 comments

Comments

@d4h0
Copy link

d4h0 commented May 15, 2022

Hi,

Thank you so much for creating Vopono! So far, it seems to work very well :)

I'm wondering what the best way would be to script Vopono.

For example, let's say, I'd like to change my VPN connection every 30 minutes, and I'm running Privoxy within Vopono (this way, I could just configure my browser to use Privoxy as HTTP proxy, and I wouldn't have to restart my browser every 30 minutes):

$ vopono -v exec --provider azirevpn -k -u root -f 8118 --server norway "privoxy --chroot --user privoxy /etc/privoxy/config"

The scripting part would be easy, of course, but after 30 minutes (I believe) the script would ask for my password again.

What would be the best way to avoid this?

For example, I could run my script as root. But that seems to lead to problems with Vopono (from the issues I've read). Besides that, for the obvious reasons, I'd like to avoid running my script as root.

Another option would be to switch to passwordless sudo (disabling the requirement to enter the password, when executing a command via sudo), which I would like to avoid as well.

It seems, the SUDO_ASKPASS environment variable could be used to provide the password, but I'm not sure how to do this securely.

The last option I see, would be to set NOPASSWD only for /usr/bin/vopono via sudoers:

my_user host_name=NOPASSWD: /usr/bin/vopono

This looks the most promising to me, but I never did something like this, and I have no clue if that would be secure.

Is there any way, an attacker that got access to my system could use Vopono to execute arbitrary commands? Vopono seems to interact with several complex systems, so I guess even you can't be sure about that, but I may be wrong.

If this option turns out to be secure, I believe it would be good to add it to the systemd section of the user guide. You are mentioning passwordless sudo access, but I interpreted this as "passwordless sudo access for everything". But maybe this interpretation is wrong, and you meant setting NOPASSWD only for vopono.

Thanks again, for your work! :)

@d4h0
Copy link
Author

d4h0 commented May 15, 2022

Is there any way, an attacker that got access to my system could use Vopono to execute arbitrary commands? Vopono seems to interact with several complex systems, so I guess even you can't be sure about that, but I may be wrong.

I just realized, that asking this was a bit dumb. Vopono itself, obviously, executes arbitrary commands, so setting NOPASSWD for vopono would anybody allow executing commands with root privileges...

@jamesmcm
Copy link
Owner

I just use NOPASSWD all the time on my personal devices.

The NOPASSWD specific entry should work too.

The ideal option would be to use capabilities (we really only need sudo for the network namespace configuration), but I'm pretty certain there are still some areas lacking there. Another option would be to separate the network namespace creation from the process execution into separate binaries, although the execution part will still need enough capabilities to be able to execute in the new network namespace - it does a bind mount IIRC, I also did a bit of work trying to avoid shelling out in the unfinished libvopono.

Neither of those are small changes though.

@d4h0
Copy link
Author

d4h0 commented May 16, 2022

I just use NOPASSWD all the time on my personal devices.

Are you not worried that everybody that gains access to your main user (physically, or via a remote exploit) easily can get root access?

Configuring docker to not require authentication (which many people do) has the same problem (and I have decided to go through the pain of typing my password every time I use Docker).

The ideal option would be to use capabilities (we really only need sudo for the network namespace configuration), but I'm pretty certain there are still some areas lacking there.

Do you think running Vopono in a container would be easy to set up? This would make it possible to restrict what Vopono/root can do.

I also did a bit of work trying to avoid shelling out in the unfinished libvopono

Is libvopono basically Vopono as a crate? I was wondering if there are any plans to publish the functionality of Vopono as a library. I think, that would be pretty useful (e.g. building GUIs for Vopono, or integrating the functionality in other applications (like a tool that switches the VPN every X minutes :))).


I might have found another way to do what I'm trying to archive.

Basically, the steps would be:

  1. Create a new user named vopono
  2. Add an sudoers entry for the vopono user that enables it to execute the vopono binary without authentication (vopono ALL=NOPASSWD:SETENV: /usr/bin/vopono. SETENV: is required, because Vopono uses sudo -E)
  3. Execute my script as the vopono user

This way, I'd only have to type the password of the vopono user when I start my script, and my regular user wouldn't be able to get root privileges without typing my password.

Do you see any problem with that approach?

I spent most of today to experiment with this idea (mostly researching how to do things), and when I thought I finished it, something broke... x)

I think this happened because I created and killed Vopono (and Privoxy) many times while creating my script.

When I run Vopono from my regular user (which previously always worked), I get the following output:

❯ vopono -v exec --custom /tmp/openvpn_test.ovpn --protocol openvpn --postup "echo '=> VPN is ready!'" "ls"
 2022-05-16T19:45:26.032Z DEBUG vopono::util > Using config dir from $HOME config: /home/dh/.config
 2022-05-16T19:45:26.038Z DEBUG vopono::pulseaudio > Setting PULSE_SERVER to /run/user/1000/pulse/native
 2022-05-16T19:45:26.038Z INFO  vopono::util       > Calling sudo for elevated privileges, current user will be used as default user
 2022-05-16T19:45:26.038Z DEBUG vopono::util       > Args: ["vopono", "-v", "exec", "--custom", "/tmp/openvpn_test.ovpn", "--protocol", "openvpn", "--postup", "echo '=> VPN is ready!'", "ls"]
[sudo] password for dh:
 2022-05-16T19:45:47.528Z DEBUG vopono::util > Using config dir from $HOME config: /home/dh/.config
 2022-05-16T19:45:47.538Z DEBUG vopono::pulseaudio > Setting PULSE_SERVER to /run/user/1000/pulse/native
 2022-05-16T19:45:47.538Z DEBUG vopono::util       > Using config dir from $HOME config: /home/dh/.config
 2022-05-16T19:45:47.539Z DEBUG vopono::util       > Existing namespaces: []
 2022-05-16T19:45:47.539Z DEBUG vopono::util       > Using config dir from $HOME config: /home/dh/.config
 2022-05-16T19:45:47.539Z DEBUG vopono::util       > Using config dir from $HOME config: /home/dh/.config
 2022-05-16T19:45:47.540Z DEBUG vopono::exec       > vopono config.toml: configuration property "firewall" not found
 2022-05-16T19:45:47.540Z DEBUG vopono::exec       > vopono config.toml: configuration property "predown" not found
 2022-05-16T19:45:47.540Z DEBUG vopono::exec       > vopono config.toml: configuration property "user" not found
 2022-05-16T19:45:47.540Z DEBUG vopono::exec       > vopono config.toml: configuration property "dns" not found
 2022-05-16T19:45:47.540Z DEBUG vopono::network_interface > ip addr
 2022-05-16T19:45:47.541Z DEBUG vopono::exec              > Interface: wlp4s0
 2022-05-16T19:45:47.542Z DEBUG vopono::util              > Existing namespaces: []
 2022-05-16T19:45:47.542Z DEBUG vopono::util              > ip netns add vopono_c_Dt2VWW2Ui1J
 2022-05-16T19:45:47.544Z INFO  vopono::netns             > Created new network namespace: vopono_c_Dt2VWW2Ui1J
 2022-05-16T19:45:47.545Z DEBUG vopono::util              > Existing interfaces: 43: c_Dt2VWW2Ui1J_d@if42: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 96:9e:36:fb:c7:df brd ff:ff:ff:ff:ff:ff link-netnsid 1
    inet 10.200.1.1/24 scope global c_Dt2VWW2Ui1J_d
       valid_lft forever preferred_lft forever
    inet6 fe80::949e:36ff:fefb:c7df/64 scope link
       valid_lft forever preferred_lft forever

 2022-05-16T19:45:47.546Z DEBUG vopono::util              > Assigned IPs: [10.200.1.1/24]
 2022-05-16T19:45:47.546Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip addr add 127.0.0.1/8 dev lo
 2022-05-16T19:45:47.548Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip link set lo up
STATE      CONNECTIVITY  WIFI-HW  WIFI     WWAN-HW  WWAN
connected  full          enabled  enabled  enabled  enabled
 2022-05-16T19:45:47.573Z DEBUG vopono::veth_pair         > Detected NetworkManager running
 2022-05-16T19:45:47.573Z DEBUG vopono::veth_pair         > NetworkManager detected, adding c_Dt2VWW2Ui1J_d to unmanaged devices
 2022-05-16T19:45:47.573Z DEBUG vopono::veth_pair         > Appending to existing NetworkManager config file: /etc/NetworkManager/conf.d/unmanaged.conf
 2022-05-16T19:45:47.573Z DEBUG vopono::util              > nmcli connection reload
 2022-05-16T19:45:47.586Z DEBUG vopono::veth_pair         > firewalld not detected running
 2022-05-16T19:45:47.586Z DEBUG vopono::util              > ip link add c_Dt2VWW2Ui1J_d type veth peer name c_Dt2VWW2Ui1J_s
RTNETLINK answers: File exists
 2022-05-16T19:45:47.587Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-16T19:45:47.587Z DEBUG vopono::util              > nmcli connection reload
 2022-05-16T19:45:47.600Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-16T19:45:47.600Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-16T19:45:47.600Z INFO  vopono::netns             > Shutting down vopono namespace - as there are no processes left running inside
 2022-05-16T19:45:47.600Z DEBUG vopono::util              > ip netns delete vopono_c_Dt2VWW2Ui1J
Error: Failed to create veth pair c_Dt2VWW2Ui1J_s, c_Dt2VWW2Ui1J_d

Caused by:
    Command failed: ip link add c_Dt2VWW2Ui1J_d type veth peer name c_Dt2VWW2Ui1J_s

Do you have any idea, what the problem could be?

I guess, restarting my computer would fix the issue, but my script would basically start and kill Vopono similar often.

vopono list doesn't return anything.

Regarding the troubleshooting information:

ip addr:

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: enp0s25: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
    link/ether 68:f7:28:f8:32:e5 brd ff:ff:ff:ff:ff:ff
4: wlp4s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether cc:3d:82:39:ab:5c brd ff:ff:ff:ff:ff:ff
    inet 192.168.179.30/24 brd 192.168.179.255 scope global dynamic noprefixroute wlp4s0
       valid_lft 20554sec preferred_lft 20554sec
    inet6 2001:9e8:a333:b501:bc2e:4324:c63:5c36/64 scope global dynamic noprefixroute
       valid_lft 6767sec preferred_lft 3167sec
    inet6 fe80::7071:540a:99b4:f306/64 scope link noprefixroute
       valid_lft forever preferred_lft forever
5: br-2bf231161a79: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
    link/ether 02:42:3d:bf:4b:16 brd ff:ff:ff:ff:ff:ff
    inet 172.18.0.1/16 brd 172.18.255.255 scope global br-2bf231161a79
       valid_lft forever preferred_lft forever
6: br-553dc8bf66cb: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
    link/ether 02:42:fd:b8:b2:00 brd ff:ff:ff:ff:ff:ff
    inet 172.21.0.1/16 brd 172.21.255.255 scope global br-553dc8bf66cb
       valid_lft forever preferred_lft forever
7: docker0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
    link/ether 02:42:8f:6a:2e:42 brd ff:ff:ff:ff:ff:ff
    inet 172.17.0.1/16 brd 172.17.255.255 scope global docker0
       valid_lft forever preferred_lft forever
13: wwp0s20u10: <BROADCAST,MULTICAST,NOARP> mtu 1428 qdisc noop state DOWN group default qlen 1000
    link/ether 76:85:1e:fe:fc:5b brd ff:ff:ff:ff:ff:ff
43: c_Dt2VWW2Ui1J_d@if42: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 96:9e:36:fb:c7:df brd ff:ff:ff:ff:ff:ff link-netnsid 1
    inet 10.200.1.1/24 scope global c_Dt2VWW2Ui1J_d
       valid_lft forever preferred_lft forever
    inet6 fe80::949e:36ff:fefb:c7df/64 scope link
       valid_lft forever preferred_lft forever

ip link:

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp0s25: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN mode DEFAULT group default qlen 1000
    link/ether 68:f7:28:f8:32:e5 brd ff:ff:ff:ff:ff:ff
4: wlp4s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DORMANT group default qlen 1000
    link/ether cc:3d:82:39:ab:5c brd ff:ff:ff:ff:ff:ff
5: br-2bf231161a79: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default
    link/ether 02:42:3d:bf:4b:16 brd ff:ff:ff:ff:ff:ff
6: br-553dc8bf66cb: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default
    link/ether 02:42:fd:b8:b2:00 brd ff:ff:ff:ff:ff:ff
7: docker0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default
    link/ether 02:42:8f:6a:2e:42 brd ff:ff:ff:ff:ff:ff
13: wwp0s20u10: <BROADCAST,MULTICAST,NOARP> mtu 1428 qdisc noop state DOWN mode DEFAULT group default qlen 1000
    link/ether 76:85:1e:fe:fc:5b brd ff:ff:ff:ff:ff:ff
43: c_Dt2VWW2Ui1J_d@if42: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
    link/ether 96:9e:36:fb:c7:df brd ff:ff:ff:ff:ff:ff link-netnsid 1

ping 10.200.1.2:

PING 10.200.1.2 (10.200.1.2) 56(84) bytes of data.

Seems to hang, nothing happens.

sudo nft list tables / sudo nft list table nat:

sudo: nft: command not found

sudo iptables -t nat -L

Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination
DOCKER     all  --  anywhere             anywhere             ADDRTYPE match dst-type LOCAL

Chain INPUT (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
DOCKER     all  --  anywhere            !127.0.0.0/8          ADDRTYPE match dst-type LOCAL

Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination
MASQUERADE  all  --  172.17.0.0/16        anywhere
MASQUERADE  all  --  172.21.0.0/16        anywhere
MASQUERADE  all  --  172.18.0.0/16        anywhere
MASQUERADE  all  --  10.200.1.0/24        anywhere
MASQUERADE  all  --  10.200.1.0/24        anywhere
MASQUERADE  all  --  10.200.1.0/24        anywhere

Chain DOCKER (2 references)
target     prot opt source               destination
RETURN     all  --  anywhere             anywhere
RETURN     all  --  anywhere             anywhere
RETURN     all  --  anywhere             anywhere

sudo ip netns exec ping 10.200.1.1 / Cannot open network namespace "ping": No such file or directory:

Cannot open network namespace "ping": No such file or directory

sudo ip netns exec vopono_c_Dt2VWW2Ui1J ip addr /
sudo ip netns exec vopono_c_Dt2VWW2Ui1J nft list tables /
sudo ip netns exec vopono_c_Dt2VWW2Ui1J nft list table vopono_c_Dt2VWW2Ui1J /
sudo ip netns exec vopono_c_Dt2VWW2Ui1J iptables -L:

Cannot open network namespace "vopono_c_Dt2VWW2Ui1J": No such file or directory

(I've taken vopono_c_Dt2VWW2Ui1J from the log output of Vopono)

I'm using Arch and the 'aur/vopono-bin' package, in case that is relevant.

@d4h0
Copy link
Author

d4h0 commented May 16, 2022

When I execute the command that failed, I get the following output:

$ sudo ip link add c_Dt2VWW2Ui1J_d type veth peer name c_Dt2VWW2Ui1J_s
RTNETLINK answers: File exists

So I guess, the cleanup didn't work when I killed Vopono.

Is there a way to trigger the cleanup somehow?

@jamesmcm
Copy link
Owner

Are you not worried that everybody that gains access to your main user (physically, or via a remote exploit) easily can get root access?

https://xkcd.com/1200/

It is an issue, but anything that runs as my user could already encrypt all my files, etc. anyway, so the best option is to only run trusted FOSS as much as possible.

Do you think running Vopono in a container would be easy to set up? This would make it possible to restrict what Vopono/root can do.

In theory it's possible, but it changes what the tool is/does. Like at the moment all of the hard work is in setting up the network namespace (and its firewall rules), and then it's just spawning processes inside that. If it were a container, you'd want to just do that in the container (to be fair, most of the code would be identical for the firewall, etc.), but then you need to set up bridging between the containers and presumably spawn your other app in a container too - which is problematic for torrent clients, etc. that need access to the host filesystem.

So it could mean much more configuration for the app side if you just want to run a normal web browser, etc. - it might be doable though. I actually used LXC for this back in 2015, and in the end I realised it was more effort than it was worth getting stuff like X forwarding to work, PulseAudio, etc. - and discovered network namespaces 🙂

Is libvopono basically Vopono as a crate? I was wondering if there are any plans to publish the functionality of Vopono as a library. I think, that would be pretty useful (e.g. building GUIs for Vopono, or integrating the functionality in other applications (like a tool that switches the VPN every X minutes :))).

This would eventually be the idea, but it's quite a lot of work. Maybe I could start by just separating out the current code (even though it shells out) because it is pretty useful.

I also wrote a bit about the possibility for a GUI here - https://www.reddit.com/r/archlinux/comments/u1qj2v/vpn_kill_switches_do_not_always_work/i4g7dp5/?context=3 - it might be cool to do it though, even if it's just a simple PyTK thing for example.

Do you see any problem with that approach?

I think this is the best approach atm, and it's similar to what other tools do too (Jackett, etc.)

Error: Failed to create veth pair c_Dt2VWW2Ui1J_s, c_Dt2VWW2Ui1J_d
Do you have any idea, what the problem could be?

Usually it means the kernel has updated and you need to reboot.

Is there a way to trigger the cleanup somehow?

Oops, it seems this is an edge case where somehow the lock file was deleted but the resources weren't deleted?

It's strange, usually if it fails to delete them the lockfile will still be there, and then it will delete them when you execute vopono next time.

I'd recommend deleting them manually (sudo ip link del XXX) but if it happens again it's worth investigating.

@d4h0
Copy link
Author

d4h0 commented May 17, 2022

I'd recommend deleting them manually (sudo ip link del XXX) but if it happens again it's worth investigating.

Thank you, @jamesmcm! That fixed it.

I guess this happened because I killed Vopono forcefully, and switched between users (my regular user, and the vopono user). It seems, the lockfile is store in the user directory.

https://xkcd.com/1200/

Haha, that's true. Because of that, I'm interested in switching to Qubes OS, which makes it easy to run special-purpose VMs (i.e. one VM for email, one for the browser, one for the dev environment, etc.).

Maybe I could start by just separating out the current code (even though it shells out) because it is pretty useful.

I think, that would be a great approach. The code that shells out can still be replaced gradually then.


I'd like to make Privoxy listen on an address that is only reachable from my machine, if possible. Would that be the following IP address?

2022-05-17T18:06:13.198Z DEBUG vopono::exec > Forwarding port: 8118, 10.200.1.2

If so, is there an easy way to access that IP from within the executed program/script, so I can generate the needed Privoxy config file?

I tried ip -json route get 8.8.8.8 | jq -r '.[].prefsrc which gives me my local IP, when executed from outside Vopono. From within Vopono it gives me 10.236.11.121 instead of 10.200.1.2, however.


When I execute Vopono there seem to be several errors:

  • Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
  • ip6tables v1.8.7 (legacy): unknown reject type "icmp-net-unreachable"
  • and it seems sudo isn't used correctly, once
❯ vopono exec --custom /tmp/openvpn_test.ovpn --protocol openvpn --postup "echo '=> VPN is ready!'" -k -u root -f 8118  "privoxy --chroot --user privoxy --pidfile /tmp/privoxy.pid /etc/privoxy/config"
 2022-05-17T18:46:59.324Z INFO  vopono::util > Calling sudo for elevated privileges, current user will be used as default user
[sudo] password for dh:
 2022-05-17T18:47:02.596Z INFO  vopono::netns > Created new network namespace: vopono_c_Dt2VWW2Ui1J
STATE      CONNECTIVITY  WIFI-HW  WIFI     WWAN-HW  WWAN
connected  full          enabled  enabled  missing  enabled
 2022-05-17T18:47:02.698Z INFO  vopono::netns > IP address of namespace as seen from host: 10.200.1.2
 2022-05-17T18:47:02.698Z INFO  vopono::netns > IP address of host as seen from namespace: 10.200.1.1
 2022-05-17T18:47:02.702Z INFO  vopono::openvpn > Launching OpenVPN...
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
ip6tables v1.8.7 (legacy): unknown reject type "icmp-net-unreachable"
Try `ip6tables -h' or 'ip6tables --help' for more information.
usage: sudo -h | -K | -k | -V
usage: sudo -v [-ABknS] [-g group] [-h host] [-p prompt] [-u user]
usage: sudo -l [-ABknS] [-g group] [-h host] [-p prompt] [-U user] [-u user] [command]
usage: sudo [-ABbEHknPS] [-C num] [-D directory] [-g group] [-h host] [-p prompt] [-R directory] [-T timeout] [-u user]
            [VAR=value] [-i|-s] [<command>]
usage: sudo -e [-ABknS] [-C num] [-D directory] [-g group] [-h host] [-p prompt] [-R directory] [-T timeout] [-u user] file ...
 2022-05-17T18:47:09.345Z INFO  vopono::exec    > Application privoxy --chroot --user privoxy --pidfile /tmp/privoxy.pid /etc/privoxy/config launched in network namespace vopono_c_Dt2VWW2Ui1J with pid 6415
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:47:10.372Z INFO  vopono::exec    > Keep-alive flag active - will leave network namespace alive until ctrl+C received
Verbose output via `-v` option
❯ vopono -v exec --custom /tmp/openvpn_test.ovpn --protocol openvpn --postup "echo '=> VPN is ready!'" -k -u root -f 8118  "privoxy --chroot --user privoxy --pidfile /tmp/privoxy.pid /etc/privoxy/config"
 2022-05-17T18:06:04.051Z DEBUG vopono::util > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:06:04.057Z DEBUG vopono::pulseaudio > Setting PULSE_SERVER to /run/user/1000/pulse/native
 2022-05-17T18:06:04.057Z INFO  vopono::util       > Calling sudo for elevated privileges, current user will be used as default user
 2022-05-17T18:06:04.057Z DEBUG vopono::util       > Args: ["vopono", "-v", "exec", "--custom", "/tmp/openvpn_test.ovpn", "--protocol", "openvpn", "--postup", "echo '=> VPN is ready!'", "-k", "-u", "root", "-f", "8118", "privoxy --chroot --user privoxy --pidfile /tmp/privoxy.pid /etc/privoxy/config"]
 2022-05-17T18:06:04.181Z DEBUG vopono::util > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:06:04.187Z DEBUG vopono::pulseaudio > Setting PULSE_SERVER to /run/user/1000/pulse/native
 2022-05-17T18:06:04.187Z DEBUG vopono::util       > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:06:04.189Z DEBUG vopono::util       > Existing namespaces: []
 2022-05-17T18:06:04.189Z DEBUG vopono::util       > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:06:04.189Z DEBUG vopono::util       > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:06:04.189Z DEBUG vopono::exec       > vopono config.toml: configuration property "firewall" not found
 2022-05-17T18:06:04.189Z DEBUG vopono::exec       > vopono config.toml: configuration property "predown" not found
 2022-05-17T18:06:04.189Z DEBUG vopono::exec       > vopono config.toml: configuration property "dns" not found
 2022-05-17T18:06:04.189Z DEBUG vopono::network_interface > ip addr
 2022-05-17T18:06:04.190Z DEBUG vopono::exec              > Interface: wlp4s0
 2022-05-17T18:06:04.191Z DEBUG vopono::util              > Existing namespaces: []
 2022-05-17T18:06:04.191Z DEBUG vopono::util              > ip netns add vopono_c_Dt2VWW2Ui1J
 2022-05-17T18:06:04.193Z INFO  vopono::netns             > Created new network namespace: vopono_c_Dt2VWW2Ui1J
 2022-05-17T18:06:04.194Z DEBUG vopono::util              > Existing interfaces:
 2022-05-17T18:06:04.194Z DEBUG vopono::util              > Assigned IPs: []
 2022-05-17T18:06:04.194Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip addr add 127.0.0.1/8 dev lo
 2022-05-17T18:06:04.196Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip link set lo up
STATE      CONNECTIVITY  WIFI-HW  WIFI     WWAN-HW  WWAN
connected  full          enabled  enabled  missing  enabled
 2022-05-17T18:06:04.219Z DEBUG vopono::veth_pair         > Detected NetworkManager running
 2022-05-17T18:06:04.219Z DEBUG vopono::veth_pair         > NetworkManager detected, adding c_Dt2VWW2Ui1J_d to unmanaged devices
 2022-05-17T18:06:04.219Z DEBUG vopono::veth_pair         > Appending to existing NetworkManager config file: /etc/NetworkManager/conf.d/unmanaged.conf
 2022-05-17T18:06:04.219Z DEBUG vopono::util              > nmcli connection reload
 2022-05-17T18:06:04.231Z DEBUG vopono::veth_pair         > firewalld not detected running
 2022-05-17T18:06:04.231Z DEBUG vopono::util              > ip link add c_Dt2VWW2Ui1J_d type veth peer name c_Dt2VWW2Ui1J_s
 2022-05-17T18:06:04.233Z DEBUG vopono::util              > ip link set c_Dt2VWW2Ui1J_d up
 2022-05-17T18:06:04.235Z DEBUG vopono::util              > ip link set c_Dt2VWW2Ui1J_s netns vopono_c_Dt2VWW2Ui1J up
 2022-05-17T18:06:04.265Z DEBUG vopono::util              > ip addr add 10.200.1.1/24 dev c_Dt2VWW2Ui1J_d
 2022-05-17T18:06:04.267Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip addr add 10.200.1.2/24 dev c_Dt2VWW2Ui1J_s
 2022-05-17T18:06:04.269Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip route add default via 10.200.1.1 dev c_Dt2VWW2Ui1J_s
 2022-05-17T18:06:04.271Z INFO  vopono::netns             > IP address of namespace as seen from host: 10.200.1.2
 2022-05-17T18:06:04.271Z INFO  vopono::netns             > IP address of host as seen from namespace: 10.200.1.1
 2022-05-17T18:06:04.271Z DEBUG vopono::util              > iptables -t nat -A POSTROUTING -s 10.200.1.0/24 -o wlp4s0 -j MASQUERADE
 2022-05-17T18:06:04.272Z DEBUG vopono::util              > iptables -I FORWARD -i c_Dt2VWW2Ui1J_d -o wlp4s0 -j ACCEPT
 2022-05-17T18:06:04.273Z DEBUG vopono::util              > iptables -I FORWARD -o c_Dt2VWW2Ui1J_d -i wlp4s0 -j ACCEPT
 2022-05-17T18:06:04.274Z DEBUG vopono::util              > sysctl -q net.ipv4.ip_forward=1
 2022-05-17T18:06:04.274Z DEBUG vopono::dns_config        > Setting namespace vopono_c_Dt2VWW2Ui1J DNS server to 8.8.8.8
 2022-05-17T18:06:04.275Z INFO  vopono::openvpn           > Launching OpenVPN...
 2022-05-17T18:06:04.275Z DEBUG vopono::openvpn           > Detected IPv6 enabled in /sys/module/ipv6/parameters/disable
 2022-05-17T18:06:04.275Z DEBUG vopono::openvpn           > Found remotes: [Remote { host: IPv4(219.100.37.56), port: 443, protocol: TCP }]
 2022-05-17T18:06:04.275Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J openvpn --config /tmp/openvpn_test.ovpn --machine-readable-output --log /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log --pull-filter ignore block-outside-dns
 2022-05-17T18:06:04.282Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n"
 2022-05-17T18:06:04.282Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n"
 2022-05-17T18:06:04.282Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n"
 2022-05-17T18:06:04.282Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n"
 2022-05-17T18:06:04.283Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n"
 2022-05-17T18:06:04.283Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n"
 2022-05-17T18:06:04.283Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n"
 2022-05-17T18:06:04.634Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n"
 2022-05-17T18:06:04.634Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n"
 2022-05-17T18:06:04.634Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n"
 2022-05-17T18:06:04.941Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n"
 2022-05-17T18:06:05.658Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n"
 2022-05-17T18:06:05.659Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n"
 2022-05-17T18:06:05.659Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n"
 2022-05-17T18:06:06.272Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n"
 2022-05-17T18:06:06.272Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n"
 2022-05-17T18:06:07.940Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n"
 2022-05-17T18:06:12.375Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > Found OpenVPN DNS response: 10.236.254.254
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > Set OpenVPN DNS to: 10.236.254.254
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n"
 2022-05-17T18:06:13.135Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n1652810773.135594 1 net_iface_mtu_set: mtu 1500 for tun0\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n1652810773.135594 1 net_iface_mtu_set: mtu 1500 for tun0\n1652810773.135617 1 net_iface_up: set tun0 up\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n1652810773.135594 1 net_iface_mtu_set: mtu 1500 for tun0\n1652810773.135617 1 net_iface_up: set tun0 up\n1652810773.135702 1 net_addr_ptp_v4_add: 10.236.17.129 peer 10.236.17.130 dev tun0\n"
 2022-05-17T18:06:13.136Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n1652810773.135594 1 net_iface_mtu_set: mtu 1500 for tun0\n1652810773.135617 1 net_iface_up: set tun0 up\n1652810773.135702 1 net_addr_ptp_v4_add: 10.236.17.129 peer 10.236.17.130 dev tun0\n1652810773.135749 3 net_route_v4_add: 219.100.37.56/32 via 10.200.1.1 dev [NULL] table 0 metric -1\n"
 2022-05-17T18:06:13.138Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n1652810773.135594 1 net_iface_mtu_set: mtu 1500 for tun0\n1652810773.135617 1 net_iface_up: set tun0 up\n1652810773.135702 1 net_addr_ptp_v4_add: 10.236.17.129 peer 10.236.17.130 dev tun0\n1652810773.135749 3 net_route_v4_add: 219.100.37.56/32 via 10.200.1.1 dev [NULL] table 0 metric -1\n1652810773.135776 3 net_route_v4_add: 0.0.0.0/1 via 10.236.17.130 dev [NULL] table 0 metric -1\n"
 2022-05-17T18:06:13.138Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n1652810773.135594 1 net_iface_mtu_set: mtu 1500 for tun0\n1652810773.135617 1 net_iface_up: set tun0 up\n1652810773.135702 1 net_addr_ptp_v4_add: 10.236.17.129 peer 10.236.17.130 dev tun0\n1652810773.135749 3 net_route_v4_add: 219.100.37.56/32 via 10.200.1.1 dev [NULL] table 0 metric -1\n1652810773.135776 3 net_route_v4_add: 0.0.0.0/1 via 10.236.17.130 dev [NULL] table 0 metric -1\n1652810773.135793 3 net_route_v4_add: 128.0.0.0/1 via 10.236.17.130 dev [NULL] table 0 metric -1\n"
 2022-05-17T18:06:13.138Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n1652810773.135594 1 net_iface_mtu_set: mtu 1500 for tun0\n1652810773.135617 1 net_iface_up: set tun0 up\n1652810773.135702 1 net_addr_ptp_v4_add: 10.236.17.129 peer 10.236.17.130 dev tun0\n1652810773.135749 3 net_route_v4_add: 219.100.37.56/32 via 10.200.1.1 dev [NULL] table 0 metric -1\n1652810773.135776 3 net_route_v4_add: 0.0.0.0/1 via 10.236.17.130 dev [NULL] table 0 metric -1\n1652810773.135793 3 net_route_v4_add: 128.0.0.0/1 via 10.236.17.130 dev [NULL] table 0 metric -1\n1652810773.135811 40 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this\n"
 2022-05-17T18:06:13.138Z DEBUG vopono::openvpn           > "1652810764.282423 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.\n1652810764.282542 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022\n1652810764.282552 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10\n1652810764.282597 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.\n1652810764.283114 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.56:443\n1652810764.283145 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]\n1652810764.283152 1 Attempting to establish TCP connection with [AF_INET]219.100.37.56:443 [nonblock]\n1652810764.634287 1 TCP connection established with [AF_INET]219.100.37.56:443\n1652810764.634315 1 TCP_CLIENT link local: (not bound)\n1652810764.634319 1 TCP_CLIENT link remote: [AF_INET]219.100.37.56:443\n1652810764.941386 14000003 TLS: Initial packet from [AF_INET]219.100.37.56:443, sid=10888c4f e9119da3\n1652810765.658951 14000002 VERIFY OK: depth=2, C=US, ST=New Jersey, L=Jersey City, O=The USERTRUST Network, CN=USERTrust RSA Certification Authority\n1652810765.659184 14000002 VERIFY OK: depth=1, C=GB, ST=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA\n1652810765.659278 14000002 VERIFY OK: depth=0, CN=*.opengw.net\n1652810766.272593 14000002 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256\n1652810766.272620 1 [*.opengw.net] Peer Connection Initiated with [AF_INET]219.100.37.56:443\n1652810767.940527 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810772.375578 22000003 SENT CONTROL [*.opengw.net]: 'PUSH_REQUEST' (status=1)\n1652810773.135065 22000003 PUSH: Received control message: 'PUSH_REPLY,ping 3,ping-restart 10,ifconfig 10.236.17.129 10.236.17.130,dhcp-option DNS 10.236.254.254,dhcp-option DNS 8.8.8.8,route-gateway 10.236.17.130,redirect-gateway def1'\n1652810773.135134 22000003 OPTIONS IMPORT: timers and/or timeouts modified\n1652810773.135237 22000003 OPTIONS IMPORT: --ifconfig/up options modified\n1652810773.135241 22000003 OPTIONS IMPORT: route options modified\n1652810773.135243 22000003 OPTIONS IMPORT: route-related options modified\n1652810773.135245 22000003 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified\n1652810773.135249 14000003 Using peer cipher 'AES-128-CBC'\n1652810773.135306 14000002 Outgoing Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135313 14000002 Outgoing Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135316 14000002 Incoming Data Channel: Cipher 'AES-128-CBC' initialized with 128 bit key\n1652810773.135320 14000002 Incoming Data Channel: Using 160 bit message hash 'SHA1' for HMAC authentication\n1652810773.135334 3 net_route_v4_best_gw query: dst 0.0.0.0\n1652810773.135390 3 net_route_v4_best_gw result: via 10.200.1.1 dev c_Dt2VWW2Ui1J_s\n1652810773.135414 3 ROUTE_GATEWAY 10.200.1.1/255.255.255.0 IFACE=c_Dt2VWW2Ui1J_s HWADDR=32:5d:de:4f:2a:2b\n1652810773.135578 1 TUN/TAP device tun0 opened\n1652810773.135594 1 net_iface_mtu_set: mtu 1500 for tun0\n1652810773.135617 1 net_iface_up: set tun0 up\n1652810773.135702 1 net_addr_ptp_v4_add: 10.236.17.129 peer 10.236.17.130 dev tun0\n1652810773.135749 3 net_route_v4_add: 219.100.37.56/32 via 10.200.1.1 dev [NULL] table 0 metric -1\n1652810773.135776 3 net_route_v4_add: 0.0.0.0/1 via 10.236.17.130 dev [NULL] table 0 metric -1\n1652810773.135793 3 net_route_v4_add: 128.0.0.0/1 via 10.236.17.130 dev [NULL] table 0 metric -1\n1652810773.135811 40 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this\n1652810773.135816 1 Initialization Sequence Completed\n"
 2022-05-17T18:06:13.139Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -I INPUT -p tcp --dport 8118 -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.141Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -I OUTPUT -p tcp --sport 8118 -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.143Z DEBUG vopono::openvpn           > Setting OpenVPN killswitch....
 2022-05-17T18:06:13.143Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -P INPUT DROP
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.145Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -P FORWARD DROP
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.147Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -P OUTPUT DROP
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.149Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.151Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -A INPUT -i lo -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.152Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -A INPUT -i tun+ -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.154Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -A OUTPUT -o lo -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.157Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -A OUTPUT -d 8.8.8.8 -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.158Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -A OUTPUT -p tcp -m tcp --dport 443 -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.160Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -A OUTPUT -o tun+ -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.162Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J iptables -A OUTPUT -j REJECT --reject-with icmp-net-unreachable
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.163Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -P INPUT DROP
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.165Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -P FORWARD DROP
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.166Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -P OUTPUT DROP
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.168Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.169Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -A INPUT -i lo -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.171Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -A INPUT -i tun+ -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.172Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -A OUTPUT -o lo -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.174Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -A OUTPUT -o tun+ -j ACCEPT
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:13.176Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip6tables -A OUTPUT -j REJECT --reject-with icmp-net-unreachable
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
ip6tables v1.8.7 (legacy): unknown reject type "icmp-net-unreachable"
Try `ip6tables -h' or 'ip6tables --help' for more information.
 2022-05-17T18:06:13.177Z DEBUG vopono::exec              > Checking that OpenVPN is running in namespace: vopono_c_Dt2VWW2Ui1J
 2022-05-17T18:06:13.186Z DEBUG vopono::dns_config        > Setting namespace vopono_c_Dt2VWW2Ui1J DNS server to 10.236.254.254
 2022-05-17T18:06:13.187Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:06:13.187Z DEBUG vopono::netns             > Writing lockfile: /home/dh/.config/vopono/locks/vopono_c_Dt2VWW2Ui1J
 2022-05-17T18:06:13.187Z DEBUG vopono::netns             > Lockfile written: /home/dh/.config/vopono/locks/vopono_c_Dt2VWW2Ui1J/3424
 2022-05-17T18:06:13.187Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
usage: sudo -h | -K | -k | -V
usage: sudo -v [-ABknS] [-g group] [-h host] [-p prompt] [-u user]
usage: sudo -l [-ABknS] [-g group] [-h host] [-p prompt] [-U user] [-u user] [command]
usage: sudo [-ABbEHknPS] [-C num] [-D directory] [-g group] [-h host] [-p prompt] [-R directory] [-T timeout] [-u user]
            [VAR=value] [-i|-s] [<command>]
usage: sudo -e [-ABknS] [-C num] [-D directory] [-g group] [-h host] [-p prompt] [-R directory] [-T timeout] [-u user] file ...
 2022-05-17T18:06:13.197Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J sudo -Eu root privoxy --chroot --user privoxy --pidfile /tmp/privoxy.pid /etc/privoxy/config
 2022-05-17T18:06:13.198Z DEBUG vopono::exec              > Forwarding port: 8118, 10.200.1.2
 2022-05-17T18:06:13.198Z INFO  vopono::exec              > Application privoxy --chroot --user privoxy --pidfile /tmp/privoxy.pid /etc/privoxy/config launched in network namespace vopono_c_Dt2VWW2Ui1J with pid 3516
Bind /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log -> /etc/openvpn.log failed: No such file or directory
 2022-05-17T18:06:14.221Z INFO  vopono::exec              > Keep-alive flag active - will leave network namespace alive until ctrl+C received
^C 2022-05-17T18:40:38.951Z INFO  vopono::exec              > SIGINT received, terminating...
 2022-05-17T18:40:38.952Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:40:38.952Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:40:38.952Z INFO  vopono::netns             > Shutting down vopono namespace - as there are no processes left running inside
 2022-05-17T18:40:38.952Z DEBUG vopono::openvpn           > Killed OpenVPN (pid: 3492)
 2022-05-17T18:40:38.952Z DEBUG vopono::util              > ip link delete c_Dt2VWW2Ui1J_d
 2022-05-17T18:40:39.008Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:40:39.009Z DEBUG vopono::util              > nmcli connection reload
 2022-05-17T18:40:39.023Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:40:39.023Z DEBUG vopono::host_masquerade   > Remaining namespaces: Ok({})
 2022-05-17T18:40:39.023Z DEBUG vopono::util              > iptables -t nat -D POSTROUTING -s 10.200.1.0/24 -o wlp4s0 -j MASQUERADE
 2022-05-17T18:40:39.024Z DEBUG vopono::util              > Using config dir from $HOME config: /home/dh/.config
 2022-05-17T18:40:39.024Z DEBUG vopono::host_masquerade   > Remaining namespaces: Ok({})
 2022-05-17T18:40:39.024Z DEBUG vopono::util              > iptables -D FORWARD -o c_Dt2VWW2Ui1J_d -i wlp4s0 -j ACCEPT
 2022-05-17T18:40:39.025Z DEBUG vopono::util              > iptables -D FORWARD -i c_Dt2VWW2Ui1J_d -o wlp4s0 -j ACCEPT
 2022-05-17T18:40:39.025Z DEBUG vopono::util              > ip netns delete vopono_c_Dt2VWW2Ui1J

I get the same output with vopono exec --custom /tmp/openvpn_test.ovpn --protocol openvpn --postup "echo '=> VPN is ready!'" "ls", so it doesn't seem to be triggered by the Privoxy settings.

Is that something to worry about? The sudo message seem odd to me.

@jamesmcm
Copy link
Owner

I'd like to make Privoxy listen on an address that is only reachable from my machine, if possible. Would that be the following IP address?

2022-05-17T18:06:13.198Z DEBUG vopono::exec > Forwarding port: 8118, 10.200.1.2

If so, is there an easy way to access that IP from within the executed program/script, so I can generate the needed Privoxy config file?

Not at the moment, but it could be set like the $VOPONO_NS env var is here:

std::env::set_var("VOPONO_NS", &self.name);

Regarding the errors, I think the OpenVPN log binding doesn't matter (it seems to read the log fine anyway).

But the ip6tables one may be an issue and seems to be related to this - https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515752 - I'll try to test that change, i..e checking we use icmp6-* for ip6tables (personally I normally use nftables so I never saw this, although iptables is working okay on my Steam Deck at least).

The sudo one is strange, it's almost like it isn't quoting the command properly and is interpreting the other options as options for sudo 🤔

@d4h0
Copy link
Author

d4h0 commented May 18, 2022

After implementing #154 I was finally able to run Privoxy through Vopono!

With a bit of luck, I should be able to implement my 'VPN changer' script tomorrow (or rather, to test it. It basically is complete).

Do you think, this information would be useful to others and should be added to the user guide? Otherwise, I'd just post it here.

@jamesmcm
Copy link
Owner

Yeah it'd be great to add it to the guide, I want to add instructions for Jackett too,

@d4h0
Copy link
Author

d4h0 commented May 23, 2022

Is libvopono basically Vopono as a crate? I was wondering if there are any plans to publish the functionality of Vopono as a library. I think, that would be pretty useful (e.g. building GUIs for Vopono, or integrating the functionality in other applications (like a tool that switches the VPN every X minutes :))).

This would eventually be the idea, but it's quite a lot of work. Maybe I could start by just separating out the current code (even though it shells out) because it is pretty useful.

Have you seen netns-exec?

It seems to do something similar to Vopono, and seems to not shell out (and has only the nix crate as dependency). Just in case, you are not sure how to replace some instances of shelling-out with pure Rust.


I've finally gotten my 'VPN changer' script working...

Doing this in Bash (as an example for the scripting guide), was pretty painful... I will write the real version most definitely not in Bash... ;)

The guide section is basically finished, but I'm going to wait with my PR until I've gotten my real use case working, which will probably be more like a Unix Socket-base API around Vopono. Just in case, I discover more caveats, or find out more useful information.


While developing the Bash script I sometimes got a few new errors:

[dh@arch bin]$ thread 'main' panicked at 'Failed to restore backup of NetworkManager unmanaged.conf: Os { code: 2, kind: NotFound, message: "No such file or directory" }', src/veth_pair.rs:187:22


 2022-05-20T21:58:05.496Z WARN  vopono::dns_config > Failed to delete network namespace directory: /etc/netns/vopono_c_Dt2VWW2Ui1J: Os { code: 2, kind: NotFound, message: "No such file or directory" }

Error: Could not process rule: No such file or directory
delete table inet vopono_nat
                  ^^^^^^^^^^

thread 'main' panicked at 'Failed to delete nftables masquerade rule, ip_mask: 10.200.1.0/24, interface: wlp4s0', src/host_masquerade.rs:113:29

Is that something to worry about? Do I need to restore some config file somehow, like the backup of the NetworkManager config file?

@jamesmcm
Copy link
Owner

Thanks, I'll check that out. It's useful, tbh the only thing still requiring shelling out is setting the nftables firewall rules (but there are a lot of them) and iptables support too.

If the errors are only in the destructors just check that the state is okay afterwards (nothing left dirty). But that said, it would be good to fix the panics if you can pinpoint the causes?

@d4h0
Copy link
Author

d4h0 commented May 23, 2022

If the errors are only in the destructors just check that the state is okay afterwards (nothing left dirty)

Yes, I believe the errors happened mostly during the teardown process. How would I check that the state is okay? Everything seems to work fine.

But that said, it would be good to fix the panics if you can pinpoint the causes?

I believe the errors happened only when my script wasn't able to kill previous Vopono instances*. When I then killed the script at some point via Ctrl-C, the above errors were displayed.

So the errors should only happen when automating Vopono (and hopefully, my scripting section will help people to avoid these errors).

* The problem was basically, that Vopono restarts itself via sudo if it wasn't started with root privileges. So if I executed vopono {options} & in my script, sudo kill -INT $pid_of_bg_job (and a ton of other commands and command variants to kill processes that I've tried... ;)) wouldn't kill Vopono. This happens, because the main Vopono process (which waits for the child process) doesn't handle SIGINT, so sending SIGINT to it, does nothing.

This took me longer to figure out, than I'd like to admit... x)

@jamesmcm
Copy link
Owner

Oh, I see what you mean, only the one running with sudo handles SIGINT - https://github.com/jamesmcm/vopono/blob/master/src/exec.rs#L479-L507

In theory we could use another thread and a channel to do it with both processes, I'm not 100% sure how the sudo crate handles it though.

@d4h0
Copy link
Author

d4h0 commented May 25, 2022

In theory we could use another thread and a channel to do it with both processes, I'm not 100% sure how the sudo crate handles it though.

I actually started implementing a fix, but when I figured out a workaround (just executing Vopono via sudo directly), and I realized it still doesn't work (killing Vopno by the background job ID/PID), I stopped.

For some reason, sudo kill -INT still can't kill Vopono if it is started via sudo vopono.

When I read the man page of sudo, I read that sudo does and doesn't forward signals in some situations, so I thought it's normal that sudo doesn't do it in this case.

But I just did an experiment:

$ sudo ls # Cache the password
$ sudo sleep 10m &
[1] 30256
$ sudo kill -INT 30256
$ jobs
[1]+  Interrupt               sudo sleep 10m

...so it actually should work.

My workaround is to start Vopono directly via sudo, get the PID of the sudo process via jobs, and then get the Vopono PID via ps --ppid $(jobs -pr) -o pid=, which is easy enough (after figuring it out).

But this most likely should be fixed, if possible.

Besides reducing potential problems for other people who'd like to automate Vopono (and don't read the scripting guide), and making the guide a tiny bit easier, it would also eliminate one of the dependencies in my Rust version of the script.

Do you have any idea why Vopono started via sudo vopono {options} & can't be killed via sudo kill -INT $(jobs -pr)?

As far as I remember, that should work (if I remember the SIGINT handling code correctly).

Vopono doesn't restart itself if it is already runs with root privileges, right?

Maybe I can have another look tomorrow. But I haven't as much time available anymore as I had last week, so I'm not sure if I can fix it now.

I also noticed that Vopono (if started without sudo) doesn't return the exit code of the sudo-ed process (it always returns 0). Is there a reason for that? If not, that also should be fixed (as the return code of a program is often used in scripts).

@d4h0
Copy link
Author

d4h0 commented May 26, 2022

What I forgot: Fixing the above probably also fix the issue that Vopono sometimes can't be killed via Ctrl-C (which happened to me a few times).

@d4h0
Copy link
Author

d4h0 commented May 26, 2022

@jamesmcm: Is there any chance that your last commits have broken OpenVPN support?

I've updated my system (including Vopono), and now Vopono always hangs on:

 2022-05-26T15:45:42.178Z DEBUG vopono::openvpn           > 1653579942.178566 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.11:443
 2022-05-26T15:45:42.178Z DEBUG vopono::openvpn           > 1653579942.178600 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]
 2022-05-26T15:45:42.178Z DEBUG vopono::openvpn           > 1653579942.178605 1 Attempting to establish TCP connection with [AF_INET]219.100.37.11:443 [nonblock]
Full log
=> Starting Vopono
=> Sleeping for 6 minutes, then restarting...
 2022-05-26T15:45:42.046Z DEBUG vopono::util > Using config dir from $HOME config: /root/.config
 2022-05-26T15:45:42.046Z DEBUG vopono::util > Using config dir from $SUDO_USER config: /home/vopono/.config
 2022-05-26T15:45:42.051Z WARN  vopono       > Could not parse PULSE_SERVER from pactl info output: Err(Could not parse pactl output!:
)
 2022-05-26T15:45:42.051Z DEBUG vopono::util > Using config dir from $HOME config: /root/.config
 2022-05-26T15:45:42.051Z DEBUG vopono::util > Using config dir from $SUDO_USER config: /home/vopono/.config
 2022-05-26T15:45:42.052Z DEBUG vopono::util > Existing namespaces: ["vopono_c_Dt2VWW2Ui1J"]
 2022-05-26T15:45:42.052Z DEBUG vopono::util > Removing dead namespace: vopono_c_Dt2VWW2Ui1J
 2022-05-26T15:45:42.052Z DEBUG vopono::util > ip netns delete vopono_c_Dt2VWW2Ui1J
 2022-05-26T15:45:42.053Z DEBUG vopono::util > Using config dir from $HOME config: /root/.config
 2022-05-26T15:45:42.053Z DEBUG vopono::util > Using config dir from $SUDO_USER config: /home/vopono/.config
 2022-05-26T15:45:42.053Z DEBUG vopono::util > Using config dir from $HOME config: /root/.config
 2022-05-26T15:45:42.053Z DEBUG vopono::util > Using config dir from $SUDO_USER config: /home/vopono/.config
 2022-05-26T15:45:42.053Z DEBUG vopono::exec > vopono config.toml: configuration property "firewall" not found
 2022-05-26T15:45:42.053Z DEBUG vopono::exec > vopono config.toml: configuration property "predown" not found
 2022-05-26T15:45:42.053Z DEBUG vopono::exec > vopono config.toml: configuration property "dns" not found
 2022-05-26T15:45:42.053Z DEBUG vopono::exec > vopono config.toml: configuration property "interface" not found
 2022-05-26T15:45:42.053Z DEBUG vopono::network_interface > ip addr
 2022-05-26T15:45:42.055Z WARN  vopono::exec              > Multiple network interfaces are active: [
    "wlp4s0",
    "c_Dt2VWW2Ui1J_d@if14",
], consider specifying the interface with the -i argument. Using wlp4s0
 2022-05-26T15:45:42.055Z DEBUG vopono::exec              > Interface: wlp4s0
 2022-05-26T15:45:42.056Z DEBUG vopono::util              > Existing namespaces: []
 2022-05-26T15:45:42.056Z DEBUG vopono::util              > ip netns add vopono_c_Dt2VWW2Ui1J
 2022-05-26T15:45:42.057Z INFO  vopono::netns             > Created new network namespace: vopono_c_Dt2VWW2Ui1J
 2022-05-26T15:45:42.058Z DEBUG vopono::util              > Existing interfaces: 15: c_Dt2VWW2Ui1J_d@if14: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 96:9e:36:fb:c7:df brd ff:ff:ff:ff:ff:ff link-netnsid unknown
    inet 10.200.2.1/24 scope global c_Dt2VWW2Ui1J_d
       valid_lft forever preferred_lft forever
    inet6 fe80::949e:36ff:fefb:c7df/64 scope link
       valid_lft forever preferred_lft forever

 2022-05-26T15:45:42.060Z DEBUG vopono::util              > Assigned IPs: [10.200.2.1/24]
 2022-05-26T15:45:42.060Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip addr add 127.0.0.1/8 dev lo
 2022-05-26T15:45:42.062Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip link set lo up
STATE      CONNECTIVITY  WIFI-HW  WIFI     WWAN-HW  WWAN
connected  full          enabled  enabled  missing  enabled
 2022-05-26T15:45:42.091Z DEBUG vopono::veth_pair         > Detected NetworkManager running
 2022-05-26T15:45:42.091Z DEBUG vopono::veth_pair         > NetworkManager detected, adding c_Dt2VWW2Ui1J_d to unmanaged devices
 2022-05-26T15:45:42.091Z DEBUG vopono::veth_pair         > Appending to existing NetworkManager config file: /etc/NetworkManager/conf.d/unmanaged.conf
 2022-05-26T15:45:42.091Z DEBUG vopono::util              > nmcli connection reload
 2022-05-26T15:45:42.105Z DEBUG vopono::veth_pair         > firewalld not detected running
 2022-05-26T15:45:42.105Z DEBUG vopono::util              > ip link add c_Dt2VWW2Ui1J_d type veth peer name c_Dt2VWW2Ui1J_s
 2022-05-26T15:45:42.108Z DEBUG vopono::util              > ip link set c_Dt2VWW2Ui1J_d up
 2022-05-26T15:45:42.110Z DEBUG vopono::util              > ip link set c_Dt2VWW2Ui1J_s netns vopono_c_Dt2VWW2Ui1J up
 2022-05-26T15:45:42.142Z DEBUG vopono::util              > ip addr add 10.200.1.1/24 dev c_Dt2VWW2Ui1J_d
 2022-05-26T15:45:42.145Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip addr add 10.200.1.2/24 dev c_Dt2VWW2Ui1J_s
 2022-05-26T15:45:42.148Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J ip route add default via 10.200.1.1 dev c_Dt2VWW2Ui1J_s
 2022-05-26T15:45:42.149Z INFO  vopono::netns             > IP address of namespace as seen from host: 10.200.1.2
 2022-05-26T15:45:42.149Z INFO  vopono::netns             > IP address of host as seen from namespace: 10.200.1.1
 2022-05-26T15:45:42.149Z DEBUG vopono::util              > nft add table inet vopono_nat
 2022-05-26T15:45:42.151Z DEBUG vopono::util              > nft add chain inet vopono_nat postrouting { type nat hook postrouting priority 100 ; }
 2022-05-26T15:45:42.154Z DEBUG vopono::util              > nft add rule inet vopono_nat postrouting oifname wlp4s0 ip saddr 10.200.1.0/24 counter masquerade
 2022-05-26T15:45:42.157Z DEBUG vopono::util              > nft add table inet vopono_bridge
 2022-05-26T15:45:42.159Z DEBUG vopono::util              > nft add chain inet vopono_bridge forward { type filter hook forward priority -10 ; }
 2022-05-26T15:45:42.161Z DEBUG vopono::util              > nft add rule inet vopono_bridge forward iifname c_Dt2VWW2Ui1J_d oifname wlp4s0 counter accept
 2022-05-26T15:45:42.164Z DEBUG vopono::util              > nft add rule inet vopono_bridge forward oifname c_Dt2VWW2Ui1J_d iifname wlp4s0 counter accept
 2022-05-26T15:45:42.166Z DEBUG vopono::util              > sysctl -q net.ipv4.ip_forward=1
 2022-05-26T15:45:42.167Z DEBUG vopono::dns_config        > Setting namespace vopono_c_Dt2VWW2Ui1J DNS server to 8.8.8.8
 2022-05-26T15:45:42.168Z INFO  vopono::openvpn           > Launching OpenVPN...
 2022-05-26T15:45:42.168Z DEBUG vopono::openvpn           > Detected IPv6 enabled in /sys/module/ipv6/parameters/disable
 2022-05-26T15:45:42.169Z DEBUG vopono::openvpn           > Found remotes: [Remote { host: IPv4(219.100.37.11), port: 443, protocol: TCP }]
 2022-05-26T15:45:42.169Z DEBUG vopono::netns             > ip netns exec vopono_c_Dt2VWW2Ui1J openvpn --config /tmp/openvpn_test.ovpn --machine-readable-output --log /etc/netns/vopono_c_Dt2VWW2Ui1J/openvpn.log --pull-filter ignore block-outside-dns
 2022-05-26T15:45:42.177Z DEBUG vopono::openvpn           > 1653579942.177711 40 DEPRECATED OPTION: --cipher set to 'AES-128-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-128-CBC' to --data-ciphers or change --cipher 'AES-128-CBC' to --data-ciphers-fallback 'AES-128-CBC' to silence this warning.
 2022-05-26T15:45:42.177Z DEBUG vopono::openvpn           > 1653579942.177856 1 OpenVPN 2.5.6 [git:makepkg/e8df2e64d6f817e6+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 16 2022
 2022-05-26T15:45:42.177Z DEBUG vopono::openvpn           > 1653579942.177869 1 library versions: OpenSSL 1.1.1o  3 May 2022, LZO 2.10
 2022-05-26T15:45:42.177Z DEBUG vopono::openvpn           > 1653579942.177933 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.
 2022-05-26T15:45:42.178Z DEBUG vopono::openvpn           > 1653579942.178566 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.11:443
 2022-05-26T15:45:42.178Z DEBUG vopono::openvpn           > 1653579942.178600 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]
 2022-05-26T15:45:42.178Z DEBUG vopono::openvpn           > 1653579942.178605 1 Attempting to establish TCP connection with [AF_INET]219.100.37.11:443 [nonblock]

After some time, I got the following output:

2022-05-26T15:47:42.295Z DEBUG vopono::openvpn           > 1653580062.295219 1000021 TCP: connect to [AF_INET]219.100.37.11:443 failed: Connection timed out
 2022-05-26T15:47:42.295Z DEBUG vopono::openvpn           > 1653580062.295292 1 SIGUSR1[connection failed(soft),init_instance] received, process restarting
 2022-05-26T15:47:42.295Z DEBUG vopono::openvpn           > 1653580062.295304 21000003 Restart pause, 5 second(s)
 2022-05-26T15:47:47.295Z DEBUG vopono::openvpn           > 1653580067.295383 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.
 2022-05-26T15:47:47.295Z DEBUG vopono::openvpn           > 1653580067.295487 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.11:443
 2022-05-26T15:47:47.295Z DEBUG vopono::openvpn           > 1653580067.295507 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]
 2022-05-26T15:47:47.295Z DEBUG vopono::openvpn           > 1653580067.295511 1 Attempting to establish TCP connection with [AF_INET]219.100.37.11:443 [nonblock]
 2022-05-26T15:49:47.409Z DEBUG vopono::openvpn           > 1653580187.409558 1000021 TCP: connect to [AF_INET]219.100.37.11:443 failed: Connection timed out
 2022-05-26T15:49:47.409Z DEBUG vopono::openvpn           > 1653580187.409634 1 SIGUSR1[connection failed(soft),init_instance] received, process restarting
 2022-05-26T15:49:47.409Z DEBUG vopono::openvpn           > 1653580187.409646 21000003 Restart pause, 5 second(s)
 2022-05-26T15:49:52.409Z DEBUG vopono::openvpn           > 1653580192.409730 40 WARNING: No server certificate verification method has been enabled.  See https://openvpn.net/howto.html#mitm for more info.
 2022-05-26T15:49:52.409Z DEBUG vopono::openvpn           > 1653580192.409826 1 TCP/UDP: Preserving recently used remote address: [AF_INET]219.100.37.11:443
 2022-05-26T15:49:52.409Z DEBUG vopono::openvpn           > 1653580192.409849 2b000003 Socket Buffers: R=[131072->131072] S=[16384->16384]
 2022-05-26T15:49:52.409Z DEBUG vopono::openvpn           > 1653580192.409854 1 Attempting to establish TCP connection with [AF_INET]219.100.37.11:443 [nonblock]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants