samicrusader / qomui

Qomui (Qt OpenVPN Management UI)
GNU General Public License v3.0
14 stars 2 forks source link

Numerous issues on Ubuntu 22.04 / mint 21.1 #12

Open ryanthomas-org opened 1 year ago

ryanthomas-org commented 1 year ago

EDIT: The other problem I describe below was simply operator error; I didn't realize ufw was running. The only real issues here then are 1.) the cgroup error and 2.) the deprecation of systemd-resolve. I found workarounds for both.

  File "/usr/lib/python3/dist-packages/dbus/service.py", line 715, in _message_cb
    retval = candidate_method(self, *args, **keywords)
  File "/usr/lib/python3/dist-packages/qomui/qomui_service.py", line 228, in disconnect
    self.restore_default_dns()
  File "/usr/lib/python3/dist-packages/qomui/qomui_service.py", line 288, in restore_default_dns
    Popen([
  File "/usr/lib/python3.10/subprocess.py", line 969, in __init__
    self._execute_child(args, executable, preexec_fn, close_fds,
  File "/usr/lib/python3.10/subprocess.py", line 1845, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'systemd-resolve'

So far the above was the easiest issue to work around, the systemd-resolve command has been deprecated and its replacement is almost 100% synonymous so I work around via sudo ln -s /usr/bin/resolvectl /usr/bin/systemd-resolve

2023-06-12 23:45:50,225 - WARNING - iptables: failed to apply: Command '['iptables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.

This one above is a little more cryptic for me, I assume it's related to what follows. For this I'd really appreciate any feedback. It only hits the log when I enable bypass, and it comes with numerous dbus errors in my desktop notifications:

['firewall', 'autoconnect', 'minimize', 'ipv6_disable', 'alt_dns', 'bypass', 'ping', 'auto_update', 'no_dnsmasq', 'dns_off']
org.freedesktop.DBus.Python.PermissionError: Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/dbus/service.py", line 715, in _message_cb
    retval = candidate_method(self, *args, **keywords)
  File "/usr/lib/python3/dist-packages/qomui/qomui_service.py", line 447, in bypass
    bypass.create_cgroup(
  File "/usr/lib/python3/dist-packages/qomui/bypass.py", line 41, in create_cgroup
    with open("{}/net_cls.classid".format(cgroup_path), 'w') as setcid:
PermissionError: [Errno 13] Permission denied: '/sys/fs/cgroup/net_cls/bypass_qomui/net_cls.classid'

The issue persists after installing cgroup-tools and even trying to run qomui as sudo. I get error cgroup change of group failed if I try to execute cgexec -g net_cls:bypass_qomui

I really appreciate this project and would be grateful for any assistance you can provide. Hopefully I'm overlooking something super obvious

ryanthomas-org commented 1 year ago

Tried to touch a file in /sys/fs/cgroup/net_cls manually and getting denied permission even as root, I am wondering if the issue is related to this https://github.com/mullvad/mullvadvpn-app/issues/3651

ryanthomas-org commented 1 year ago

I got the dbus and python errors to go away by adding 'GRUB_CMDLINE_LINUX=systemd.unified_cgroup_hierarchy=false' to /etc/default/grub and running update-grub and reboot, however the ip6tables-legacy WARNINGS persist and I still cannot actually use the VPN.

Now qomui reports as having connected to air vpn successfully but I don't believe it is.

I can ping IP addresses but DNS is broken. Hopeful to figure this out as eddie-ui is extremely buggy software and qomui is still the best VPN client I've ever had.

I'm not sure yet how to interpret these iptables errors. I tried enabling /usr/sbin/iptables-legacy in place of /usr/sbin/iptables-nft in update-alternatives --config iptables and rebooted, but errors persist. Running qomui-gui as root returned similar errors and a segfault.

ryanthomas-org commented 1 year ago

Very happy to report that I resolved my connection issues with sudo ufw disable -- so the only actual "issue" here is the switch to v2 cgroups in newer debian based distros.

I'll see if I can rename the issue but will obviously leave the breadcrumbs for anyone dealing with either of the same issues as I have. For what it's worth the iptables commands still return returned non-zero exit status 1 in the logs but applications are running through the VPN and bypassed applications are bypassing as expected. I think we're good.

Back to the issue at hand:

If I understood this at all correctly, the real solution may simply be to specify or allow setting an alternate location for /sys/fs/cgroup/net_cls/bypass_qomui/net_cls.classid to avoid conflicts with V2 cgroups in that location. Otherwise, the configuration change for GRUB_CMDLINE_LINUX works perfectly as a temporary workaround (except for anyone using software that depends on V2 cgroups, I suppose)

EDIT: And the other smaller issue is one should not have to symlink /usr/bin/resolvectl to the older /usr/bin/systemd-resolve

Thanks!

ryanthomas-org commented 1 year ago

Apologies for spamming anyone's notifications, but it appears I have not narrowed down all issues on my own after all. Even after disabling dfw, sym linking to the deprecated systemd-resolve, and rolling back to cgroups v1, I'm still unable to get remotely consistent results from the firewall or bypass feature. Posting as much of my recent logs as comment length will allow. Thanks

2023-06-23 15:11:31,467 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:11:31,469 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:11:31,470 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:11:31,471 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:11:31,473 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:11:31,475 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:11:31,476 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:11:31,478 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:11:31,480 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:11:31,482 - INFO - Deleted cgroup
2023-06-23 15:11:31,499 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:11:31,501 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:12:33,725 - INFO - Configuration changes applied successfully
2023-06-23 15:12:33,727 - INFO - (Re-)enabled ipv6
2023-06-23 15:12:33,748 - INFO - iptables: flushed existing rules
2023-06-23 15:12:33,760 - INFO - iptables: deactivated firewall
2023-06-23 15:12:33,767 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:12:33,771 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:12:33,774 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:12:33,778 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:12:33,782 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:12:33,787 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:12:33,790 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:12:33,796 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:12:33,799 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:12:33,804 - INFO - Deleted cgroup
2023-06-23 15:13:49,052 - INFO - Configuration changes applied successfully
2023-06-23 15:13:49,055 - INFO - (Re-)enabled ipv6
2023-06-23 15:13:49,067 - INFO - iptables: flushed existing rules
2023-06-23 15:13:49,179 - INFO - iptables: activated firewall
2023-06-23 15:13:49,187 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:13:49,190 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:13:49,194 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:13:49,197 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:13:49,202 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:13:49,206 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:13:49,210 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:13:49,214 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:13:49,218 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:13:49,221 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:13:49,226 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:13:49,230 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:13:49,231 - INFO - Deleted cgroup
2023-06-23 15:13:51,437 - INFO - Configuration changes applied successfully
2023-06-23 15:13:51,439 - INFO - (Re-)enabled ipv6
2023-06-23 15:13:51,460 - INFO - iptables: flushed existing rules
2023-06-23 15:13:51,535 - INFO - iptables: activated firewall
2023-06-23 15:13:51,535 - INFO - Creating bypass for wlp2s0
2023-06-23 15:13:51,537 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:13:51,539 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:13:51,540 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:13:51,542 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:13:51,543 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:13:51,545 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:13:51,546 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:13:51,548 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:13:51,549 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:13:51,550 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:13:51,552 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:13:51,553 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:13:51,553 - INFO - Deleted cgroup
2023-06-23 15:13:51,573 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:13:51,576 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:14:04,770 - INFO - OpenVPN:2023-06-23 15:14:04 event_wait : Interrupted system call (code=4)
2023-06-23 15:14:04,770 - INFO - OpenVPN:2023-06-23 15:14:04 net_route_v4_del: 0.0.0.0/1 via 10.29.226.1 dev [NULL] table 0 metric -1
2023-06-23 15:14:04,771 - INFO - OpenVPN:2023-06-23 15:14:04 net_route_v4_del: 128.0.0.0/1 via 10.29.226.1 dev [NULL] table 0 metric -1
2023-06-23 15:14:04,771 - INFO - OpenVPN:2023-06-23 15:14:04 delete_route_ipv6(2606:6080:2001:6:d799:80af:36f1:1847/128)
2023-06-23 15:14:04,771 - INFO - OpenVPN:2023-06-23 15:14:04 net_route_v6_del: 2606:6080:2001:6:d799:80af:36f1:1847/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:14:04,771 - INFO - OpenVPN:2023-06-23 15:14:04 delete_route_ipv6(::/3)
2023-06-23 15:14:04,771 - INFO - OpenVPN:2023-06-23 15:14:04 net_route_v6_del: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:14:04,771 - INFO - OpenVPN:2023-06-23 15:14:04 delete_route_ipv6(2000::/4)
2023-06-23 15:14:04,771 - INFO - OpenVPN:2023-06-23 15:14:04 net_route_v6_del: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:14:04,771 - INFO - OpenVPN:2023-06-23 15:14:04 delete_route_ipv6(3000::/4)
2023-06-23 15:14:04,772 - INFO - OpenVPN:2023-06-23 15:14:04 net_route_v6_del: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:14:04,772 - INFO - OpenVPN:2023-06-23 15:14:04 delete_route_ipv6(fc00::/7)
2023-06-23 15:14:04,772 - INFO - OpenVPN:2023-06-23 15:14:04 net_route_v6_del: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:14:04,772 - INFO - OpenVPN:2023-06-23 15:14:04 Closing TUN/TAP interface
2023-06-23 15:14:04,772 - INFO - OpenVPN:2023-06-23 15:14:04 net_addr_v4_del: 10.29.226.103 dev tun0
2023-06-23 15:14:04,772 - INFO - OpenVPN:2023-06-23 15:14:04 net_addr_v6_del: fde6:7a:7d20:19e2::1065/64 dev tun0
2023-06-23 15:14:04,773 - INFO - (Re-)enabled ipv6
2023-06-23 15:14:04,783 - INFO - iptables: flushed existing rules
2023-06-23 15:14:04,815 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-d', dbus.String('2606:6080:2001:6:d799:80af:36f1:1847'), '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:14:04,830 - INFO - iptables: activated firewall
2023-06-23 15:14:04,830 - INFO - OpenVPN:2023-06-23 15:14:04 SIGTERM[hard,] received, process exiting
2023-06-23 15:14:04,830 - INFO - OpenVPN - process killed
2023-06-23 15:14:18,359 - DEBUG - Successfully connected to qomui-service via DBus
2023-06-23 15:14:18,376 - DEBUG - Current configuration: {'alt_dns1': '9.9.9.9', 'alt_dns2': '149.112.112.112', 'firewall': 1, 'autoconnect': 1, 'minimize': 1, 'ipv6_disable': 0, 'alt_dns': 1, 'bypass': 1, 'ping': 1, 'auto_update': 1, 'no_dnsmasq': 0, 'dns_off': 0, 'block_lan': 0, 'preserve_rules': 0, 'fw_gui_only': 0, 'log_level': 'Info'}
2023-06-23 15:14:18,377 - INFO - Qomui version 0.8.4
2023-06-23 15:14:18,379 - WARNING - [Errno 2] No such file or directory: '/home/anon/.qomui/bypass_apps.json': Could not open /home/anon/.qomui/bypass_apps.json
2023-06-23 15:14:18,379 - WARNING - [Errno 2] No such file or directory: '/home/anon/.qomui/profile.json': Could not open /home/anon/.qomui/profile.json
2023-06-23 15:14:18,379 - INFO - Total number of server: 248
2023-06-23 15:14:18,661 - INFO - Detected new network connection
2023-06-23 15:14:18,672 - INFO - Connecting to Sharatan....
2023-06-23 15:14:18,681 - INFO - Creating bypass for wlp2s0
2023-06-23 15:14:18,684 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:14:18,685 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:14:18,687 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:14:18,689 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:14:18,690 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:14:18,693 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:14:18,695 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:14:18,697 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:14:18,699 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:14:18,702 - INFO - Deleted cgroup
2023-06-23 15:14:18,724 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:14:18,728 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:14:18,728 - INFO - iptables: created rule for 2606:6080:2001:6:d799:80af:36f1:1847
2023-06-23 15:14:18,728 - INFO - Establishing new OpenVPN tunnel
2023-06-23 15:14:18,729 - INFO - Establishing connection to Sharatan
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 DEPRECATED OPTION: --cipher set to 'AES-256-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-256-CBC' to --data-ciphers or change --cipher 'AES-256-CBC' to --data-ciphers-fallback 'AES-256-CBC' to silence this warning.
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 OpenVPN 2.5.5 x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Jul 14 2022
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 library versions: OpenSSL 3.0.2 15 Mar 2022, LZO 2.10
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 Outgoing Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 Outgoing Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 Incoming Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 Incoming Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 TCP/UDP: Preserving recently used remote address: [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 Socket Buffers: R=[212992->212992] S=[212992->212992]
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 UDPv6 link local: (not bound)
2023-06-23 15:14:18,729 - INFO - OpenVPN:2023-06-23 15:14:18 UDPv6 link remote: [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80
2023-06-23 15:14:18,736 - INFO - OpenVPN:2023-06-23 15:14:18 TLS: Initial packet from [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80, sid=f836f601 8d7bcb5b
2023-06-23 15:14:18,736 - INFO - OpenVPN:2023-06-23 15:14:18 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:14:18,736 - INFO - OpenVPN:2023-06-23 15:14:18 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:14:18,806 - INFO - OpenVPN:2023-06-23 15:14:18 VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org
2023-06-23 15:14:18,807 - INFO - OpenVPN:2023-06-23 15:14:18 VERIFY KU OK
2023-06-23 15:14:18,807 - INFO - OpenVPN:2023-06-23 15:14:18 Validating certificate extended key usage
2023-06-23 15:14:18,807 - INFO - OpenVPN:2023-06-23 15:14:18 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
2023-06-23 15:14:18,808 - INFO - OpenVPN:2023-06-23 15:14:18 VERIFY EKU OK
2023-06-23 15:14:18,808 - INFO - OpenVPN:2023-06-23 15:14:18 VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=Sharatan, emailAddress=info@airvpn.org
2023-06-23 15:14:18,857 - INFO - OpenVPN:2023-06-23 15:14:18 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_CHACHA20_POLY1305_SHA256, peer certificate: 4096 bit RSA, signature: RSA-SHA512
2023-06-23 15:14:18,858 - INFO - OpenVPN:2023-06-23 15:14:18 [Sharatan] Peer Connection Initiated with [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80
2023-06-23 15:14:19,620 - INFO - OpenVPN:2023-06-23 15:14:19 SENT CONTROL [Sharatan]: 'PUSH_REQUEST' (status=1)
2023-06-23 15:14:19,621 - INFO - OpenVPN:2023-06-23 15:14:19 PUSH: Received control message: 'PUSH_REPLY,comp-lzo no,redirect-gateway ipv6 def1 bypass-dhcp,dhcp-option DNS 10.29.226.1,dhcp-option DNS6 fde6:7a:7d20:19e2::1,tun-ipv6,route-gateway 10.29.226.1,topology subnet,ping 10,ping-restart 60,ifconfig-ipv6 fde6:7a:7d20:19e2::1065/64 fde6:7a:7d20:19e2::1,ifconfig 10.29.226.103 255.255.255.0,peer-id 5,cipher AES-256-GCM'
2023-06-23 15:14:19,621 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: timers and/or timeouts modified
2023-06-23 15:14:19,622 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: compression parms modified
2023-06-23 15:14:19,622 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: --ifconfig/up options modified
2023-06-23 15:14:19,622 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: route options modified
2023-06-23 15:14:19,622 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: route-related options modified
2023-06-23 15:14:19,622 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: peer-id set
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: adjusting link_mtu to 1625
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 OPTIONS IMPORT: data channel crypto options modified
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 Data Channel: using negotiated cipher 'AES-256-GCM'
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 Outgoing Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 Incoming Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 ROUTE_GATEWAY 192.168.0.1/255.255.255.0 IFACE=wlp2s0 HWADDR=60:e9:aa:b8:e4:25
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 GDG6: remote_host_ipv6=2606:6080:2001:6:d799:80af:36f1:1847
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v6_best_gw query: dst 2606:6080:2001:6:d799:80af:36f1:1847
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v6_best_gw result: via fe80::2a56:5aff:fec8:fd8e dev wlp2s0
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 ROUTE6_GATEWAY fe80::2a56:5aff:fec8:fd8e IFACE=wlp2s0
2023-06-23 15:14:19,623 - INFO - OpenVPN:2023-06-23 15:14:19 ROUTE6: 2000::/4 overlaps IPv6 remote 2606:6080:2001:6:d799:80af:36f1:1847, adding host route to VPN endpoint
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 TUN/TAP device tun0 opened
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_iface_up: set tun0 up
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_addr_v4_add: 10.29.226.103/24 dev tun0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_iface_up: set tun0 up
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_addr_v6_add: fde6:7a:7d20:19e2::1065/64 dev tun0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 ROUTE remote_host protocol differs from tunneled
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v4_add: 0.0.0.0/1 via 10.29.226.1 dev [NULL] table 0 metric -1
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v4_add: 128.0.0.0/1 via 10.29.226.1 dev [NULL] table 0 metric -1
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 add_route_ipv6(2606:6080:2001:6:d799:80af:36f1:1847/128 -> fe80::2a56:5aff:fec8:fd8e metric 1) dev wlp2s0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v6_add: 2606:6080:2001:6:d799:80af:36f1:1847/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 add_route_ipv6(::/3 -> fde6:7a:7d20:19e2::1 metric -1) dev tun0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v6_add: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 add_route_ipv6(2000::/4 -> fde6:7a:7d20:19e2::1 metric -1) dev tun0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v6_add: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 add_route_ipv6(3000::/4 -> fde6:7a:7d20:19e2::1 metric -1) dev tun0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v6_add: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 add_route_ipv6(fc00::/7 -> fde6:7a:7d20:19e2::1 metric -1) dev tun0
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 net_route_v6_add: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:14:19,624 - INFO - OpenVPN:2023-06-23 15:14:19 Initialization Sequence Completed
2023-06-23 15:14:19,624 - INFO - Successfully connected to Sharatan
2023-06-23 15:14:19,626 - INFO - DNS: Set 9.9.9.9 and 149.112.112.112 as dns servers via systemd-resolve
2023-06-23 15:15:36,911 - INFO - Configuration changes applied successfully
2023-06-23 15:15:36,913 - INFO - (Re-)enabled ipv6
2023-06-23 15:15:36,921 - INFO - iptables: flushed existing rules
2023-06-23 15:15:37,022 - INFO - iptables: activated firewall
2023-06-23 15:15:37,023 - INFO - Creating bypass for wlp2s0
2023-06-23 15:15:37,028 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:15:37,029 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:15:37,031 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:15:37,032 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:15:37,034 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:15:37,035 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:15:37,037 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:15:37,039 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:15:37,040 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:15:37,042 - INFO - Deleted cgroup
2023-06-23 15:15:37,059 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:15:37,062 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:15:52,210 - INFO - Configuration changes applied successfully
2023-06-23 15:15:52,212 - INFO - (Re-)enabled ipv6
2023-06-23 15:15:52,235 - INFO - iptables: flushed existing rules
2023-06-23 15:15:52,247 - INFO - iptables: deactivated firewall
2023-06-23 15:15:52,248 - INFO - Creating bypass for wlp2s0
2023-06-23 15:15:52,253 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:15:52,256 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:15:52,261 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:15:52,263 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:15:52,267 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:15:52,272 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:15:52,275 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:15:52,281 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:15:52,285 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:15:52,289 - INFO - Deleted cgroup
2023-06-23 15:15:52,335 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:15:52,343 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:15:56,497 - ERROR - Import Error: QtWebEngine is not available
2023-06-23 15:16:01,376 - INFO - Configuration changes applied successfully
2023-06-23 15:16:01,378 - INFO - (Re-)enabled ipv6
2023-06-23 15:16:01,401 - INFO - iptables: flushed existing rules
2023-06-23 15:16:01,523 - INFO - iptables: activated firewall
2023-06-23 15:16:01,524 - INFO - Creating bypass for wlp2s0
2023-06-23 15:16:01,529 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:16:01,533 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:16:01,537 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:16:01,540 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:16:01,545 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:16:01,550 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:16:01,553 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:16:01,559 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:16:01,563 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:16:01,568 - INFO - Deleted cgroup
2023-06-23 15:16:01,614 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:16:01,620 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:16:30,529 - INFO - Configuration changes applied successfully
2023-06-23 15:16:30,530 - INFO - (Re-)enabled ipv6
2023-06-23 15:16:30,549 - INFO - iptables: flushed existing rules
2023-06-23 15:16:30,561 - INFO - iptables: deactivated firewall
2023-06-23 15:16:30,562 - INFO - Creating bypass for wlp2s0
2023-06-23 15:16:30,567 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:16:30,571 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:16:30,574 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:16:30,578 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:16:30,582 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:16:30,587 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:16:30,591 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:16:30,595 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:16:30,599 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:16:30,604 - INFO - Deleted cgroup
2023-06-23 15:16:30,650 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:16:30,657 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:17:55,725 - INFO - Configuration changes applied successfully
2023-06-23 15:17:55,726 - INFO - (Re-)enabled ipv6
2023-06-23 15:17:55,746 - INFO - iptables: flushed existing rules
2023-06-23 15:17:55,757 - INFO - iptables: deactivated firewall
2023-06-23 15:17:55,761 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:17:55,764 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:17:55,766 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:17:55,770 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:17:55,774 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:17:55,778 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:17:55,780 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:17:55,785 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:17:55,789 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:17:55,796 - INFO - Deleted cgroup
2023-06-23 15:18:00,058 - INFO - Configuration changes applied successfully
2023-06-23 15:18:00,059 - INFO - (Re-)enabled ipv6
2023-06-23 15:18:00,077 - INFO - iptables: flushed existing rules
2023-06-23 15:18:00,088 - INFO - iptables: deactivated firewall
2023-06-23 15:18:00,089 - INFO - Creating bypass for wlp2s0
2023-06-23 15:18:00,092 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:18:00,095 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:18:00,097 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:18:00,100 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:18:00,103 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:18:00,107 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:18:00,109 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:18:00,112 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:18:00,115 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:18:00,118 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:18:00,123 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:18:00,127 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:18:00,127 - INFO - Deleted cgroup
2023-06-23 15:18:00,177 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:18:00,184 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:18:13,613 - INFO - Configuration changes applied successfully
2023-06-23 15:18:13,615 - INFO - (Re-)enabled ipv6
2023-06-23 15:18:13,637 - INFO - iptables: flushed existing rules
2023-06-23 15:18:13,763 - INFO - iptables: activated firewall
2023-06-23 15:18:13,764 - INFO - Creating bypass for wlp2s0
2023-06-23 15:18:13,768 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:18:13,771 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:18:13,774 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:18:13,777 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:18:13,780 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:18:13,784 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:18:13,787 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:18:13,792 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:18:13,794 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:18:13,798 - INFO - Deleted cgroup
2023-06-23 15:18:13,844 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:18:13,851 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:19:38,553 - WARNING - Detected enable firewall service: ufw
2023-06-23 15:20:04,646 - INFO - Configuration changes applied successfully
2023-06-23 15:20:04,648 - INFO - (Re-)enabled ipv6
2023-06-23 15:20:04,672 - INFO - iptables: flushed existing rules
2023-06-23 15:20:04,685 - INFO - iptables: deactivated firewall
2023-06-23 15:20:04,691 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:20:04,695 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:20:04,699 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:04,703 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:04,707 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:20:04,712 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:20:04,716 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:20:04,723 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:04,726 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:04,733 - INFO - Deleted cgroup
2023-06-23 15:20:07,873 - INFO - Configuration changes applied successfully
2023-06-23 15:20:07,875 - INFO - Disabled ipv6
2023-06-23 15:20:07,883 - INFO - ipv6 stack not available
2023-06-23 15:20:07,883 - INFO - iptables: flushed existing rules
2023-06-23 15:20:07,888 - INFO - ipv6 stack not available
2023-06-23 15:20:07,906 - INFO - ipv6 stack not available
2023-06-23 15:20:07,948 - INFO - ipv6 stack not available
2023-06-23 15:20:07,948 - INFO - iptables: activated firewall
2023-06-23 15:20:07,949 - INFO - Creating bypass for wlp2s0
2023-06-23 15:20:07,953 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:20:07,955 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:20:07,956 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:07,957 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:07,959 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:20:07,961 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:20:07,961 - INFO - ipv6 stack not available
2023-06-23 15:20:07,961 - INFO - Deleted cgroup
2023-06-23 15:20:07,969 - INFO - ipv6 stack not available
2023-06-23 15:20:07,970 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:20:07,972 - ERROR - Bypass: Failed to set ipv6 route 'default via 192.168.0.1 dev wlp2s0' failed
2023-06-23 15:20:07,973 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:20:08,878 - INFO - OpenVPN:2023-06-23 15:20:08 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:09,077 - INFO - OpenVPN:2023-06-23 15:20:09 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:09,078 - INFO - OpenVPN:2023-06-23 15:20:09 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:09,206 - INFO - OpenVPN:2023-06-23 15:20:09 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:09,326 - INFO - OpenVPN:2023-06-23 15:20:09 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:09,398 - INFO - OpenVPN:2023-06-23 15:20:09 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:09,558 - INFO - OpenVPN:2023-06-23 15:20:09 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:09,578 - INFO - OpenVPN:2023-06-23 15:20:09 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:09,718 - INFO - OpenVPN:2023-06-23 15:20:09 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:10,106 - INFO - OpenVPN:2023-06-23 15:20:10 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:10,230 - INFO - OpenVPN:2023-06-23 15:20:10 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:10,325 - INFO - OpenVPN:2023-06-23 15:20:10 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:11,126 - INFO - OpenVPN:2023-06-23 15:20:11 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:11,541 - INFO - OpenVPN:2023-06-23 15:20:11 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:11,542 - INFO - OpenVPN:2023-06-23 15:20:11 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:13,142 - INFO - OpenVPN:2023-06-23 15:20:13 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:13,671 - INFO - OpenVPN:2023-06-23 15:20:13 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:14,134 - INFO - OpenVPN:2023-06-23 15:20:14 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:14,134 - INFO - OpenVPN:2023-06-23 15:20:14 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:17,205 - INFO - OpenVPN:2023-06-23 15:20:17 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:17,380 - INFO - OpenVPN:2023-06-23 15:20:17 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:18,998 - INFO - OpenVPN:2023-06-23 15:20:18 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:19,078 - INFO - OpenVPN:2023-06-23 15:20:19 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:19,078 - INFO - OpenVPN:2023-06-23 15:20:19 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:19,510 - INFO - OpenVPN:2023-06-23 15:20:19 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:25,398 - INFO - OpenVPN:2023-06-23 15:20:25 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:28,726 - INFO - OpenVPN:2023-06-23 15:20:28 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:30,006 - INFO - OpenVPN:2023-06-23 15:20:30 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:20:33,441 - INFO - Configuration changes applied successfully
2023-06-23 15:20:33,443 - INFO - (Re-)enabled ipv6
2023-06-23 15:20:33,463 - INFO - iptables: flushed existing rules
2023-06-23 15:20:33,579 - INFO - iptables: activated firewall
2023-06-23 15:20:33,580 - INFO - OpenVPN:2023-06-23 15:20:33 write UDPv6: Network is unreachable (code=101)
2023-06-23 15:20:33,580 - INFO - Creating bypass for wlp2s0
2023-06-23 15:20:33,587 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:20:33,591 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:20:33,594 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:33,598 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:33,602 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:20:33,607 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:20:33,610 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:20:33,614 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:20:33,618 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:33,622 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:20:33,626 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:20:33,631 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:20:33,632 - INFO - Deleted cgroup
2023-06-23 15:20:33,678 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:20:33,684 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:20:37,686 - INFO - OpenVPN:2023-06-23 15:20:37 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:41,526 - INFO - OpenVPN:2023-06-23 15:20:41 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:46,646 - INFO - OpenVPN:2023-06-23 15:20:46 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:46,876 - INFO - OpenVPN:2023-06-23 15:20:46 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:47,894 - INFO - OpenVPN:2023-06-23 15:20:47 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:49,718 - INFO - OpenVPN:2023-06-23 15:20:49 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:50,671 - INFO - OpenVPN:2023-06-23 15:20:50 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:50,672 - INFO - OpenVPN:2023-06-23 15:20:50 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:50,672 - INFO - OpenVPN:2023-06-23 15:20:50 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:50,672 - INFO - OpenVPN:2023-06-23 15:20:50 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:50,672 - INFO - OpenVPN:2023-06-23 15:20:50 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:50,672 - INFO - OpenVPN:2023-06-23 15:20:50 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:50,673 - INFO - OpenVPN:2023-06-23 15:20:50 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:51,671 - INFO - OpenVPN:2023-06-23 15:20:51 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:51,672 - INFO - OpenVPN:2023-06-23 15:20:51 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:51,766 - INFO - OpenVPN:2023-06-23 15:20:51 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:52,671 - INFO - OpenVPN:2023-06-23 15:20:52 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:20:54,672 - INFO - OpenVPN:2023-06-23 15:20:54 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:21:01,064 - WARNING - Detected enable firewall service: ufw
2023-06-23 15:21:04,054 - INFO - OpenVPN:2023-06-23 15:21:04 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:21:07,604 - INFO - OpenVPN:2023-06-23 15:21:07 [Sharatan] Inactivity timeout (--ping-restart), restarting
2023-06-23 15:21:07,604 - INFO - OpenVPN:2023-06-23 15:21:07 SIGUSR1[soft,ping-restart] received, process restarting
2023-06-23 15:21:07,604 - INFO - OpenVPN:2023-06-23 15:21:07 Restart pause, 5 second(s)
2023-06-23 15:21:12,605 - INFO - OpenVPN:2023-06-23 15:21:12 Outgoing Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:21:12,605 - INFO - OpenVPN:2023-06-23 15:21:12 Outgoing Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:21:12,606 - INFO - OpenVPN:2023-06-23 15:21:12 Incoming Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:21:12,606 - INFO - OpenVPN:2023-06-23 15:21:12 Incoming Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:21:12,606 - INFO - OpenVPN:2023-06-23 15:21:12 TCP/UDP: Preserving recently used remote address: [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80
2023-06-23 15:21:12,606 - INFO - OpenVPN:2023-06-23 15:21:12 Socket Buffers: R=[212992->212992] S=[212992->212992]
2023-06-23 15:21:12,606 - INFO - OpenVPN:2023-06-23 15:21:12 UDPv6 link local: (not bound)
2023-06-23 15:21:12,607 - INFO - OpenVPN:2023-06-23 15:21:12 UDPv6 link remote: [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80
2023-06-23 15:21:12,607 - INFO - OpenVPN:2023-06-23 15:21:12 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:21:14,294 - INFO - OpenVPN:2023-06-23 15:21:14 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:21:19,108 - INFO - OpenVPN:2023-06-23 15:21:19 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:21:27,341 - INFO - OpenVPN:2023-06-23 15:21:27 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:21:44,138 - INFO - OpenVPN:2023-06-23 15:21:44 write UDPv6: Operation not permitted (code=1)
2023-06-23 15:22:00,739 - INFO - Configuration changes applied successfully
2023-06-23 15:22:00,741 - INFO - (Re-)enabled ipv6
2023-06-23 15:22:00,751 - INFO - iptables: flushed existing rules
2023-06-23 15:22:00,755 - INFO - iptables: deactivated firewall
2023-06-23 15:22:00,755 - INFO - Creating bypass for wlp2s0
2023-06-23 15:22:00,758 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:22:00,759 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:22:00,760 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:22:00,762 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:22:00,763 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:22:00,765 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:22:00,766 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:22:00,769 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:22:00,770 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:22:00,772 - INFO - Deleted cgroup
2023-06-23 15:22:00,790 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:22:00,792 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:22:12,918 - INFO - OpenVPN:2023-06-23 15:22:12 [UNDEF] Inactivity timeout (--ping-restart), restarting
2023-06-23 15:22:12,918 - INFO - OpenVPN:2023-06-23 15:22:12 SIGUSR1[soft,ping-restart] received, process restarting
2023-06-23 15:22:12,918 - INFO - OpenVPN:2023-06-23 15:22:12 Restart pause, 5 second(s)
2023-06-23 15:22:17,918 - INFO - OpenVPN:2023-06-23 15:22:17 Outgoing Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:22:17,919 - INFO - OpenVPN:2023-06-23 15:22:17 Outgoing Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:22:17,919 - INFO - OpenVPN:2023-06-23 15:22:17 Incoming Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:22:17,919 - INFO - OpenVPN:2023-06-23 15:22:17 Incoming Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:22:17,919 - INFO - OpenVPN:2023-06-23 15:22:17 TCP/UDP: Preserving recently used remote address: [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80
2023-06-23 15:22:17,920 - INFO - OpenVPN:2023-06-23 15:22:17 Socket Buffers: R=[212992->212992] S=[212992->212992]
2023-06-23 15:22:17,920 - INFO - OpenVPN:2023-06-23 15:22:17 UDPv6 link local: (not bound)
2023-06-23 15:22:17,920 - INFO - OpenVPN:2023-06-23 15:22:17 UDPv6 link remote: [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80
2023-06-23 15:22:17,966 - INFO - OpenVPN:2023-06-23 15:22:17 TLS: Initial packet from [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80, sid=106e6b2c 70c84b51
2023-06-23 15:22:17,966 - INFO - OpenVPN:2023-06-23 15:22:17 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:22:17,966 - INFO - OpenVPN:2023-06-23 15:22:17 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:22:18,027 - INFO - OpenVPN:2023-06-23 15:22:18 VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org
2023-06-23 15:22:18,028 - INFO - OpenVPN:2023-06-23 15:22:18 VERIFY KU OK
2023-06-23 15:22:18,028 - INFO - OpenVPN:2023-06-23 15:22:18 Validating certificate extended key usage
2023-06-23 15:22:18,028 - INFO - OpenVPN:2023-06-23 15:22:18 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
2023-06-23 15:22:18,028 - INFO - OpenVPN:2023-06-23 15:22:18 VERIFY EKU OK
2023-06-23 15:22:18,028 - INFO - OpenVPN:2023-06-23 15:22:18 VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=Sharatan, emailAddress=info@airvpn.org
2023-06-23 15:22:18,089 - INFO - OpenVPN:2023-06-23 15:22:18 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_CHACHA20_POLY1305_SHA256, peer certificate: 4096 bit RSA, signature: RSA-SHA512
2023-06-23 15:22:18,090 - INFO - OpenVPN:2023-06-23 15:22:18 [Sharatan] Peer Connection Initiated with [AF_INET6]2606:6080:2001:6:d799:80af:36f1:1847:80
2023-06-23 15:22:18,630 - INFO - OpenVPN:2023-06-23 15:22:18 PUSH: Received control message: 'PUSH_REPLY,comp-lzo no,redirect-gateway ipv6 def1 bypass-dhcp,dhcp-option DNS 10.29.234.1,dhcp-option DNS6 fde6:7a:7d20:19ea::1,tun-ipv6,route-gateway 10.29.234.1,topology subnet,ping 10,ping-restart 60,ifconfig-ipv6 fde6:7a:7d20:19ea::1096/64 fde6:7a:7d20:19ea::1,ifconfig 10.29.234.152 255.255.255.0,peer-id 2,cipher AES-256-GCM'
2023-06-23 15:22:18,630 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: timers and/or timeouts modified
2023-06-23 15:22:18,630 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: compression parms modified
2023-06-23 15:22:18,630 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: --ifconfig/up options modified
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: route options modified
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: route-related options modified
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: peer-id set
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: adjusting link_mtu to 1625
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 OPTIONS IMPORT: data channel crypto options modified
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 Data Channel: using negotiated cipher 'AES-256-GCM'
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 Outgoing Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 Incoming Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 Preserving previous TUN/TAP instance: tun0
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 NOTE: Pulled options changed on restart, will need to close and reopen TUN/TAP device.
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 net_route_v4_del: 0.0.0.0/1 via 10.29.226.1 dev [NULL] table 0 metric -1
2023-06-23 15:22:18,631 - INFO - OpenVPN:2023-06-23 15:22:18 net_route_v4_del: 128.0.0.0/1 via 10.29.226.1 dev [NULL] table 0 metric -1
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 delete_route_ipv6(2606:6080:2001:6:d799:80af:36f1:1847/128)
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 net_route_v6_del: 2606:6080:2001:6:d799:80af:36f1:1847/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 ERROR: Linux route v6 delete command failed
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 delete_route_ipv6(::/3)
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 net_route_v6_del: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 ERROR: Linux route v6 delete command failed
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 delete_route_ipv6(2000::/4)
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 net_route_v6_del: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 ERROR: Linux route v6 delete command failed
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 delete_route_ipv6(3000::/4)
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 net_route_v6_del: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:22:18,632 - INFO - OpenVPN:2023-06-23 15:22:18 ERROR: Linux route v6 delete command failed
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 delete_route_ipv6(fc00::/7)
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 net_route_v6_del: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 ERROR: Linux route v6 delete command failed
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 Closing TUN/TAP interface
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 net_addr_v4_del: 10.29.226.103 dev tun0
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 net_addr_v6_del: fde6:7a:7d20:19e2::1065/64 dev tun0
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 sitnl_send: rtnl: generic error (-99): Cannot assign requested address
2023-06-23 15:22:18,633 - INFO - OpenVPN:2023-06-23 15:22:18 Linux can't del IPv6 from iface tun0
2023-06-23 15:22:19,686 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:22:19,687 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:22:19,687 - INFO - OpenVPN:2023-06-23 15:22:19 ROUTE_GATEWAY 192.168.0.1/255.255.255.0 IFACE=wlp2s0 HWADDR=60:e9:aa:b8:e4:25
2023-06-23 15:22:19,688 - INFO - OpenVPN:2023-06-23 15:22:19 GDG6: remote_host_ipv6=2606:6080:2001:6:d799:80af:36f1:1847
2023-06-23 15:22:19,688 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v6_best_gw query: dst 2606:6080:2001:6:d799:80af:36f1:1847
2023-06-23 15:22:19,688 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v6_best_gw result: via fe80::2a56:5aff:fec8:fd8e dev wlp2s0
2023-06-23 15:22:19,688 - INFO - OpenVPN:2023-06-23 15:22:19 ROUTE6_GATEWAY fe80::2a56:5aff:fec8:fd8e IFACE=wlp2s0
2023-06-23 15:22:19,688 - INFO - OpenVPN:2023-06-23 15:22:19 ROUTE6: 2000::/4 overlaps IPv6 remote 2606:6080:2001:6:d799:80af:36f1:1847, adding host route to VPN endpoint
2023-06-23 15:22:19,688 - INFO - OpenVPN:2023-06-23 15:22:19 TUN/TAP device tun0 opened
2023-06-23 15:22:19,688 - INFO - OpenVPN:2023-06-23 15:22:19 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_iface_up: set tun0 up
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_addr_v4_add: 10.29.234.152/24 dev tun0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_iface_up: set tun0 up
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_addr_v6_add: fde6:7a:7d20:19ea::1096/64 dev tun0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 ROUTE remote_host protocol differs from tunneled
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v4_add: 0.0.0.0/1 via 10.29.234.1 dev [NULL] table 0 metric -1
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v4_add: 128.0.0.0/1 via 10.29.234.1 dev [NULL] table 0 metric -1
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 add_route_ipv6(2606:6080:2001:6:d799:80af:36f1:1847/128 -> fe80::2a56:5aff:fec8:fd8e metric 1) dev wlp2s0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v6_add: 2606:6080:2001:6:d799:80af:36f1:1847/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 add_route_ipv6(::/3 -> fde6:7a:7d20:19ea::1 metric -1) dev tun0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v6_add: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 add_route_ipv6(2000::/4 -> fde6:7a:7d20:19ea::1 metric -1) dev tun0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v6_add: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 add_route_ipv6(3000::/4 -> fde6:7a:7d20:19ea::1 metric -1) dev tun0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v6_add: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 add_route_ipv6(fc00::/7 -> fde6:7a:7d20:19ea::1 metric -1) dev tun0
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 net_route_v6_add: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:22:19,689 - INFO - OpenVPN:2023-06-23 15:22:19 Initialization Sequence Completed
2023-06-23 15:22:19,690 - INFO - Successfully connected to Sharatan
2023-06-23 15:22:19,691 - INFO - DNS: Set 9.9.9.9 and 149.112.112.112 as dns servers via systemd-resolve
2023-06-23 15:22:21,506 - ERROR - Import Error: QtWebEngine is not available
2023-06-23 15:22:42,723 - INFO - Configuration changes applied successfully
2023-06-23 15:22:42,723 - INFO - (Re-)enabled ipv6
2023-06-23 15:22:42,731 - INFO - iptables: flushed existing rules
2023-06-23 15:22:42,793 - INFO - iptables: activated firewall
2023-06-23 15:22:42,794 - INFO - Creating bypass for wlp2s0
2023-06-23 15:22:42,798 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:22:42,802 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:22:42,806 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:22:42,810 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:22:42,814 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:22:42,818 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:22:42,821 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:22:42,827 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:22:42,831 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:22:42,836 - INFO - Deleted cgroup
2023-06-23 15:22:42,872 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:22:42,875 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:24:19,185 - INFO - Configuration changes applied successfully
2023-06-23 15:24:19,187 - INFO - Disabled ipv6
2023-06-23 15:24:19,201 - INFO - ipv6 stack not available
2023-06-23 15:24:19,201 - INFO - iptables: flushed existing rules
2023-06-23 15:24:19,207 - INFO - ipv6 stack not available
2023-06-23 15:24:19,219 - INFO - ipv6 stack not available
2023-06-23 15:24:19,238 - INFO - ipv6 stack not available
2023-06-23 15:24:19,238 - INFO - iptables: activated firewall
2023-06-23 15:24:19,239 - INFO - Creating bypass for wlp2s0
2023-06-23 15:24:19,241 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:24:19,244 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:24:19,248 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:24:19,251 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:24:19,255 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:24:19,260 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:24:19,260 - INFO - ipv6 stack not available
2023-06-23 15:24:19,260 - INFO - Deleted cgroup
2023-06-23 15:24:19,283 - INFO - ipv6 stack not available
2023-06-23 15:24:19,286 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:24:19,290 - ERROR - Bypass: Failed to set ipv6 route 'default via 192.168.0.1 dev wlp2s0' failed
2023-06-23 15:24:19,292 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:24:27,394 - INFO - OpenVPN:2023-06-23 15:24:27 write UDPv6: Cannot assign requested address (code=99)
2023-06-23 15:24:29,127 - INFO - OpenVPN:2023-06-23 15:24:29 event_wait : Interrupted system call (code=4)
2023-06-23 15:24:29,127 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_del: 0.0.0.0/1 via 10.29.234.1 dev [NULL] table 0 metric -1
2023-06-23 15:24:29,127 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_del: 128.0.0.0/1 via 10.29.234.1 dev [NULL] table 0 metric -1
2023-06-23 15:24:29,127 - INFO - OpenVPN:2023-06-23 15:24:29 delete_route_ipv6(2606:6080:2001:6:d799:80af:36f1:1847/128)
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v6_del: 2606:6080:2001:6:d799:80af:36f1:1847/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 ERROR: Linux route v6 delete command failed
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 delete_route_ipv6(::/3)
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v6_del: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 ERROR: Linux route v6 delete command failed
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 delete_route_ipv6(2000::/4)
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v6_del: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 ERROR: Linux route v6 delete command failed
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 delete_route_ipv6(3000::/4)
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v6_del: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 ERROR: Linux route v6 delete command failed
2023-06-23 15:24:29,128 - INFO - OpenVPN:2023-06-23 15:24:29 delete_route_ipv6(fc00::/7)
2023-06-23 15:24:29,129 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v6_del: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:24:29,129 - INFO - OpenVPN:2023-06-23 15:24:29 sitnl_send: rtnl: generic error (-3): No such process
2023-06-23 15:24:29,129 - INFO - OpenVPN:2023-06-23 15:24:29 ERROR: Linux route v6 delete command failed
2023-06-23 15:24:29,129 - INFO - OpenVPN:2023-06-23 15:24:29 Closing TUN/TAP interface
2023-06-23 15:24:29,129 - INFO - OpenVPN:2023-06-23 15:24:29 net_addr_v4_del: 10.29.234.152 dev tun0
2023-06-23 15:24:29,129 - INFO - OpenVPN:2023-06-23 15:24:29 net_addr_v6_del: fde6:7a:7d20:19ea::1096/64 dev tun0
2023-06-23 15:24:29,129 - INFO - OpenVPN:2023-06-23 15:24:29 sitnl_send: rtnl: generic error (-99): Cannot assign requested address
2023-06-23 15:24:29,129 - INFO - OpenVPN:2023-06-23 15:24:29 Linux can't del IPv6 from iface tun0
2023-06-23 15:24:29,127 - INFO - Connecting to Metallah....
2023-06-23 15:24:29,133 - INFO - iptables: created rule for 156.96.151.133
2023-06-23 15:24:29,134 - INFO - Establishing new OpenVPN tunnel
2023-06-23 15:24:29,134 - INFO - Establishing connection to Metallah
2023-06-23 15:24:29,136 - INFO - OpenVPN:2023-06-23 15:24:29 DEPRECATED OPTION: --cipher set to 'AES-256-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-256-CBC' to --data-ciphers or change --cipher 'AES-256-CBC' to --data-ciphers-fallback 'AES-256-CBC' to silence this warning.
2023-06-23 15:24:29,137 - INFO - OpenVPN:2023-06-23 15:24:29 OpenVPN 2.5.5 x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Jul 14 2022
2023-06-23 15:24:29,137 - INFO - OpenVPN:2023-06-23 15:24:29 library versions: OpenSSL 3.0.2 15 Mar 2022, LZO 2.10
2023-06-23 15:24:29,139 - INFO - OpenVPN:2023-06-23 15:24:29 Outgoing Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication
2023-06-23 15:24:29,139 - INFO - OpenVPN:2023-06-23 15:24:29 Incoming Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication
2023-06-23 15:24:29,139 - INFO - OpenVPN:2023-06-23 15:24:29 TCP/UDP: Preserving recently used remote address: [AF_INET]156.96.151.133:2018
2023-06-23 15:24:29,139 - INFO - OpenVPN:2023-06-23 15:24:29 Socket Buffers: R=[131072->131072] S=[16384->16384]
2023-06-23 15:24:29,139 - INFO - OpenVPN:2023-06-23 15:24:29 Attempting to establish TCP connection with [AF_INET]156.96.151.133:2018 [nonblock]
2023-06-23 15:24:29,171 - INFO - OpenVPN:2023-06-23 15:24:29 TCP connection established with [AF_INET]156.96.151.133:2018
2023-06-23 15:24:29,171 - INFO - OpenVPN:2023-06-23 15:24:29 TCP_CLIENT link local: (not bound)
2023-06-23 15:24:29,171 - INFO - OpenVPN:2023-06-23 15:24:29 TCP_CLIENT link remote: [AF_INET]156.96.151.133:2018
2023-06-23 15:24:29,181 - INFO - OpenVPN:2023-06-23 15:24:29 SIGTERM[hard,] received, process exiting
2023-06-23 15:24:29,182 - INFO - ipv6 stack not available
2023-06-23 15:24:29,183 - INFO - OpenVPN - process killed
2023-06-23 15:24:29,183 - INFO - Openvpn connection closed
2023-06-23 15:24:29,203 - INFO - OpenVPN:2023-06-23 15:24:29 TLS: Initial packet from [AF_INET]156.96.151.133:2018, sid=c092ae92 c10293f2
2023-06-23 15:24:29,204 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:24:29,204 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:24:29,299 - INFO - OpenVPN:2023-06-23 15:24:29 VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org
2023-06-23 15:24:29,299 - INFO - OpenVPN:2023-06-23 15:24:29 VERIFY KU OK
2023-06-23 15:24:29,300 - INFO - OpenVPN:2023-06-23 15:24:29 Validating certificate extended key usage
2023-06-23 15:24:29,300 - INFO - OpenVPN:2023-06-23 15:24:29 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
2023-06-23 15:24:29,300 - INFO - OpenVPN:2023-06-23 15:24:29 VERIFY EKU OK
2023-06-23 15:24:29,300 - INFO - OpenVPN:2023-06-23 15:24:29 VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=Metallah, emailAddress=info@airvpn.org
2023-06-23 15:24:29,443 - INFO - OpenVPN:2023-06-23 15:24:29 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_CHACHA20_POLY1305_SHA256, peer certificate: 4096 bit RSA, signature: RSA-SHA512
2023-06-23 15:24:29,443 - INFO - OpenVPN:2023-06-23 15:24:29 [Metallah] Peer Connection Initiated with [AF_INET]156.96.151.133:2018
2023-06-23 15:24:29,919 - INFO - OpenVPN:2023-06-23 15:24:29 PUSH: Received control message: 'PUSH_REPLY,comp-lzo no,redirect-gateway def1 bypass-dhcp,dhcp-option DNS 10.22.149.1,route-gateway 10.22.149.1,topology subnet,ping 10,ping-restart 60,ifconfig 10.22.149.128 255.255.255.0,peer-id 0,cipher AES-256-GCM'
2023-06-23 15:24:29,920 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: timers and/or timeouts modified
2023-06-23 15:24:29,920 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: compression parms modified
2023-06-23 15:24:29,921 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: --ifconfig/up options modified
2023-06-23 15:24:29,921 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: route options modified
2023-06-23 15:24:29,921 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: route-related options modified
2023-06-23 15:24:29,921 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
2023-06-23 15:24:29,921 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: peer-id set
2023-06-23 15:24:29,921 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: adjusting link_mtu to 1627
2023-06-23 15:24:29,922 - INFO - OpenVPN:2023-06-23 15:24:29 OPTIONS IMPORT: data channel crypto options modified
2023-06-23 15:24:29,922 - INFO - OpenVPN:2023-06-23 15:24:29 Data Channel: using negotiated cipher 'AES-256-GCM'
2023-06-23 15:24:29,922 - INFO - OpenVPN:2023-06-23 15:24:29 Outgoing Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:24:29,922 - INFO - OpenVPN:2023-06-23 15:24:29 Incoming Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:24:29,922 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:24:29,922 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:24:29,922 - INFO - OpenVPN:2023-06-23 15:24:29 ROUTE_GATEWAY 192.168.0.1/255.255.255.0 IFACE=wlp2s0 HWADDR=60:e9:aa:b8:e4:25
2023-06-23 15:24:29,923 - INFO - OpenVPN:2023-06-23 15:24:29 TUN/TAP device tun0 opened
2023-06-23 15:24:29,923 - INFO - OpenVPN:2023-06-23 15:24:29 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:24:29,923 - INFO - OpenVPN:2023-06-23 15:24:29 net_iface_up: set tun0 up
2023-06-23 15:24:29,923 - INFO - OpenVPN:2023-06-23 15:24:29 net_addr_v4_add: 10.22.149.128/24 dev tun0
2023-06-23 15:24:29,923 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_add: 156.96.151.133/32 via 192.168.0.1 dev [NULL] table 0 metric -1
2023-06-23 15:24:29,923 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_add: 0.0.0.0/1 via 10.22.149.1 dev [NULL] table 0 metric -1
2023-06-23 15:24:29,923 - INFO - OpenVPN:2023-06-23 15:24:29 net_route_v4_add: 128.0.0.0/1 via 10.22.149.1 dev [NULL] table 0 metric -1
2023-06-23 15:24:29,923 - INFO - OpenVPN:2023-06-23 15:24:29 Initialization Sequence Completed
2023-06-23 15:24:29,923 - INFO - Successfully connected to Metallah
2023-06-23 15:24:29,926 - INFO - DNS: Set 10.22.149.1 and None as dns servers via systemd-resolve
2023-06-23 15:24:54,994 - ERROR - Import Error: QtWebEngine is not available
2023-06-23 15:25:26,676 - INFO - Configuration changes applied successfully
2023-06-23 15:25:26,677 - INFO - (Re-)enabled ipv6
2023-06-23 15:25:26,699 - INFO - iptables: flushed existing rules
2023-06-23 15:25:26,711 - INFO - iptables: deactivated firewall
2023-06-23 15:25:26,717 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:25:26,721 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:25:26,724 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:25:26,728 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:25:26,732 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:25:26,737 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:25:26,740 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:25:26,746 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:25:26,749 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:25:26,755 - INFO - Deleted cgroup
2023-06-23 15:26:06,296 - INFO - Configuration changes applied successfully
2023-06-23 15:26:06,298 - INFO - (Re-)enabled ipv6
2023-06-23 15:26:06,320 - INFO - iptables: flushed existing rules
2023-06-23 15:26:06,442 - INFO - iptables: activated firewall
2023-06-23 15:26:06,443 - INFO - Creating bypass for wlp2s0
2023-06-23 15:26:06,449 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:26:06,453 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:26:06,456 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:26:06,460 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:26:06,464 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:26:06,469 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:26:06,472 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:26:06,476 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:26:06,479 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:26:06,483 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:26:06,487 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:26:06,491 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:26:06,492 - INFO - Deleted cgroup
2023-06-23 15:26:06,539 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:26:06,546 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:26:10,251 - INFO - OpenVPN:2023-06-23 15:26:10 event_wait : Interrupted system call (code=4)
2023-06-23 15:26:10,251 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_del: 156.96.151.133/32 via 192.168.0.1 dev [NULL] table 0 metric -1
2023-06-23 15:26:10,250 - INFO - Connecting to Lich....
2023-06-23 15:26:10,252 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_del: 0.0.0.0/1 via 10.22.149.1 dev [NULL] table 0 metric -1
2023-06-23 15:26:10,252 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_del: 128.0.0.0/1 via 10.22.149.1 dev [NULL] table 0 metric -1
2023-06-23 15:26:10,252 - INFO - OpenVPN:2023-06-23 15:26:10 Closing TUN/TAP interface
2023-06-23 15:26:10,252 - INFO - OpenVPN:2023-06-23 15:26:10 net_addr_v4_del: 10.22.149.128 dev tun0
2023-06-23 15:26:10,257 - INFO - iptables: created rule for 2a0d:5600:24:55:87df:6588:1997:54e0
2023-06-23 15:26:10,258 - INFO - Establishing new OpenVPN tunnel
2023-06-23 15:26:10,259 - INFO - Establishing connection to Lich
2023-06-23 15:26:10,261 - INFO - OpenVPN:2023-06-23 15:26:10 DEPRECATED OPTION: --cipher set to 'AES-256-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-256-CBC' to --data-ciphers or change --cipher 'AES-256-CBC' to --data-ciphers-fallback 'AES-256-CBC' to silence this warning.
2023-06-23 15:26:10,262 - INFO - OpenVPN:2023-06-23 15:26:10 OpenVPN 2.5.5 x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Jul 14 2022
2023-06-23 15:26:10,262 - INFO - OpenVPN:2023-06-23 15:26:10 library versions: OpenSSL 3.0.2 15 Mar 2022, LZO 2.10
2023-06-23 15:26:10,264 - INFO - OpenVPN:2023-06-23 15:26:10 Outgoing Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:26:10,264 - INFO - OpenVPN:2023-06-23 15:26:10 Outgoing Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:26:10,264 - INFO - OpenVPN:2023-06-23 15:26:10 Incoming Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:26:10,264 - INFO - OpenVPN:2023-06-23 15:26:10 Incoming Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:26:10,264 - INFO - OpenVPN:2023-06-23 15:26:10 TCP/UDP: Preserving recently used remote address: [AF_INET6]2a0d:5600:24:55:87df:6588:1997:54e0:80
2023-06-23 15:26:10,264 - INFO - OpenVPN:2023-06-23 15:26:10 Socket Buffers: R=[212992->212992] S=[212992->212992]
2023-06-23 15:26:10,264 - INFO - OpenVPN:2023-06-23 15:26:10 UDPv6 link local: (not bound)
2023-06-23 15:26:10,265 - INFO - OpenVPN:2023-06-23 15:26:10 UDPv6 link remote: [AF_INET6]2a0d:5600:24:55:87df:6588:1997:54e0:80
2023-06-23 15:26:10,311 - INFO - OpenVPN:2023-06-23 15:26:10 SIGTERM[hard,] received, process exiting
2023-06-23 15:26:10,311 - INFO - OpenVPN - process killed
2023-06-23 15:26:10,312 - INFO - Openvpn connection closed
2023-06-23 15:26:10,313 - WARNING - iptables: failed to apply: Command '['iptables', '--wait', '-D', 'OUTPUT', '-d', dbus.String('156.96.151.133'), '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:26:10,324 - INFO - OpenVPN:2023-06-23 15:26:10 TLS: Initial packet from [AF_INET6]2a0d:5600:24:55:87df:6588:1997:54e0:80, sid=22f28308 34ff6dae
2023-06-23 15:26:10,325 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:26:10,325 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:26:10,375 - INFO - OpenVPN:2023-06-23 15:26:10 VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org
2023-06-23 15:26:10,376 - INFO - OpenVPN:2023-06-23 15:26:10 VERIFY KU OK
2023-06-23 15:26:10,376 - INFO - OpenVPN:2023-06-23 15:26:10 Validating certificate extended key usage
2023-06-23 15:26:10,376 - INFO - OpenVPN:2023-06-23 15:26:10 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
2023-06-23 15:26:10,376 - INFO - OpenVPN:2023-06-23 15:26:10 VERIFY EKU OK
2023-06-23 15:26:10,376 - INFO - OpenVPN:2023-06-23 15:26:10 VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=Lich, emailAddress=info@airvpn.org
2023-06-23 15:26:10,434 - INFO - OpenVPN:2023-06-23 15:26:10 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_CHACHA20_POLY1305_SHA256, peer certificate: 4096 bit RSA, signature: RSA-SHA512
2023-06-23 15:26:10,434 - INFO - OpenVPN:2023-06-23 15:26:10 [Lich] Peer Connection Initiated with [AF_INET6]2a0d:5600:24:55:87df:6588:1997:54e0:80
2023-06-23 15:26:10,809 - INFO - OpenVPN:2023-06-23 15:26:10 PUSH: Received control message: 'PUSH_REPLY,comp-lzo no,redirect-gateway ipv6 def1 bypass-dhcp,dhcp-option DNS 10.17.2.1,dhcp-option DNS6 fde6:7a:7d20:d02::1,tun-ipv6,route-gateway 10.17.2.1,topology subnet,ping 10,ping-restart 60,ifconfig-ipv6 fde6:7a:7d20:d02::10c3/64 fde6:7a:7d20:d02::1,ifconfig 10.17.2.197 255.255.255.0,peer-id 0,cipher AES-256-GCM'
2023-06-23 15:26:10,809 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: timers and/or timeouts modified
2023-06-23 15:26:10,809 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: compression parms modified
2023-06-23 15:26:10,809 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: --ifconfig/up options modified
2023-06-23 15:26:10,809 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: route options modified
2023-06-23 15:26:10,810 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: route-related options modified
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: peer-id set
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: adjusting link_mtu to 1625
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 OPTIONS IMPORT: data channel crypto options modified
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 Data Channel: using negotiated cipher 'AES-256-GCM'
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 Outgoing Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 Incoming Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 ROUTE_GATEWAY 192.168.0.1/255.255.255.0 IFACE=wlp2s0 HWADDR=60:e9:aa:b8:e4:25
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 GDG6: remote_host_ipv6=2a0d:5600:24:55:87df:6588:1997:54e0
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v6_best_gw query: dst 2a0d:5600:24:55:87df:6588:1997:54e0
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v6_best_gw result: via fe80::2a56:5aff:fec8:fd8e dev wlp2s0
2023-06-23 15:26:10,811 - INFO - OpenVPN:2023-06-23 15:26:10 ROUTE6_GATEWAY fe80::2a56:5aff:fec8:fd8e IFACE=wlp2s0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 ROUTE6: 2000::/4 overlaps IPv6 remote 2a0d:5600:24:55:87df:6588:1997:54e0, adding host route to VPN endpoint
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 TUN/TAP device tun0 opened
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_iface_up: set tun0 up
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_addr_v4_add: 10.17.2.197/24 dev tun0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_iface_up: set tun0 up
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_addr_v6_add: fde6:7a:7d20:d02::10c3/64 dev tun0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 ROUTE remote_host protocol differs from tunneled
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_add: 0.0.0.0/1 via 10.17.2.1 dev [NULL] table 0 metric -1
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v4_add: 128.0.0.0/1 via 10.17.2.1 dev [NULL] table 0 metric -1
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 add_route_ipv6(2a0d:5600:24:55:87df:6588:1997:54e0/128 -> fe80::2a56:5aff:fec8:fd8e metric 1) dev wlp2s0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v6_add: 2a0d:5600:24:55:87df:6588:1997:54e0/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 add_route_ipv6(::/3 -> fde6:7a:7d20:d02::1 metric -1) dev tun0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v6_add: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 add_route_ipv6(2000::/4 -> fde6:7a:7d20:d02::1 metric -1) dev tun0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v6_add: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 add_route_ipv6(3000::/4 -> fde6:7a:7d20:d02::1 metric -1) dev tun0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v6_add: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 add_route_ipv6(fc00::/7 -> fde6:7a:7d20:d02::1 metric -1) dev tun0
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 net_route_v6_add: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:26:10,812 - INFO - OpenVPN:2023-06-23 15:26:10 Initialization Sequence Completed
2023-06-23 15:26:10,813 - INFO - Successfully connected to Lich
2023-06-23 15:26:10,814 - INFO - DNS: Set 10.17.2.1 and fde6:7a:7d20:d02::1 as dns servers via systemd-resolve
2023-06-23 15:26:27,659 - ERROR - Import Error: QtWebEngine is not available
2023-06-23 15:27:51,289 - INFO - OpenVPN:2023-06-23 15:27:51 event_wait : Interrupted system call (code=4)
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 net_route_v4_del: 0.0.0.0/1 via 10.17.2.1 dev [NULL] table 0 metric -1
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 net_route_v4_del: 128.0.0.0/1 via 10.17.2.1 dev [NULL] table 0 metric -1
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 delete_route_ipv6(2a0d:5600:24:55:87df:6588:1997:54e0/128)
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 net_route_v6_del: 2a0d:5600:24:55:87df:6588:1997:54e0/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 delete_route_ipv6(::/3)
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 net_route_v6_del: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 delete_route_ipv6(2000::/4)
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 net_route_v6_del: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 delete_route_ipv6(3000::/4)
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 net_route_v6_del: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:27:51,290 - INFO - OpenVPN:2023-06-23 15:27:51 delete_route_ipv6(fc00::/7)
2023-06-23 15:27:51,291 - INFO - OpenVPN:2023-06-23 15:27:51 net_route_v6_del: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:27:51,291 - INFO - OpenVPN:2023-06-23 15:27:51 Closing TUN/TAP interface
2023-06-23 15:27:51,291 - INFO - OpenVPN:2023-06-23 15:27:51 net_addr_v4_del: 10.17.2.197 dev tun0
2023-06-23 15:27:51,291 - INFO - OpenVPN:2023-06-23 15:27:51 net_addr_v6_del: fde6:7a:7d20:d02::10c3/64 dev tun0
2023-06-23 15:27:51,291 - INFO - (Re-)enabled ipv6
2023-06-23 15:27:51,302 - INFO - iptables: flushed existing rules
2023-06-23 15:27:51,352 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-d', dbus.String('2a0d:5600:24:55:87df:6588:1997:54e0'), '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:27:51,402 - INFO - iptables: activated firewall
2023-06-23 15:27:51,402 - INFO - OpenVPN:2023-06-23 15:27:51 SIGTERM[hard,] received, process exiting
2023-06-23 15:27:51,402 - INFO - OpenVPN - process killed
2023-06-23 15:30:07,673 - INFO - Dbus-service successfully initialized
2023-06-23 15:30:07,695 - DEBUG - Saved iptables rules
2023-06-23 15:30:07,696 - DEBUG - Saved ip6tables rules
2023-06-23 15:30:07,697 - INFO - (Re-)enabled ipv6
2023-06-23 15:30:07,736 - INFO - iptables: flushed existing rules
2023-06-23 15:30:07,788 - INFO - iptables: activated firewall
2023-06-23 15:30:07,675 - DEBUG - Successfully connected to qomui-service via DBus
2023-06-23 15:30:07,798 - DEBUG - Current configuration: {'alt_dns1': '9.9.9.9', 'alt_dns2': '149.112.112.112', 'firewall': 1, 'autoconnect': 1, 'minimize': 1, 'ipv6_disable': 0, 'alt_dns': 0, 'bypass': 1, 'ping': 1, 'auto_update': 1, 'no_dnsmasq': 0, 'dns_off': 0, 'block_lan': 0, 'preserve_rules': 0, 'fw_gui_only': 0, 'log_level': 'Info'}
2023-06-23 15:30:07,799 - INFO - Qomui version 0.8.4
2023-06-23 15:30:07,801 - WARNING - [Errno 2] No such file or directory: '/home/anon/.qomui/bypass_apps.json': Could not open /home/anon/.qomui/bypass_apps.json
2023-06-23 15:30:07,801 - WARNING - [Errno 2] No such file or directory: '/home/anon/.qomui/profile.json': Could not open /home/anon/.qomui/profile.json
2023-06-23 15:30:07,802 - INFO - Total number of server: 248
2023-06-23 15:30:08,112 - INFO - Detected new network connection
2023-06-23 15:30:08,122 - INFO - Connecting to Lich....
2023-06-23 15:30:08,128 - INFO - Creating bypass for wlp2s0
2023-06-23 15:30:08,136 - WARNING - iptables: failed to apply: Command '['iptables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:30:08,142 - WARNING - iptables: failed to apply: Command '['iptables-legacy', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:30:08,144 - WARNING - iptables: failed to apply: Command '['iptables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:30:08,146 - WARNING - iptables: failed to apply: Command '['iptables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:30:08,154 - WARNING - iptables: failed to apply: Command '['iptables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:30:08,156 - WARNING - iptables: failed to apply: Command '['iptables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:30:08,158 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'mangle', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'MARK', '--set-mark', '11']' returned non-zero exit status 1.
2023-06-23 15:30:08,164 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'POSTROUTING', '-m', 'cgroup', '--cgroup', '0x00110011', '-o', 'wlp2s0', '-j', 'MASQUERADE']' returned non-zero exit status 1.
2023-06-23 15:30:08,165 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:30:08,166 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-D', 'INPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-j', 'ACCEPT']' returned non-zero exit status 1.
2023-06-23 15:30:08,168 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'tcp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:30:08,170 - WARNING - iptables: failed to apply: Command '['ip6tables-legacy', '--wait', '-t', 'nat', '-D', 'OUTPUT', '-m', 'cgroup', '--cgroup', '0x00110011', '-p', 'udp', '--dport', '53', '-j', 'REDIRECT', '--to-ports', '5354']' returned non-zero exit status 1.
2023-06-23 15:30:08,170 - INFO - Deleted cgroup
2023-06-23 15:30:08,193 - ERROR - Bypass: Failed to set ipv4 route 'default via 192.168.0.1 dev wlp2s0'
2023-06-23 15:30:08,198 - INFO - Successfully created cgroup for wlp2s0
2023-06-23 15:30:08,198 - INFO - iptables: created rule for 2a0d:5600:24:55:87df:6588:1997:54e0
2023-06-23 15:30:08,198 - INFO - Establishing new OpenVPN tunnel
2023-06-23 15:30:08,198 - INFO - Establishing connection to Lich
2023-06-23 15:30:08,198 - INFO - OpenVPN:2023-06-23 15:30:08 DEPRECATED OPTION: --cipher set to 'AES-256-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-256-CBC' to --data-ciphers or change --cipher 'AES-256-CBC' to --data-ciphers-fallback 'AES-256-CBC' to silence this warning.
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 OpenVPN 2.5.5 x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Jul 14 2022
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 library versions: OpenSSL 3.0.2 15 Mar 2022, LZO 2.10
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 Outgoing Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 Outgoing Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 Incoming Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 Incoming Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 TCP/UDP: Preserving recently used remote address: [AF_INET6]2a0d:5600:24:55:87df:6588:1997:54e0:80
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 Socket Buffers: R=[212992->212992] S=[212992->212992]
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 UDPv6 link local: (not bound)
2023-06-23 15:30:08,199 - INFO - OpenVPN:2023-06-23 15:30:08 UDPv6 link remote: [AF_INET6]2a0d:5600:24:55:87df:6588:1997:54e0:80
2023-06-23 15:30:08,292 - INFO - OpenVPN:2023-06-23 15:30:08 TLS: Initial packet from [AF_INET6]2a0d:5600:24:55:87df:6588:1997:54e0:80, sid=34e7f423 32e68ec2
2023-06-23 15:30:08,293 - INFO - OpenVPN:2023-06-23 15:30:08 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:30:08,293 - INFO - OpenVPN:2023-06-23 15:30:08 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:30:08,343 - INFO - OpenVPN:2023-06-23 15:30:08 VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org
2023-06-23 15:30:08,343 - INFO - OpenVPN:2023-06-23 15:30:08 VERIFY KU OK
2023-06-23 15:30:08,343 - INFO - OpenVPN:2023-06-23 15:30:08 Validating certificate extended key usage
2023-06-23 15:30:08,343 - INFO - OpenVPN:2023-06-23 15:30:08 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
2023-06-23 15:30:08,344 - INFO - OpenVPN:2023-06-23 15:30:08 VERIFY EKU OK
2023-06-23 15:30:08,344 - INFO - OpenVPN:2023-06-23 15:30:08 VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=Lich, emailAddress=info@airvpn.org
2023-06-23 15:30:10,489 - INFO - OpenVPN:2023-06-23 15:30:10 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_CHACHA20_POLY1305_SHA256, peer certificate: 4096 bit RSA, signature: RSA-SHA512
2023-06-23 15:30:10,489 - INFO - OpenVPN:2023-06-23 15:30:10 [Lich] Peer Connection Initiated with [AF_INET6]2a0d:5600:24:55:87df:6588:1997:54e0:80
2023-06-23 15:30:10,821 - INFO - OpenVPN:2023-06-23 15:30:10 PUSH: Received control message: 'PUSH_REPLY,comp-lzo no,redirect-gateway ipv6 def1 bypass-dhcp,dhcp-option DNS 10.17.2.1,dhcp-option DNS6 fde6:7a:7d20:d02::1,tun-ipv6,route-gateway 10.17.2.1,topology subnet,ping 10,ping-restart 60,ifconfig-ipv6 fde6:7a:7d20:d02::10c3/64 fde6:7a:7d20:d02::1,ifconfig 10.17.2.197 255.255.255.0,peer-id 0,cipher AES-256-GCM'
2023-06-23 15:30:10,822 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: timers and/or timeouts modified
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: compression parms modified
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: --ifconfig/up options modified
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: route options modified
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: route-related options modified
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: peer-id set
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: adjusting link_mtu to 1625
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 OPTIONS IMPORT: data channel crypto options modified
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 Data Channel: using negotiated cipher 'AES-256-GCM'
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 Outgoing Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 Incoming Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v4_best_gw query: dst 0.0.0.0
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v4_best_gw result: via 192.168.0.1 dev wlp2s0
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 ROUTE_GATEWAY 192.168.0.1/255.255.255.0 IFACE=wlp2s0 HWADDR=60:e9:aa:b8:e4:25
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 GDG6: remote_host_ipv6=2a0d:5600:24:55:87df:6588:1997:54e0
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v6_best_gw query: dst 2a0d:5600:24:55:87df:6588:1997:54e0
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v6_best_gw result: via fe80::2a56:5aff:fec8:fd8e dev wlp2s0
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 ROUTE6_GATEWAY fe80::2a56:5aff:fec8:fd8e IFACE=wlp2s0
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 ROUTE6: 2000::/4 overlaps IPv6 remote 2a0d:5600:24:55:87df:6588:1997:54e0, adding host route to VPN endpoint
2023-06-23 15:30:10,824 - INFO - OpenVPN:2023-06-23 15:30:10 TUN/TAP device tun0 opened
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_iface_up: set tun0 up
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_addr_v4_add: 10.17.2.197/24 dev tun0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_iface_mtu_set: mtu 1500 for tun0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_iface_up: set tun0 up
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_addr_v6_add: fde6:7a:7d20:d02::10c3/64 dev tun0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 ROUTE remote_host protocol differs from tunneled
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v4_add: 0.0.0.0/1 via 10.17.2.1 dev [NULL] table 0 metric -1
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v4_add: 128.0.0.0/1 via 10.17.2.1 dev [NULL] table 0 metric -1
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 add_route_ipv6(2a0d:5600:24:55:87df:6588:1997:54e0/128 -> fe80::2a56:5aff:fec8:fd8e metric 1) dev wlp2s0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v6_add: 2a0d:5600:24:55:87df:6588:1997:54e0/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 add_route_ipv6(::/3 -> fde6:7a:7d20:d02::1 metric -1) dev tun0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v6_add: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 add_route_ipv6(2000::/4 -> fde6:7a:7d20:d02::1 metric -1) dev tun0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v6_add: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 add_route_ipv6(3000::/4 -> fde6:7a:7d20:d02::1 metric -1) dev tun0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v6_add: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 add_route_ipv6(fc00::/7 -> fde6:7a:7d20:d02::1 metric -1) dev tun0
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 net_route_v6_add: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:30:10,825 - INFO - OpenVPN:2023-06-23 15:30:10 Initialization Sequence Completed
2023-06-23 15:30:10,825 - INFO - Successfully connected to Lich
2023-06-23 15:30:10,827 - INFO - DNS: Set 10.17.2.1 and fde6:7a:7d20:d02::1 as dns servers via systemd-resolve
2023-06-23 15:30:27,336 - ERROR - Import Error: QtWebEngine is not available
2023-06-23 15:31:37,053 - INFO - OpenVPN:2023-06-23 15:31:37 event_wait : Interrupted system call (code=4)
2023-06-23 15:31:37,054 - INFO - OpenVPN:2023-06-23 15:31:37 net_route_v4_del: 0.0.0.0/1 via 10.17.2.1 dev [NULL] table 0 metric -1
2023-06-23 15:31:37,054 - INFO - OpenVPN:2023-06-23 15:31:37 net_route_v4_del: 128.0.0.0/1 via 10.17.2.1 dev [NULL] table 0 metric -1
2023-06-23 15:31:37,054 - INFO - OpenVPN:2023-06-23 15:31:37 delete_route_ipv6(2a0d:5600:24:55:87df:6588:1997:54e0/128)
2023-06-23 15:31:37,054 - INFO - OpenVPN:2023-06-23 15:31:37 net_route_v6_del: 2a0d:5600:24:55:87df:6588:1997:54e0/128 via fe80::2a56:5aff:fec8:fd8e dev wlp2s0 table 0 metric 1
2023-06-23 15:31:37,055 - INFO - OpenVPN:2023-06-23 15:31:37 delete_route_ipv6(::/3)
2023-06-23 15:31:37,055 - INFO - OpenVPN:2023-06-23 15:31:37 net_route_v6_del: ::/3 via :: dev tun0 table 0 metric -1
2023-06-23 15:31:37,055 - INFO - OpenVPN:2023-06-23 15:31:37 delete_route_ipv6(2000::/4)
2023-06-23 15:31:37,055 - INFO - OpenVPN:2023-06-23 15:31:37 net_route_v6_del: 2000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:31:37,055 - INFO - OpenVPN:2023-06-23 15:31:37 delete_route_ipv6(3000::/4)
2023-06-23 15:31:37,055 - INFO - OpenVPN:2023-06-23 15:31:37 net_route_v6_del: 3000::/4 via :: dev tun0 table 0 metric -1
2023-06-23 15:31:37,056 - INFO - OpenVPN:2023-06-23 15:31:37 delete_route_ipv6(fc00::/7)
2023-06-23 15:31:37,056 - INFO - OpenVPN:2023-06-23 15:31:37 net_route_v6_del: fc00::/7 via :: dev tun0 table 0 metric -1
2023-06-23 15:31:37,056 - INFO - OpenVPN:2023-06-23 15:31:37 Closing TUN/TAP interface
2023-06-23 15:31:37,056 - INFO - OpenVPN:2023-06-23 15:31:37 net_addr_v4_del: 10.17.2.197 dev tun0
2023-06-23 15:31:37,056 - INFO - OpenVPN:2023-06-23 15:31:37 net_addr_v6_del: fde6:7a:7d20:d02::10c3/64 dev tun0
2023-06-23 15:31:37,120 - INFO - OpenVPN:2023-06-23 15:31:37 SIGTERM[hard,] received, process exiting
2023-06-23 15:31:37,121 - INFO - OpenVPN - process killed
2023-06-23 15:31:37,121 - INFO - Openvpn connection closed
2023-06-23 15:31:55,948 - INFO - (Re-)enabled ipv6
2023-06-23 15:31:55,963 - INFO - iptables: flushed existing rules
2023-06-23 15:31:56,074 - INFO - iptables: activated firewall
samicrusader commented 1 year ago

I haven't touched this codebase in a while (nor have I ran Linux in a while), but I am fairly sure some of these issues have to do with overdependence on older components (systemd-networkd/resolved, iptables-legacy, etc...) both in the original project and in my fork (at the time I was using Arch Linux with systemd-networkd/resolved and nftables with no other firewalling).

I'll see about reworking the code to compensate for these, and be less-dependent on these components.