From frank at harz.behrens.de Thu Apr 1 16:27:43 2021 From: frank at harz.behrens.de (Frank Behrens) Date: Thu, 1 Apr 2021 18:27:43 +0200 Subject: [PATCH] freebsd: Implement selection of FIB (routing table) for tunneled packets In-Reply-To: References: <6aa0fd33-4c0d-557f-f7f5-5f5406b3a273@harz.behrens.de> <89952f1f-5296-7f87-9345-0f5c087ee3ae@harz.behrens.de> Message-ID: <9a60aab2-788e-ba1d-96ac-cf6d08bf4bd1@harz.behrens.de> Hello Jason! Am 31.03.2021 um 21:11 schrieb Jason A. Donenfeld: > Thanks for the patch. Does the line `so4->so_fibnum = so6->so_fibnum = > sc->sc_socket.so_fibnum;` also need to be changed too in initiation, > or is that one fine? Thanks for the pointer. That part has to be changed as well. I updated my branch. Kind regards, Frank -- Frank Behrens Osterwieck, Germany From dwmw2 at infradead.org Tue Apr 6 09:51:54 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Tue, 06 Apr 2021 10:51:54 +0100 Subject: A go package for a fine-grained tunnels configuration In-Reply-To: References: Message-ID: On Sun, 2021-03-14 at 18:05 +0100, kay wrote: > Hi Everyone, > > I'm developing a package for the fine-grained tunnel configuration in > different OS's, e.g. IP address, routes, DNSsettings. > > It already supports Windows, Linux and FreeBSD (+macOS with an os.Exec > dependency to run networksetup for DNS configuration, need help for a > native support without os.Exec). > > I hope you can find it useful and contribute to improving it. > > https://github.com/kayrus/tuncfg That looks interesting. Is there any chance it could be used with OpenConnect in place of a vpnc-script? It would be invoked as a separate executable with the address, routing, DNS information in environment variables. There may be some accumulated platform knowledge in the canonical vpnc-script at http://git.infradead.org/users/dwmw2/vpnc-scripts.git/ that would be useful in tuncfg too? -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From dwmw2 at infradead.org Tue Apr 6 11:29:47 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Tue, 06 Apr 2021 12:29:47 +0100 Subject: Duplicate IP address, and permissions problems on Windows Message-ID: I'm looking at porting the Windows build of OpenConnect? to use Wintun instead of the OpenVPN TAP-Windows driver. The Wintun example.c shows how to add a Legacy IP address using CreateUnicastIpAddressEntry(), and I tried to do it that way. But it doesn't always work. When I reconnect to the VPN using Wintun after connecting to the same VPN using TAP-Windows, the Legacy IP address remains associated with the other adapter despite it being *down*. Even though CreateUnicastIpAddressEntry() returns success. I ended up writing something to iterate over the table returned by GetUnicastIpAddressTable() and *remove* the address from every other adapter: https://gitlab.com/openconnect/openconnect/-/commit/60d1f092e35#71552d5f529101dd4a1be98f9ac9afffc3c5c9d1_0_141 Is it expected that this is necessary? Do we have similar problems if the IP address is set by invoking 'netsh interface ip set address'? The second issue I have on Windows is permissions. With TAP-Windows the user had to install the adapter with elevated permissions, but could run the VPN client in their user account. Using Wintun that doesn't seem to work, and Administrator privileges are required. What is the "correct" way of handling that? Are the elevated privileges only needed to *create* the Wintun adapter, and can it be used without them after the driver is already loaded? This doesn't seem to be covered by the documentation or example code. -- dwmw2 ? OpenConnect is the open source client for the various proprietary SSL VPNs ? Cisco AnyConnect, Juniper/Pulse Secure, GlobalProtect, F5, Fortinet, etc.: https://www.infradead.org/openconnect/ -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From thelinuxguy at mail.com Sat Apr 3 04:27:40 2021 From: thelinuxguy at mail.com (Giovanni Francesco) Date: Sat, 3 Apr 2021 06:27:40 +0200 Subject: NAT to NAT peers - 'EndPoint' IP data sharing among peers of the same key? Message-ID: Hi, I am looking to understand if "EndPoint" IP data may be shared among peers within the tunnel? The question may sound confusing, let me explain my setup. I have a static IPv4 wireguard server (let's call it "A" peer) which has two downstream WG clients peers "B" and "C" on remote networks with dynamic WAN IPs (roaming). In my current configuration all my clients "B" and "C" have a single peer "A" - therefore all traffic must always go to "A" - "A" is in a datacenter in another country. "B" and "C" have dynamic every changing IP "EndPoint" information, in my current setup this is not a problem because "A" is a static host. If "B" and "C" are connected to "A" - is it possible for me to make B and C peers of eachother without "EndPoint" ? In other words, if B public key is a peer of C and vise versa would its connection to "A" share the IP addresses ("EndPoint" or where to go) downstream to "B" and "C" so they can establish direct connectivity or would traffic always need to continue to traverse via "A"? Thanks! From zhengfish at gmail.com Mon Apr 5 05:07:11 2021 From: zhengfish at gmail.com (zhengfish) Date: Mon, 5 Apr 2021 13:07:11 +0800 Subject: [Wintun] Does wintun.dll support IOCP API? Message-ID: Hi, Does wintun.dll support IOCP API? If yes, how to do it? I tried to use Wintun.dll with IOCP. And while associating the Wintun Session handle to IOCP handle, it outputted an error with code 6. Context0.Iocp = CreateIoCompletionPort((HANDLE)Session0, hIocp, (ULONG_PTR)lpPerSessionContext, 0); // To Associate IOCP handle if (Context0.Iocp == NULL) wprintf(_T("error, CreateIoCompletionPort associate failed..., GetLastError: %d\n"), GetLastError()); else wprintf(_T("success, CreateIoCompletionPort associate success....\n")); ASSERT(Context0.Iocp==hIocp); I checked this system error code, that means a invalid handle: https://docs.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499- ERROR_INVALID_HANDLE 6 (0x6) The handle is invalid. Thanks. From achen at harbourfrontcentre.com Tue Apr 6 20:28:29 2021 From: achen at harbourfrontcentre.com (Allen Chen) Date: Tue, 6 Apr 2021 16:28:29 -0400 Subject: Best strategy for multiple point-to-point tunnels In-Reply-To: References: <93213ae2-3ad1-7f8a-1e21-57f672738e18@babioch.de> Message-ID: <76daec03-67b8-25a7-a2c1-bd51a0e9c891@harbourfrontcentre.com> The process of update is bugging me a lot. Does a update break the 1-n connection? There should be a way to check the version compatibility. But I don't know how. Allen On 3/30/2021 7:55 AM, Chriztoffer Hansen wrote: > On Tue, 30 Mar 2021 at 13:53, Chriztoffer Hansen wrote: >> On Thu, 25 Mar 2021 at 23:35, Karol Babioch wrote: >>> What is your recommendation on handling multiple peer-to-peer tunnels? >>> Should I go for multiple interfaces or for one interface with multiple >>> peers? >> If you plan to do L3 routing over the P2P tunnels (e.g. >> OSPF/BGP/EIGRP/Babel/etc.). A dedicated wg interface per remote >> endpoint is generally recommended. > If you are doing a road-warrior style set-up. One WG interface (e.g. > per subnet for road-warrior groups) at your aggregation point/server > will be enough. > From rm at romanrm.net Tue Apr 6 22:15:40 2021 From: rm at romanrm.net (Roman Mamedov) Date: Wed, 7 Apr 2021 03:15:40 +0500 Subject: NAT to NAT peers - 'EndPoint' IP data sharing among peers of the same key? In-Reply-To: References: Message-ID: <20210407031540.6fbd6789@natsu> On Sat, 3 Apr 2021 06:27:40 +0200 Giovanni Francesco wrote: > Hi, I am looking to understand if "EndPoint" IP data may be shared among peers within the tunnel? > > The question may sound confusing, let me explain my setup. > > I have a static IPv4 wireguard server (let's call it "A" peer) which has two downstream WG clients peers "B" and "C" on remote networks with dynamic WAN IPs (roaming). > In my current configuration all my clients "B" and "C" have a single peer "A" - therefore all traffic must always go to "A" - "A" is in a datacenter in another country. > > "B" and "C" have dynamic every changing IP "EndPoint" information, in my current setup this is not a problem because "A" is a static host. > > If "B" and "C" are connected to "A" - is it possible for me to make B and C peers of eachother without "EndPoint" ? > In other words, if B public key is a peer of C and vise versa would its connection to "A" share the IP addresses ("EndPoint" or where to go) downstream to "B" and "C" so they can establish direct connectivity or would traffic always need to continue to traverse via "A"? No, peer A will not tell peer B the current IP/port of peer C. Check out other tools, for instance Tinc can do this, but not WG. -- With respect, Roman From Jason at zx2c4.com Wed Apr 7 00:17:12 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Tue, 6 Apr 2021 18:17:12 -0600 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: References: Message-ID: Hey David, It's pretty typical behavior on Windows for IP addresses to be exclusive per interface. WireGuard for Windows does something similar: https://git.zx2c4.com/wireguard-windows/tree/tunnel/addressconfig.go#n22 With regards to permissions, you must be Local System, which is already the case if you're running inside a service. If you'd like to run as a mere Administrator process, you can steal a token with a technique like https://git.zx2c4.com/wireguard-tools/tree/src/ipc-uapi-windows.h#n14 or https://git.zx2c4.com/wireguard-windows/tree/elevate/doas.go#n30 Jason From kay.diam at gmail.com Wed Apr 7 06:31:08 2021 From: kay.diam at gmail.com (kay) Date: Wed, 7 Apr 2021 08:31:08 +0200 Subject: A go package for a fine-grained tunnels configuration In-Reply-To: References: Message-ID: You can create a dedicated executable if you wish. Currently I use it only as a package for certain projects. On Tue, Apr 6, 2021 at 11:51 AM David Woodhouse wrote: > > On Sun, 2021-03-14 at 18:05 +0100, kay wrote: > > Hi Everyone, > > > > I'm developing a package for the fine-grained tunnel configuration in > > different OS's, e.g. IP address, routes, DNSsettings. > > > > It already supports Windows, Linux and FreeBSD (+macOS with an os.Exec > > dependency to run networksetup for DNS configuration, need help for a > > native support without os.Exec). > > > > I hope you can find it useful and contribute to improving it. > > > > https://github.com/kayrus/tuncfg > > That looks interesting. Is there any chance it could be used with > OpenConnect in place of a vpnc-script? It would be invoked as a > separate executable with the address, routing, DNS information in > environment variables. > > There may be some accumulated platform knowledge in the canonical > vpnc-script at http://git.infradead.org/users/dwmw2/vpnc-scripts.git/ > that would be useful in tuncfg too? > > From olemd at glemt.net Wed Apr 7 07:50:31 2021 From: olemd at glemt.net (Ole-Morten Duesund) Date: Wed, 7 Apr 2021 09:50:31 +0200 Subject: NAT to NAT peers - 'EndPoint' IP data sharing among peers of the same key? In-Reply-To: <20210407031540.6fbd6789@natsu> References: <20210407031540.6fbd6789@natsu> Message-ID: <69faf92d-4c03-8255-d816-3e6cac5d0bb9@glemt.net> On 07.04.2021 00:15, Roman Mamedov wrote: > On Sat, 3 Apr 2021 06:27:40 +0200 > Giovanni Francesco wrote: > >> Hi, I am looking to understand if "EndPoint" IP data may be shared among peers within the tunnel? >> >> The question may sound confusing, let me explain my setup. >> >> I have a static IPv4 wireguard server (let's call it "A" peer) which has two downstream WG clients peers "B" and "C" on remote networks with dynamic WAN IPs (roaming). >> In my current configuration all my clients "B" and "C" have a single peer "A" - therefore all traffic must always go to "A" - "A" is in a datacenter in another country. >> >> "B" and "C" have dynamic every changing IP "EndPoint" information, in my current setup this is not a problem because "A" is a static host. >> >> If "B" and "C" are connected to "A" - is it possible for me to make B and C peers of eachother without "EndPoint" ? >> In other words, if B public key is a peer of C and vise versa would its connection to "A" share the IP addresses ("EndPoint" or where to go) downstream to "B" and "C" so they can establish direct connectivity or would traffic always need to continue to traverse via "A"? > No, peer A will not tell peer B the current IP/port of peer C. > > Check out other tools, for instance Tinc can do this, but not WG. There is also https://tailscale.com/blog/how-tailscale-works/ which does a bunch of magic to overcome NAT-problems. My experience is that it works absolutely stunningly well. - OM From dwmw2 at infradead.org Wed Apr 7 08:18:25 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Wed, 07 Apr 2021 09:18:25 +0100 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: References: Message-ID: On Tue, 2021-04-06 at 18:17 -0600, Jason A. Donenfeld wrote: > It's pretty typical behavior on Windows for IP addresses to be > exclusive per interface. WireGuard for Windows does something similar: > https://git.zx2c4.com/wireguard-windows/tree/tunnel/addressconfig.go#n22 Thanks. That seems to run cleanupAddressesOnDisconnectedInterfaces() only if the original SetIPAddressesForFamily() call return ERROR_OBJECT_ALREADY_EXISTS, while I was fairly sure that in my case the CreateUnicastIpAddressEntry() call was succeeding. I'll go and experiment with it some more. > With regards to permissions, you must be Local System, which is > already the case if you're running inside a service. If you'd like to > run as a mere Administrator process, you can steal a token with a > technique like https://git.zx2c4.com/wireguard-tools/tree/src/ipc-uapi-windows.h#n14 > or https://git.zx2c4.com/wireguard-windows/tree/elevate/doas.go#n30 Great, thanks! Is there a list of precisely which operations require such privileges? Is it only *creating* an adapter? Or only if doing so requires the kernel driver to be loaded for the first time? -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From karol at babioch.de Wed Apr 7 11:16:02 2021 From: karol at babioch.de (Karol Babioch) Date: Wed, 7 Apr 2021 13:16:02 +0200 Subject: Best strategy for multiple point-to-point tunnels In-Reply-To: <76daec03-67b8-25a7-a2c1-bd51a0e9c891@harbourfrontcentre.com> References: <93213ae2-3ad1-7f8a-1e21-57f672738e18@babioch.de> <76daec03-67b8-25a7-a2c1-bd51a0e9c891@harbourfrontcentre.com> Message-ID: Hi, Am 06.04.21 um 22:28 schrieb Allen Chen: > The process of update is bugging me a lot. Does a update break the 1-n > connection? There should be a way to check the version compatibility. > But I don't know how. right now there are no incompabilities (AFAIK). Not sure how this will be handled in the future. I guess only time will tell. I was hoping that some (core) developer could share his thoughts on what it could look like, but maybe its also too theoretical and can only be answered, once there is an issue and we know what is affected, etc. Best regards, Karol Babioch From dwmw2 at infradead.org Wed Apr 7 11:49:28 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Wed, 07 Apr 2021 12:49:28 +0100 Subject: Allowing space for packet headers in Wintun Tx/Rx Message-ID: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> My initial port of OpenConnect to use Wintun has a fairly simple implementation for sending and receiving packets. The transmit function is basically this: WintunAllocateSendPacket() memcpy() WintunSendPacket() I don't like the memcpy very much. I'd like to receive and decrypt incoming VPN packets from the public network directly into the Wintun ring. But packets have *headers*. Cisco AnyConnect, for example, has a single byte of 'type' field at the beginning of its DTLS packets. We decrypt the packet we receive from the public network, and *if* the first byte indicates that it's a data packet, we deliver the packet data starting from the second byte onwards into the tun device. So even if I were to receive and decrypt into a buffer allocated with WintunAllocateSendPacket(), I couldn't *send* that without a memmove() to move it all down by one byte. If WintunSendPacket took an additional 'offset' argument to disregard a certain number of bytes at the beginning of the buffer, that would probably suffice. Or is it possible to simply add to the pointer returned by WintunAllocateSendPacket()? Receiving is slightly more complex, as it's too late by the time WintunReceivePacket() is called; the data have already been received into the top of the available space. Perhaps the header reservation for Rx could be an additional parameter to WintunStartSession(), and the requested amount of space would always be available before the pointer returned from WintunReceivePacket()? (It's not clear how to *use* that knowledge in valid and safe C though.) Are there better options? -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From joshua.sjoding at scjalliance.com Thu Apr 8 00:07:28 2021 From: joshua.sjoding at scjalliance.com (Joshua Sjoding) Date: Wed, 7 Apr 2021 17:07:28 -0700 Subject: WireGuard for Windows "cq is corrupt" panic in rio_windows.go after insufficient buffer space Message-ID: One of our staff encountered an interesting crash in WireGuard for Windows 0.3.9 today. At first, the WireGuard log was slammed by this message repeatedly: Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. It looks like WireGuard eventually hit a panic in rio_windows.go [1] and died. The panic message was "cq is corrupt". The computer is a Lenovo ThinkPad P15v, model 20TRS00Q00. It's running Windows 10 20H2 and WireGuard for Windows version 0.3.9. We checked the Windows Update history and it didn't look like any relevant Windows or driver updates coincided with the crash. We didn't see anything in the Windows System or Application event logs that pointed to a root cause. What was left of the WireGuard log is attached. If we can provide any further information to help with debugging let us know. [1] https://github.com/WireGuard/wireguard-go/blob/3c11c0308e4e9fae76e1531f4f49a39f1ae24253/conn/winrio/rio_windows.go#L196 Joshua Sjoding SCJ Alliance IT Specialist www.scjalliance.com -------------- next part -------------- 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115358: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.115854: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.116350: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.117846: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.117846: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.117846: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.117846: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118333: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.118830: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122302: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.122798: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.124782: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.125277: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127261: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.127767: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516156: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516642: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516642: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516642: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.516642: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.517633: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518129: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.518625: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.520609: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521105: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.521602: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.522594: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.523090: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.525569: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526065: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.526562: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.533505: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534001: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.534497: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.535985: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.536481: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539457: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.539953: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.542930: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.543425: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.544913: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.545410: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.547889: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.548386: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.550865: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.550865: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.550865: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.550865: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.550865: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.550865: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.550865: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551362: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.551857: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.552354: [TUN] [SCJ] peer(1hMF?tqBw) - Failed to send data packet: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. 2021-04-07 16:09:05.570716: [TUN] [SCJ] peer(1hMF?tqBw) - Routine: sequential sender - stopped 2021-04-07 16:09:05.573685: [TUN] panic: cq is corrupt 2021-04-07 16:09:05.573685: [TUN] goroutine 158 [running]: 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard/conn/winrio.DequeueCompletion(0x238300a31c0, 0xc000665e10, 0x400, 0x400, 0xc000665df0) 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210311162910-5f0c8b942d93/conn/winrio/rio_windows.go:196 +0xa5 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard/conn.(*afWinRingBind).Send(0xc00021e000, 0xc0000c1800, 0x70, 0x7e0, 0xc000680de0, 0xc00021e1b8, 0x0, 0x0) 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210311162910-5f0c8b942d93/conn/bind_windows.go:420 +0x138 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard/conn.(*WinRingBind).Send(0xc00021e000, 0xc0000c1800, 0x70, 0x7e0, 0x12e4938, 0xc000680de0, 0x0, 0x0) 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210311162910-5f0c8b942d93/conn/bind_windows.go:474 +0x113 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).SendBuffer(0xc0001bc380, 0xc0000c1800, 0x70, 0x7e0, 0x0, 0x0) 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210311162910-5f0c8b942d93/device/peer.go:139 +0x125 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialSender(0xc0001bc380) 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210311162910-5f0c8b942d93/device/send.go:436 +0x1c7 2021-04-07 16:09:05.573685: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-07 16:09:05.573685: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210311162910-5f0c8b942d93/device/peer.go:186 +0x277 2021-04-07 16:09:05.620342: [MGR] [SCJ] Tunnel service tracker finished From dwmw2 at infradead.org Thu Apr 8 08:46:43 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Thu, 08 Apr 2021 09:46:43 +0100 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: References: Message-ID: <5D336E0F-1A42-4692-8597-6A035C4FA699@infradead.org> On 8 April 2021 00:00:46 BST, Daniel Lenski wrote: >On Tue, Apr 6, 2021 at 5:17 PM Jason A. Donenfeld >wrote: >> It's pretty typical behavior on Windows for IP addresses to be >> exclusive per interface. WireGuard for Windows does something >similar: >> >https://git.zx2c4.com/wireguard-windows/tree/tunnel/addressconfig.go#n22 > >Thank you! That's very interesting. > >Following David's initial implementation, I wrote something for >OpenConnect that's pretty much the same as yours: >https://gitlab.com/openconnect/openconnect/-/compare/5e6e9b850756157164f83cd4fedafb747fbbd50f...0bca5b32ac478b5d03b6e88f96bf29c6556610a5 > >1. Uses GetAdaptersAddresses to list all the addresses >2. If/when it finds a clashing address, it uses >GetUnicastIpAddressTable to determine the up/down state of the other >interface >3. Only delete the address from the other interface if it's non-UP. > >I was also annoyed that the GetAdaptersAddresses return structure >doesn't provide the adapter state, and that I had to go for this >convoluted O(n^2) design. > >I guess this reassures me that there isn't an obviously-better way to >do it. Unless netsh will do it for us when we ask *it* to set the IP address? OpenConnect doesn't normally bother itself with administrivia like setting IP addresses; its job is to pass packets. When I first wrote it, I just usurped the vpnc-script from vpnc which does all the routing/DNS/etc configuration for every platform under the sun, so all we do generally in OpenConnect is set the environment variables up and spawn the script. The only reason we ever set a Legacy IP directly in C for Tap-Windows was to make it do all the fake ARP nonsense correctly. (And ISTR we didn't need to do anything for IPv6 as it just needs to use a known lladdr as the route gw). We don't need that with Wintun. I preserved it in the first cut of Wintun support because the existing vpnc-script for Windows actually depends on it... but purely for waiting for the interface to come up. Can we ditch that, let the script set the address for us, and forget we ever saw that O(n?) code because netsh handles the conflicting interfaces for us? -- Sent from my Android device with K-9 Mail. Please excuse my brevity. From simon at rozman.si Thu Apr 8 14:24:08 2021 From: simon at rozman.si (Simon Rozman) Date: Thu, 8 Apr 2021 14:24:08 +0000 Subject: [Wintun] Does wintun.dll support IOCP API? In-Reply-To: References: Message-ID: <285a276b35a241a78216bded4e064ee9@rozman.si> > Does wintun.dll support IOCP API? > If yes, how to do it? No. Wintun does not communicate with user space using I/O at all. Please, use wintun.dll API described here https://git.zx2c4.com/wintun/about/ Regards, Simon From dwmw2 at infradead.org Thu Apr 8 14:37:15 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Thu, 08 Apr 2021 15:37:15 +0100 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> Message-ID: <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> On Wed, 2021-04-07 at 16:15 -0700, Daniel Lenski wrote: > On Wed, Apr 7, 2021 at 4:49 AM David Woodhouse wrote: > > If WintunSendPacket took an additional 'offset' argument to disregard a > > certain number of bytes at the beginning of the buffer, that would > > probably suffice. Or is it possible to simply add to the pointer > > returned by WintunAllocateSendPacket()? > > To expand on this possibility a little bit, I had proposed kludging a > ?shift? into the allocation for the outgoing packet: > > /* Always use this instead for an outgoing packet, instead of > * malloc(sizeof(struct pkt) + payload_len */ > BYTE *tun_pkt = WintunAllocateSendPacket( > vpninfo->wintun_session, > paylod_len /* packet payload size */ > + sizeof(struct pkt) /* OpenConnect's internal packet header size */ > ); > > /* Then after we build and populate the outgoing packet, just tell > * Wintun to send from an offset that's NOT at the beginning of the > * buffer it allocated for us. No memcpy! */ > WintunSendPacket(vpninfo->wintun_session, tun_pkt + sizeof(struct pkt)); > > The concern here is that Wintun may not have been written with this > possibility in mind, and might not always like sending from an address > other than the exact start of a buffer it's allocated for us. If we have to, we could probably ditch a lot of what's in the DLL's api/session.c and manage the ring for ourselves; the fundamental limitation right now is how the kernel driver itself handles the shared ring. It uses a TUN_PACKET header which is basically just a 'ULONG Size' followed immediately by the data. To allow the application to process packets out-of-order, the *userspace* part sets the top bit of ->Size to manage ownership between the DLL and the application, but the kernel side doesn't see that because it's removed by the time the DLL bumps the ring tail to allow the kernel to see the packet. For OpenConnect I think it's reasonable to declare that we don't care about optimising the TCP fallback data path; it's the UDP data path that we really want to be zero-copy, decrypting directly into the tun ring and encrypting directly from it. Let's take a look at the protocols we need to support... ========== Cisco DTLS ========== Cisco DTLS has only a single byte of header, for the packet type. So for VPN?tun traffic we could actually just receive the packet (with gnutls_record_recv() or ssl_read()) directly into the TUN ring, with the first byte *overwriting* the MSB of the Size field of the TUN_HEADER. If it's a packet type of anything other than AC_PKT_DATA we'd then handle it immediately (as we do now) and end up re-using the same location in the ring next time. If it's AC_PKT_DATA we just reinstate the Size field of the header and bump the ring Tail to let the kernel see it. If it wasn't for the fact that we need to allocate the full possible MTU and then reduce the actual packet size once we see it, this would even be compatible with the existing ring management in wintun.dll. It's certainly compatible with the kernel driver. For tun?VPN traffic we can do something similar, abusing that top byte of the Size field. And this *would* be compatible with the existing DLL, since we know that byte is going to be zero (which is AC_PKT_DATA) anyway. (Here's where it would be nice to have gnutls_record_sendv() or SSL_writev() methods which do scatter/gather, but we don't). The bare minimum we need from Wintun here is a function that would resize the last allocated send packet. As long as nothing has been allocated *after* it, we could reduce its size and adjust Session->Receive.Tail accordingly. === ESP === For ESP we do our own encrypt/decrypt operations directly and don't need a header. But we do actually need a *tail*, since the packet is padded to the crypto block size and has a 'next header' field in the final encrypted byte, e.g: DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD 01 02 03 04 05 06 07 08 09 0a 0b 0b 29 <........... padding ..........> ? ? padlen next_hdr So, much as with Cisco DTLS for VPN?tun traffic we'd want to allocate *more* space in the Wintun ring than we actually need, then shrink the Size field later to match precisely the size of the packet. Which again is compatible with the kernel driver but not with the ring management currently in api/session.c. For tun?VPN traffic it's a little more complex as we ideally want the kernel driver to leave space *after* the packet, for us to append the tail bytes without scribbling over the subsequent packet in the ring. But it isn't the end of the world; we can encrypt *most* of the packet directly from the tun ring, and we only need to copy *less* than a single crypto block (those first three DD DD DD bytes in the final line of the above example) into a buffer elsewhere to handle the padding etc. ============= PPP over DTLS ============= We just added support for the PPP-based protocols (Fortinet, F5) and I'm not sure we even know what the DTLS-based version looks like on the wire, do we? If the header is 4 bytes or fewer, the same nasty trick works that I suggest for Cisco DTLS above. And a PPP header even with accomp and pfcomp *would* fit in 4 bytes. For the TCP transports we have an additional framing but I'm hoping those aren't there in DTLS? If we do need a header larger than 4 bytes, then we are forced to do things properly by adding support in the kernel driver instead of just abusing the existing header while we know the kernel isn't looking at it. So, what do we want, and what's the bare minimum we actually *need* from Wintun to be able to avoid those memcpys? The bare minimum is either exposing enough of the TUN_SESSION to let us manage the rings for ourselves, or a function which can resize the *last* allocated packet from the Tx ring before we call WintunSendPacket() on it. That's purely userspace in wintun.dll. The next request would be to expand the TUN_HEADER to include head/tail space, and a parameter in the TUN_REGISTER_RINGS structure which configures the amount of head/tail space to leave between received packets. That's a change in the kernel API and is more complex to manage, and as noted we *could* live without it for now although it's kind of ugly, still involves *some* copying at the tail of outbound ESP packets, and depends on those PPP headers not exceeding the 4 bytes that are currently available for us to abuse :) -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From dwmw2 at infradead.org Thu Apr 8 16:59:23 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Thu, 08 Apr 2021 17:59:23 +0100 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: References: Message-ID: <432300ddb79fffb1586ccac6852fade4c2d47db0.camel@infradead.org> On Wed, 2021-04-07 at 16:00 -0700, Daniel Lenski wrote: > Following David's initial implementation, I wrote something for > OpenConnect that's pretty much the same as yours: > https://gitlab.com/openconnect/openconnect/-/compare/5e6e9b850756157164f83cd4fedafb747fbbd50f...0bca5b32ac478b5d03b6e88f96bf29c6556610a5 > > 1. Uses GetAdaptersAddresses to list all the addresses > 2. If/when it finds a clashing address, it uses > GetUnicastIpAddressTable to determine the up/down state of the other > interface > 3. Only delete the address from the other interface if it's non-UP. > > I was also annoyed that the GetAdaptersAddresses return structure > doesn't provide the adapter state, and that I had to go for this > convoluted O(n^2) design. > > I guess this reassures me that there isn't an obviously-better way to > do it. Hm, your description doesn't match the code I see at that link. You're using GetAdaptersAddresses() which gives you the UP/DOWN status as well as the addresses, and you iterate over those. The loop is ? adapter, ? Unicast address on that adapter: Check if it's our Legacy IP or IPv6 address. That isn't O(n?), is it? It's still O(n) of the total number of unicast addresses in the system? Once you've found an address which needs to be removed, you're *then* using GetUnicastIpAddressTable() and searching through the results to find the appropriate MIB_UNICASTIPADDRESS_ROW that you need to pass to DeleteUnicastIpAddressEntry(). Does *every* field in the MIB_UNICASTIPADDRESS_ROW have to be filled in, or is it just the Address, InterfaceLuid and InterfaceIndex? Can't we get those from the table we get back from GetAdaptersAddresses()? Alternatively, can't we start with GetUnicastIpAddressTable() as my original code did, and if we want to check whether an interface is down before we steal the address from it, use GetIfEntry2() to find out? Using GetIfEntry2() is probably a saner way to find the InterfaceIndex for the Wintun itself, which I was dredging the registry for manually. I'd like to be consistent about clearing the 'conflicting' addresses and setting the address on the Wintun interface. Whatever we do in OpenConnect for Legacy IP we should also do for IPv6. It looks like you're clearing the conflicting addresses for both families, but we still aren't *setting* the IPv6 address from the C code? -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From dwmw2 at infradead.org Thu Apr 8 17:10:19 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Thu, 08 Apr 2021 18:10:19 +0100 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> Message-ID: <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> On Thu, 2021-04-08 at 09:42 -0700, Daniel Lenski wrote: > On Thu, Apr 8, 2021 at 7:37 AM David Woodhouse wrote: > > ============= > > PPP over DTLS > > ============= > > > > We just added support for the PPP-based protocols (Fortinet, F5) and > > I'm not sure we even know what the DTLS-based version looks like on the > > wire, do we? If the header is 4 bytes or fewer, the same nasty trick > > works that I suggest for Cisco DTLS above. And a PPP header even with > > accomp and pfcomp *would* fit in 4 bytes. For the TCP transports we > > have an additional framing but I'm hoping those aren't there in DTLS? > > > > If we do need a header larger than 4 bytes, then we are forced to do > > things properly by adding support in the kernel driver instead of just > > abusing the existing header while we know the kernel isn't looking at > > it. > > This is probably too much "inside baseball" for the non-(OpenConnect > developers) here, but I *have* confirmed that the PPP-over-DTLS > encapsulation is identical to the PPP-over-TLS encapsulation for the 2 > PPP-based protocols that we support already. Both F5 and Fortinet > essentially opted for the thinnest veneer of UDP-ization possible for > their protocols. Ok, so that's the PPP header plus either 6 bytes for Fortinet or 4 bytes for F5? The important part for the purpose of this conversation is "more than four". > The tl;dr for OpenConnect is that we really would need support for > arbitrary head/tail space in order not to have to do *any* memcpy. Right. I'm almost relieved at that, since it's certainly a lot *nicer* to do it that way than any of the hacks I just described. We can extend the TUN_PACKET header structure to have Headroom and Tailroom fields, then add a new ioctl which enables the new TUN_PACKET format and sets the headroom/tailroom to be used in the Rx ring. Implementing that should be relatively simple and unintrusive; the trickiest part of it is maintaining backward compatibility with the existing TUN_PACKET structure. -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From Jason at zx2c4.com Thu Apr 8 23:13:39 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Thu, 8 Apr 2021 17:13:39 -0600 Subject: WireGuard for Windows "cq is corrupt" panic in rio_windows.go after insufficient buffer space In-Reply-To: References: Message-ID: Hi Joshua, Thanks for the log. It seems like Windows' Registered I/O extensions still are causing issues... Is the log that you sent me "complete"? I'm asking because it appears there are only 2032 WSAENOBUFS lines, rather than the 2048 or 2047 or 2049 that I'd expect to see. Jason From joshua.sjoding at scjalliance.com Thu Apr 8 23:41:08 2021 From: joshua.sjoding at scjalliance.com (Joshua Sjoding) Date: Thu, 8 Apr 2021 16:41:08 -0700 Subject: WireGuard for Windows "cq is corrupt" panic in rio_windows.go after insufficient buffer space In-Reply-To: References: Message-ID: To my knowledge the log is complete. I didn't see any personally identifiable information in it so I sent it as-is without modification. It was produced directly via WireGuard's save button on the Log tab. On Thu, Apr 8, 2021 at 4:13 PM Jason A. Donenfeld wrote: > > Hi Joshua, > > Thanks for the log. It seems like Windows' Registered I/O extensions > still are causing issues... > > Is the log that you sent me "complete"? I'm asking because it appears > there are only 2032 WSAENOBUFS lines, rather than the 2048 or 2047 or > 2049 that I'd expect to see. > > Jason From Jason at zx2c4.com Fri Apr 9 00:22:10 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Thu, 8 Apr 2021 18:22:10 -0600 Subject: WireGuard for Windows "cq is corrupt" panic in rio_windows.go after insufficient buffer space In-Reply-To: References: Message-ID: Fixed! Thanks for the report: https://git.zx2c4.com/wireguard-go/commit/?id=be6d8fa52daa048277c4b948d65d82b2d1a84090 From Jason at zx2c4.com Fri Apr 9 22:47:16 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 9 Apr 2021 16:47:16 -0600 Subject: WireGuard for Windows "cq is corrupt" panic in rio_windows.go after insufficient buffer space In-Reply-To: References: Message-ID: The fix has been released in 0.3.10. Jason From dwmw2 at infradead.org Sat Apr 10 09:25:38 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Sat, 10 Apr 2021 10:25:38 +0100 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: References: <432300ddb79fffb1586ccac6852fade4c2d47db0.camel@infradead.org> Message-ID: <731dfc961cc071b9ea25f3ef8fb04105956bafe5.camel@infradead.org> On Thu, 2021-04-08 at 10:53 -0700, Daniel Lenski wrote: > On Thu, Apr 8, 2021 at 9:59 AM David Woodhouse wrote: > > Hm, your description doesn't match the code I see at that link. > > > > You're using GetAdaptersAddresses() which gives you the UP/DOWN status > > as well as the addresses, and you iterate over those. The loop is > > > > ? adapter, ? Unicast address on that adapter: > > Check if it's our Legacy IP or IPv6 address. > > > > That isn't O(n?), is it? It's still O(n) of the total number of unicast > > addresses in the system? > > It's O(n?) the number of unicast addresses, because there's an extra layer? > > ? adapter, ? Unicast address on that adapter (iterating via > GetAdaptersAddresses) > 1. Check if it's using our Legacy IP or IPv6 address. > 2. If yes, then check if the other adapter is UP or non-UP > 3. If non-UP, then? > ? Unicast address on the system (iterating via > GetUnicastIpAddressTable(), since the other one maddeningly lacks an > API to delete addresses) > 2. If non-UP, then steal/delete/reclaim the desired address from it. Nah, that doesn't make it O(n?) because anything after step 1 doesn't actually happen for *every* address. It only happens for the one or two addresses which match our Legacy IP or IPv6 address. And we *know* there can be only one match for each because that's the whole point of this exercise, right? So it's O(n) for checking all the addresses in the system against our own address(es), then O(n) for each of up to two addresses that get matches. O(3n) is still O(n). And I still think you can fix it just to be O(1n) this way anyway, can't you: > > Alternatively, can't we start with GetUnicastIpAddressTable() as my > > original code did, and if we want to check whether an interface is down > > before we steal the address from it, use GetIfEntry2() to find out? > > > > Using GetIfEntry2() is probably a saner way to find the InterfaceIndex > > for the Wintun itself, which I was dredging the registry for manually. > Let's save the OpenConnect-specific decisions, but? > > It seems to me that we've identifying a couple of tasks that many > users of Wintun would need, and which are (in my opinion) quite > tedious to implement robustly in Windows: > > 1. Identifying the ?interface index? of the newly-created adapter (for > use with 'netsh', etc.). > 2. Reclaiming desired Layer3 (IP) addresses from other non-UP adapters > to which they may already be assigned. > > If the Wintun developers are amenable to it, these both seem like they > could be useful additions to Wintun itself. Along with the driver extension to add headroom/tailroom to TUN_PACKET, I agree. I'd be interested to hear Jason's and Simon's thoughts about those in principle, before we rephrase those suggestions in the form of a pull request. -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From simon at rozman.si Sat Apr 10 13:38:58 2021 From: simon at rozman.si (Simon Rozman) Date: Sat, 10 Apr 2021 13:38:58 +0000 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> Message-ID: Hi David,This is my proposal:https://git.zx2c4.com/wintun/commit/?id=eebd6aea4f75551f6e847a1d4fff857450bac6e9Awaiting review and zx2c4 approval. ?Regards, Simon -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 5559 bytes Desc: not available URL: From dlenski at gmail.com Wed Apr 7 23:00:46 2021 From: dlenski at gmail.com (Daniel Lenski) Date: Wed, 7 Apr 2021 16:00:46 -0700 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: References: Message-ID: On Tue, Apr 6, 2021 at 5:17 PM Jason A. Donenfeld wrote: > It's pretty typical behavior on Windows for IP addresses to be > exclusive per interface. WireGuard for Windows does something similar: > https://git.zx2c4.com/wireguard-windows/tree/tunnel/addressconfig.go#n22 Thank you! That's very interesting. Following David's initial implementation, I wrote something for OpenConnect that's pretty much the same as yours: https://gitlab.com/openconnect/openconnect/-/compare/5e6e9b850756157164f83cd4fedafb747fbbd50f...0bca5b32ac478b5d03b6e88f96bf29c6556610a5 1. Uses GetAdaptersAddresses to list all the addresses 2. If/when it finds a clashing address, it uses GetUnicastIpAddressTable to determine the up/down state of the other interface 3. Only delete the address from the other interface if it's non-UP. I was also annoyed that the GetAdaptersAddresses return structure doesn't provide the adapter state, and that I had to go for this convoluted O(n^2) design. I guess this reassures me that there isn't an obviously-better way to do it. Dan From dlenski at gmail.com Wed Apr 7 23:05:02 2021 From: dlenski at gmail.com (Daniel Lenski) Date: Wed, 7 Apr 2021 16:05:02 -0700 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: References: Message-ID: On Wed, Apr 7, 2021 at 1:18 AM David Woodhouse wrote: > > On Tue, 2021-04-06 at 18:17 -0600, Jason A. Donenfeld wrote: > > With regards to permissions, you must be Local System, which is > > already the case if you're running inside a service. If you'd like to > > run as a mere Administrator process, you can steal a token with a > > technique like https://git.zx2c4.com/wireguard-tools/tree/src/ipc-uapi-windows.h#n14 > > or https://git.zx2c4.com/wireguard-windows/tree/elevate/doas.go#n30 > > Great, thanks! > > Is there a list of precisely which operations require such privileges? > Is it only *creating* an adapter? Or only if doing so requires the > kernel driver to be loaded for the first time? > I'm a little confused by this. In my testing of our recent builds of OpenConnect on Windows 2012 R2 with wintun-0.10.2? Running as Administrator *has been* sufficient to allow OpenConnect to open the Wintun adapters, as well as to configure them with "netsh", etc. Is there some additional environment we should be testing in, where Administrator may *not* be sufficient? Thanks, Dan From dlenski at gmail.com Wed Apr 7 23:15:45 2021 From: dlenski at gmail.com (Daniel Lenski) Date: Wed, 7 Apr 2021 16:15:45 -0700 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> Message-ID: On Wed, Apr 7, 2021 at 4:49 AM David Woodhouse wrote: > If WintunSendPacket took an additional 'offset' argument to disregard a > certain number of bytes at the beginning of the buffer, that would > probably suffice. Or is it possible to simply add to the pointer > returned by WintunAllocateSendPacket()? To expand on this possibility a little bit, I had proposed kludging a ?shift? into the allocation for the outgoing packet: /* Always use this instead for an outgoing packet, instead of * malloc(sizeof(struct pkt) + payload_len */ BYTE *tun_pkt = WintunAllocateSendPacket( vpninfo->wintun_session, paylod_len /* packet payload size */ + sizeof(struct pkt) /* OpenConnect's internal packet header size */ ); /* Then after we build and populate the outgoing packet, just tell * Wintun to send from an offset that's NOT at the beginning of the * buffer it allocated for us. No memcpy! */ WintunSendPacket(vpninfo->wintun_session, tun_pkt + sizeof(struct pkt)); The concern here is that Wintun may not have been written with this possibility in mind, and might not always like sending from an address other than the exact start of a buffer it's allocated for us. Thanks, Dan From dlenski at gmail.com Thu Apr 8 16:09:46 2021 From: dlenski at gmail.com (Daniel Lenski) Date: Thu, 8 Apr 2021 09:09:46 -0700 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: <5D336E0F-1A42-4692-8597-6A035C4FA699@infradead.org> References: <5D336E0F-1A42-4692-8597-6A035C4FA699@infradead.org> Message-ID: On Thu, Apr 8, 2021 at 1:46 AM David Woodhouse wrote: > Unless netsh will do it for us when we ask *it* to set the IP address? OpenConnect doesn't normally bother itself with administrivia like setting IP addresses; its job is to pass packets. I'm afraid not. I tried playing around with various documented and undocumented options to netsh, and did not found a way to get it to set an IP address which is a duplicate of another adapter's address. That's puzzling since it IS POSSIBLE to set a duplicate IP address (conflicting with a down adapter) via the Control Panel GUI. I gave up and asked for any hints on StackExchange: https://serverfault.com/questions/1059221/using-netsh-interface-ip-set-address-to-override-another-adapters-address > I preserved it in the first cut of Wintun support because the existing vpnc-script for Windows actually depends on it... but purely for waiting for the interface to come up. Can we ditch that, let the script set the address for us, and forget we ever saw that O(n?) code because netsh handles the conflicting interfaces for us? One way we could move this IP-reclaiming code out of OpenConnect itself would be to make the script do it. However, this would still be an O(n^2) loop, and it would involve parsing the text output of netsh or similar? which will get pretty ugly very fast. (Either that or someone figures out a/the magical option that allows netsh to handle this itself.) From dlenski at gmail.com Thu Apr 8 16:42:46 2021 From: dlenski at gmail.com (Daniel Lenski) Date: Thu, 8 Apr 2021 09:42:46 -0700 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> Message-ID: On Thu, Apr 8, 2021 at 7:37 AM David Woodhouse wrote: > ============= > PPP over DTLS > ============= > > We just added support for the PPP-based protocols (Fortinet, F5) and > I'm not sure we even know what the DTLS-based version looks like on the > wire, do we? If the header is 4 bytes or fewer, the same nasty trick > works that I suggest for Cisco DTLS above. And a PPP header even with > accomp and pfcomp *would* fit in 4 bytes. For the TCP transports we > have an additional framing but I'm hoping those aren't there in DTLS? > > If we do need a header larger than 4 bytes, then we are forced to do > things properly by adding support in the kernel driver instead of just > abusing the existing header while we know the kernel isn't looking at > it. This is probably too much "inside baseball" for the non-(OpenConnect developers) here, but I *have* confirmed that the PPP-over-DTLS encapsulation is identical to the PPP-over-TLS encapsulation for the 2 PPP-based protocols that we support already. Both F5 and Fortinet essentially opted for the thinnest veneer of UDP-ization possible for their protocols. > So, what do we want, and what's the bare minimum we actually *need* > from Wintun to be able to avoid those memcpys? > > The bare minimum is either exposing enough of the TUN_SESSION to let us > manage the rings for ourselves, or a function which can resize the > *last* allocated packet from the Tx ring before we call > WintunSendPacket() on it. That's purely userspace in wintun.dll. > > The next request would be to expand the TUN_HEADER to include head/tail > space, and a parameter in the TUN_REGISTER_RINGS structure which > configures the amount of head/tail space to leave between received > packets. That's a change in the kernel API and is more complex to > manage, and as noted we *could* live without it for now although it's > kind of ugly, still involves *some* copying at the tail of outbound ESP > packets, and depends on those PPP headers not exceeding the 4 bytes > that are currently available for us to abuse :) The tl;dr for OpenConnect is that we really would need support for arbitrary head/tail space in order not to have to do *any* memcpy. Dan From dlenski at gmail.com Thu Apr 8 17:37:38 2021 From: dlenski at gmail.com (Daniel Lenski) Date: Thu, 8 Apr 2021 10:37:38 -0700 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> Message-ID: On Thu, Apr 8, 2021 at 10:10 AM David Woodhouse wrote: > On Thu, 2021-04-08 at 09:42 -0700, Daniel Lenski wrote: > > On Thu, Apr 8, 2021 at 7:37 AM David Woodhouse wrote: > > > If we do need a header larger than 4 bytes, then we are forced to do > > > things properly by adding support in the kernel driver instead of just > > > abusing the existing header while we know the kernel isn't looking at > > > it. > > > > This is probably too much "inside baseball" for the non-(OpenConnect > > developers) here, but I *have* confirmed that the PPP-over-DTLS > > encapsulation is identical to the PPP-over-TLS encapsulation for the 2 > > PPP-based protocols that we support already. Both F5 and Fortinet > > essentially opted for the thinnest veneer of UDP-ization possible for > > their protocols. > > Ok, so that's the PPP header plus either 6 bytes for Fortinet or 4 > bytes for F5? The important part for the purpose of this conversation > is "more than four". Correct. We need >4 bytes to support PPP-over-DTLS headers without copying. And we will undoubtedly find more examples in the ongoing quest to make OpenConnect serve as The One Client For Your Crappy Proprietary Corporate VPN to Rule Them All. From dlenski at gmail.com Thu Apr 8 17:53:42 2021 From: dlenski at gmail.com (Daniel Lenski) Date: Thu, 8 Apr 2021 10:53:42 -0700 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: <432300ddb79fffb1586ccac6852fade4c2d47db0.camel@infradead.org> References: <432300ddb79fffb1586ccac6852fade4c2d47db0.camel@infradead.org> Message-ID: On Thu, Apr 8, 2021 at 9:59 AM David Woodhouse wrote: > Hm, your description doesn't match the code I see at that link. > > You're using GetAdaptersAddresses() which gives you the UP/DOWN status > as well as the addresses, and you iterate over those. The loop is > > ? adapter, ? Unicast address on that adapter: > Check if it's our Legacy IP or IPv6 address. > > That isn't O(n?), is it? It's still O(n) of the total number of unicast > addresses in the system? It's O(n?) the number of unicast addresses, because there's an extra layer? ? adapter, ? Unicast address on that adapter (iterating via GetAdaptersAddresses) 1. Check if it's using our Legacy IP or IPv6 address. 2. If yes, then check if the other adapter is UP or non-UP 3. If non-UP, then? ? Unicast address on the system (iterating via GetUnicastIpAddressTable(), since the other one maddeningly lacks an API to delete addresses) 2. If non-UP, then steal/delete/reclaim the desired address from it. > Once you've found an address which needs to be removed, you're *then* > using GetUnicastIpAddressTable() and searching through the results to > find the appropriate MIB_UNICASTIPADDRESS_ROW that you need to pass to > DeleteUnicastIpAddressEntry(). > > Does *every* field in the MIB_UNICASTIPADDRESS_ROW have to be filled > in, or is it just the Address, InterfaceLuid and InterfaceIndex? Can't > we get those from the table we get back from GetAdaptersAddresses()? Yes, I already tried precisely this in https://gitlab.com/openconnect/openconnect/-/commit/b3dbabda7b68cf86fc72e2d5158b0707f74d61f0, and it doesn't work. I could faff around with it more, but even if I got it to work, it's clearly not how Microsoft wants us to do it, and liable to break. /* Create a "fake" MIB_UNICASTIPADDRESS_ROW based on the IP_ADAPTER_UNICAST_ADDRESS and IP_ADAPTER_ADDRESSES data structures which we already have. */ > Alternatively, can't we start with GetUnicastIpAddressTable() as my > original code did, and if we want to check whether an interface is down > before we steal the address from it, use GetIfEntry2() to find out? > > Using GetIfEntry2() is probably a saner way to find the InterfaceIndex > for the Wintun itself, which I was dredging the registry for manually. > > > I'd like to be consistent about clearing the 'conflicting' addresses > and setting the address on the Wintun interface. Whatever we do in > OpenConnect for Legacy IP we should also do for IPv6. It looks like > you're clearing the conflicting addresses for both families, but we > still aren't *setting* the IPv6 address from the C code? Let's save the OpenConnect-specific decisions, but? It seems to me that we've identifying a couple of tasks that many users of Wintun would need, and which are (in my opinion) quite tedious to implement robustly in Windows: 1. Identifying the ?interface index? of the newly-created adapter (for use with 'netsh', etc.). 2. Reclaiming desired Layer3 (IP) addresses from other non-UP adapters to which they may already be assigned. If the Wintun developers are amenable to it, these both seem like they could be useful additions to Wintun itself. Dan From f.diloo at iopositive.com Thu Apr 8 19:33:53 2021 From: f.diloo at iopositive.com (f.diloo at iopositive.com) Date: Thu, 8 Apr 2021 21:33:53 +0200 Subject: Wireguard on Windows 10 Pro joined to a domain with limited rights Message-ID: <005e01d72cae$1f6cbab0$5e463010$@iopositive.com> Hi team, I'm using the version 0.3.9 and it's working fine for now except that I need to put the end user (domain User) inside the local admin group to make it work . Please note that with a PC not join to a domain , wireguard is running fine with a local user wich is member of "Network operator". Does someone had any success running Wireguard in Corporate conditions (Active Directory) with limited rights ? Otherwise Wireguard is just great (simple & fast) , keep up the good work guys. Best regards Fariaz Diloo Founder | Solution Architect Office: + 33 9 72 56 37 71 Mobile: + 33 6 21 18 44 00 IOPOSITIVE 5 AV DU GENERAL DE GAULLE 94160 SAINT-MANDE http://www.iopositive.com IT & Cloud Services From dwmw2 at infradead.org Sat Apr 10 14:35:28 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Sat, 10 Apr 2021 15:35:28 +0100 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> Message-ID: On Sat, 2021-04-10 at 13:38 +0000, Simon Rozman wrote: > Hi David,This is my proposal: > https://git.zx2c4.com/wintun/commit/?id=eebd6aea4f75551f6e847a1d4fff857450bac6e9 > Awaiting review and zx2c4 approval. ? > Regards, Simon Looks good to me; thanks. Just need to work out how to cross-build it (I can muster up a Windows VM for testing, but *building* on it is beyond my tolerance of Windows for now). We'll also need to be able to WintunAllocateSendPacket() of the full possible MTU, then receive and decrypt into that, and send only the actual size of the packet we received. A per-packet tail would have let us do that, but I agree that we don't want to expand the TUN_PACKET header if we can avoid doing so. Perhaps a WintunShrinkAndSendPacket() ? which can only *shrink*, of course, and which can only be used on the *last* packet allocated, checking that its tail *is* the Session->Receive.Tail before adjusting the latter accordingly. -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5174 bytes Desc: not available URL: From lists at lonnie.abelbeck.com Sat Apr 10 15:27:23 2021 From: lists at lonnie.abelbeck.com (Lonnie Abelbeck) Date: Sat, 10 Apr 2021 10:27:23 -0500 Subject: T-Mobile 4G/5G CGNAT vs WireGuard tunnel jitter Message-ID: <0BDB7408-22AC-4643-975E-1B5AC3AFADD9@lonnie.abelbeck.com> Greetings, I have been testing the T-Mobile Home Internet (4G/5G fixed wireless) service to a Linode VM via WireGuard. The TMHI service uses CGNAT plus an additional NAT in their modem/gateway with a MTU of 1420, so WireGuard is configured with a 1340 MTU. Everything works, but I thought I would share some jitter results that readers here might find interesting. [gw-lan WGIP:10.4.1.1] -- [TMHI modem/gateway] -- 4G/5G/CGNAT -- [linode WGIP:10.4.1.10] gw-lan ~ # mtr -wn -c 30 -s 1340 10.4.1.10 ... HOST: gw-lan Loss% Snt Last Avg Best Wrst StDev 1.|-- 10.4.1.10 0.0% 30 88.7 88.9 77.2 99.2 5.4 Looks to be as expected, in the direction of the CGNAT, now the other direction, against the grain of the CGNAT ... linode ~ # mtr -wn -c 30 -s 1340 10.4.1.1 ... HOST: linode Loss% Snt Last Avg Best Wrst StDev 1.|-- 10.4.1.1 0.0% 30 206.1 243.5 73.8 393.9 97.9 Huge jitter, and is very reproducible. But no packet loss. Further investigation shows for low traffic rates (linode->gw-lan) the jitter over WireGuard is huge, here are some UDP iperf3 tests showing how the jitter goes down as the traffic rate is increased. linode ~ # iperf3 -c 10.4.1.1 -u -b 5k -t 30 ... [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams [ 5] 0.00-30.25 sec 18.9 KBytes 5.11 Kbits/sec 68.428 ms 0/15 (0%) receiver linode ~ # iperf3 -c 10.4.1.1 -u -b 10k -t 30 ... [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams [ 5] 0.00-30.30 sec 37.7 KBytes 10.2 Kbits/sec 82.411 ms 0/30 (0%) receiver linode ~ # iperf3 -c 10.4.1.1 -u -b 50k -t 30 ... [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams [ 5] 0.00-30.14 sec 184 KBytes 49.9 Kbits/sec 7.532 ms 0/146 (0%) receiver linode ~ # iperf3 -c 10.4.1.1 -u -b 100k -t 30 ... [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams [ 5] 0.00-30.10 sec 367 KBytes 100 Kbits/sec 4.182 ms 0/292 (0%) receiver linode ~ # iperf3 -c 10.4.1.1 -u -b 500k -t 30 ... [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams [ 5] 0.00-30.11 sec 1.79 MBytes 498 Kbits/sec 1.308 ms 0/1456 (0%) receiver So using VoIP a higher bitrate CODEC is actually better w.r.t jitter. Hope others find this interesting. Lonnie From buddybalaa at gmail.com Sat Apr 10 15:43:51 2021 From: buddybalaa at gmail.com (Mo Balaa) Date: Sat, 10 Apr 2021 10:43:51 -0500 Subject: T-Mobile 4G/5G CGNAT vs WireGuard tunnel jitter In-Reply-To: <0BDB7408-22AC-4643-975E-1B5AC3AFADD9@lonnie.abelbeck.com> References: <0BDB7408-22AC-4643-975E-1B5AC3AFADD9@lonnie.abelbeck.com> Message-ID: <378472A1-D6C5-428C-96FE-AC05897826C8@gmail.com> Thanks for sharing, I have also been running WG tunnels over T-Mobile home internet and haven?t seen any of the jitter you are reporting. Did you try the same tests (outbound) without running them via WG? Which modem do you have? How many signal bars are you getting? Also, what does an non-tunneled speed test report? Cheers > On Apr 10, 2021, at 10:31, Lonnie Abelbeck wrote: > > ?Greetings, > > I have been testing the T-Mobile Home Internet (4G/5G fixed wireless) service to a Linode VM via WireGuard. > > The TMHI service uses CGNAT plus an additional NAT in their modem/gateway with a MTU of 1420, so WireGuard is configured with a 1340 MTU. > > Everything works, but I thought I would share some jitter results that readers here might find interesting. > > [gw-lan WGIP:10.4.1.1] -- [TMHI modem/gateway] -- 4G/5G/CGNAT -- [linode WGIP:10.4.1.10] > > gw-lan ~ # mtr -wn -c 30 -s 1340 10.4.1.10 > ... > HOST: gw-lan Loss% Snt Last Avg Best Wrst StDev > 1.|-- 10.4.1.10 0.0% 30 88.7 88.9 77.2 99.2 5.4 > > Looks to be as expected, in the direction of the CGNAT, now the other direction, against the grain of the CGNAT ... > > linode ~ # mtr -wn -c 30 -s 1340 10.4.1.1 > ... > HOST: linode Loss% Snt Last Avg Best Wrst StDev > 1.|-- 10.4.1.1 0.0% 30 206.1 243.5 73.8 393.9 97.9 > > Huge jitter, and is very reproducible. But no packet loss. > > Further investigation shows for low traffic rates (linode->gw-lan) the jitter over WireGuard is huge, here are some UDP iperf3 tests showing how the jitter goes down as the traffic rate is increased. > > linode ~ # iperf3 -c 10.4.1.1 -u -b 5k -t 30 > ... > [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams > [ 5] 0.00-30.25 sec 18.9 KBytes 5.11 Kbits/sec 68.428 ms 0/15 (0%) receiver > > linode ~ # iperf3 -c 10.4.1.1 -u -b 10k -t 30 > ... > [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams > [ 5] 0.00-30.30 sec 37.7 KBytes 10.2 Kbits/sec 82.411 ms 0/30 (0%) receiver > > linode ~ # iperf3 -c 10.4.1.1 -u -b 50k -t 30 > ... > [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams > [ 5] 0.00-30.14 sec 184 KBytes 49.9 Kbits/sec 7.532 ms 0/146 (0%) receiver > > linode ~ # iperf3 -c 10.4.1.1 -u -b 100k -t 30 > ... > [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams > [ 5] 0.00-30.10 sec 367 KBytes 100 Kbits/sec 4.182 ms 0/292 (0%) receiver > > linode ~ # iperf3 -c 10.4.1.1 -u -b 500k -t 30 > ... > [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams > [ 5] 0.00-30.11 sec 1.79 MBytes 498 Kbits/sec 1.308 ms 0/1456 (0%) receiver > > > So using VoIP a higher bitrate CODEC is actually better w.r.t jitter. > > Hope others find this interesting. > > Lonnie > From rm at romanrm.net Sat Apr 10 15:59:51 2021 From: rm at romanrm.net (Roman Mamedov) Date: Sat, 10 Apr 2021 20:59:51 +0500 Subject: T-Mobile 4G/5G CGNAT vs WireGuard tunnel jitter In-Reply-To: <0BDB7408-22AC-4643-975E-1B5AC3AFADD9@lonnie.abelbeck.com> References: <0BDB7408-22AC-4643-975E-1B5AC3AFADD9@lonnie.abelbeck.com> Message-ID: <20210410205951.14f93435@natsu> On Sat, 10 Apr 2021 10:27:23 -0500 Lonnie Abelbeck wrote: > I have been testing the T-Mobile Home Internet (4G/5G fixed wireless) service to a Linode VM via WireGuard. > > The TMHI service uses CGNAT plus an additional NAT in their modem/gateway with a MTU of 1420, so WireGuard is configured with a 1340 MTU. Do they provide IPv6? I see mentions that yes, but with incoming connections blocked. Might still work for WG. -- With respect, Roman From lists at lonnie.abelbeck.com Sat Apr 10 16:03:38 2021 From: lists at lonnie.abelbeck.com (Lonnie Abelbeck) Date: Sat, 10 Apr 2021 11:03:38 -0500 Subject: T-Mobile 4G/5G CGNAT vs WireGuard tunnel jitter In-Reply-To: <378472A1-D6C5-428C-96FE-AC05897826C8@gmail.com> References: <0BDB7408-22AC-4643-975E-1B5AC3AFADD9@lonnie.abelbeck.com> <378472A1-D6C5-428C-96FE-AC05897826C8@gmail.com> Message-ID: Hi Mo, I have the latest hardware (gray cylinder) -- Typically 3 of 5 bars 4G Band: B2 5G Band: n71 -- Note the huge jitter only occurs inbound, which is difficult to measure without using WireGuard. The same UDP iperf3 tests outbound (gw-lan->linode) range from 3 to 8 ms jitter, regardless of bitrate. -- Speed ( less than 2 seconds) 10/15 Mbps (down/up) slowly ramps up to ... Speed ( after 20 seconds) up to 200/35 Mbps (down/up) -- Lonnie > On Apr 10, 2021, at 10:43 AM, Mo Balaa wrote: > > Thanks for sharing, I have also been running WG tunnels over T-Mobile home internet and haven?t seen any of the jitter you are reporting. > > Did you try the same tests (outbound) without running them via WG? > Which modem do you have? How many signal bars are you getting? Also, what does an non-tunneled speed test report? > > Cheers > > >> On Apr 10, 2021, at 10:31, Lonnie Abelbeck wrote: >> >> ?Greetings, >> >> I have been testing the T-Mobile Home Internet (4G/5G fixed wireless) service to a Linode VM via WireGuard. >> >> The TMHI service uses CGNAT plus an additional NAT in their modem/gateway with a MTU of 1420, so WireGuard is configured with a 1340 MTU. >> >> Everything works, but I thought I would share some jitter results that readers here might find interesting. >> >> [gw-lan WGIP:10.4.1.1] -- [TMHI modem/gateway] -- 4G/5G/CGNAT -- [linode WGIP:10.4.1.10] >> >> gw-lan ~ # mtr -wn -c 30 -s 1340 10.4.1.10 >> ... >> HOST: gw-lan Loss% Snt Last Avg Best Wrst StDev >> 1.|-- 10.4.1.10 0.0% 30 88.7 88.9 77.2 99.2 5.4 >> >> Looks to be as expected, in the direction of the CGNAT, now the other direction, against the grain of the CGNAT ... >> >> linode ~ # mtr -wn -c 30 -s 1340 10.4.1.1 >> ... >> HOST: linode Loss% Snt Last Avg Best Wrst StDev >> 1.|-- 10.4.1.1 0.0% 30 206.1 243.5 73.8 393.9 97.9 >> >> Huge jitter, and is very reproducible. But no packet loss. >> >> Further investigation shows for low traffic rates (linode->gw-lan) the jitter over WireGuard is huge, here are some UDP iperf3 tests showing how the jitter goes down as the traffic rate is increased. >> >> linode ~ # iperf3 -c 10.4.1.1 -u -b 5k -t 30 >> ... >> [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams >> [ 5] 0.00-30.25 sec 18.9 KBytes 5.11 Kbits/sec 68.428 ms 0/15 (0%) receiver >> >> linode ~ # iperf3 -c 10.4.1.1 -u -b 10k -t 30 >> ... >> [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams >> [ 5] 0.00-30.30 sec 37.7 KBytes 10.2 Kbits/sec 82.411 ms 0/30 (0%) receiver >> >> linode ~ # iperf3 -c 10.4.1.1 -u -b 50k -t 30 >> ... >> [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams >> [ 5] 0.00-30.14 sec 184 KBytes 49.9 Kbits/sec 7.532 ms 0/146 (0%) receiver >> >> linode ~ # iperf3 -c 10.4.1.1 -u -b 100k -t 30 >> ... >> [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams >> [ 5] 0.00-30.10 sec 367 KBytes 100 Kbits/sec 4.182 ms 0/292 (0%) receiver >> >> linode ~ # iperf3 -c 10.4.1.1 -u -b 500k -t 30 >> ... >> [ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams >> [ 5] 0.00-30.11 sec 1.79 MBytes 498 Kbits/sec 1.308 ms 0/1456 (0%) receiver >> >> >> So using VoIP a higher bitrate CODEC is actually better w.r.t jitter. >> >> Hope others find this interesting. >> >> Lonnie >> > > From lists at lonnie.abelbeck.com Sat Apr 10 16:12:56 2021 From: lists at lonnie.abelbeck.com (Lonnie Abelbeck) Date: Sat, 10 Apr 2021 11:12:56 -0500 Subject: T-Mobile 4G/5G CGNAT vs WireGuard tunnel jitter In-Reply-To: <20210410205951.14f93435@natsu> References: <0BDB7408-22AC-4643-975E-1B5AC3AFADD9@lonnie.abelbeck.com> <20210410205951.14f93435@natsu> Message-ID: <15541873-A1D6-417E-A3B7-121DE0D90F22@lonnie.abelbeck.com> > On Apr 10, 2021, at 10:59 AM, Roman Mamedov wrote: > > On Sat, 10 Apr 2021 10:27:23 -0500 > Lonnie Abelbeck wrote: > >> I have been testing the T-Mobile Home Internet (4G/5G fixed wireless) service to a Linode VM via WireGuard. >> >> The TMHI service uses CGNAT plus an additional NAT in their modem/gateway with a MTU of 1420, so WireGuard is configured with a 1340 MTU. > > Do they provide IPv6? I see mentions that yes, but with incoming connections > blocked. Might still work for WG. Hi Roman, TMHI uses IPv6 for their CGNAT, but AFAIK their current firmware does not support IPv6 on the ethernet ports (I disable their WiFi). But if (when) they support IPv6, establishing the WireGuard tunnel over IPv6 would be great, and back to a 1420 MTU for WireGuard. Lonnie From dlenski at gmail.com Sat Apr 10 18:32:03 2021 From: dlenski at gmail.com (Daniel Lenski) Date: Sat, 10 Apr 2021 11:32:03 -0700 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> Message-ID: On Sat, Apr 10, 2021 at 7:35 AM David Woodhouse wrote: > On Sat, 2021-04-10 at 13:38 +0000, Simon Rozman wrote: > > Hi David,This is my proposal: > > https://git.zx2c4.com/wintun/commit/?id=eebd6aea4f75551f6e847a1d4fff857450bac6e9 > > Awaiting review and zx2c4 approval. > > Regards, Simon > > > Looks good to me; thanks. Just need to work out how to cross-build it > (I can muster up a Windows VM for testing, but *building* on it is > beyond my tolerance of Windows for now). +1 to all that. > We'll also need to be able to WintunAllocateSendPacket() of the full > possible MTU, then receive and decrypt into that, and send only the > actual size of the packet we received. > > A per-packet tail would have let us do that, but I agree that we don't > want to expand the TUN_PACKET header if we can avoid doing so. > > Perhaps a WintunShrinkAndSendPacket() ? which can only *shrink*, of > course, and which can only be used on the *last* packet allocated, > checking that its tail *is* the Session->Receive.Tail before adjusting > the latter accordingly. In addition to the use case for chopping ESP trailers and less-than-full-size packets, OpenConnect has the case of "PPP packets in HDLC-like framing" which need to be "un-HDLC-ed" in a way that can only cause them to shrink. (https://gitlab.com/openconnect/openconnect/blob/master/ppp.c#L102-158) There are two cases worth considering where the packet size could actually *expand*: 1) Some VPN protocols support compression of the tunneled packets. It would be bad behavior to use this to stuff a packet of >(advertised MTU) bytes in <(advertised MTU) bytes, but it wouldn't surprise me if it exists in the wild. We now deal with receipt of larger-than-expected-MTU packets in OpenConnect in a relatively uniform way: allocate MAX(mtu, 16384) bytes for packets coming from the VPN (if using TLS transport) or MAX(mtu, 2048) if using DTLS. 2) Some VPN protocols concatenate multiple packets into a single aggregate on the wire. On Linux we can decrypt, truncate, and send to the tunnel interface without further copying. Case (1) can be handled with overallocate-and-shrink. Case (2) is pretty rare among the protocols that OpenConnect supports, so fallback to memcpy seems fine. Dan From peter.whisker at gmail.com Mon Apr 12 07:45:35 2021 From: peter.whisker at gmail.com (Peter Whisker) Date: Mon, 12 Apr 2021 08:45:35 +0100 Subject: WireGuard for Windows crash "panic: ring is full" since release of 0.3.10 In-Reply-To: References: Message-ID: <3e55e6c9-6446-3e8f-20bd-87986ad5f4ac@gmail.com> Hi Since the recent upgrade to 0.3.10 It now crashes bringing up my tunnels - all was well with 0.3.9. Peter 2021-04-12 08:41:07.187: [TUN] [lhirisseccom01] Setting interface configuration 2021-04-12 08:41:07.187: [TUN] [lhirisseccom01] Routine: event worker - started 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] UAPI: Updating private key 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] UAPI: Removing all peers 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Created 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Updating preshared key 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Updating endpoint 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Updating persistent keepalive interval 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Removing all allowedips 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Adding allowedip 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Adding allowedip 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Adding allowedip 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - UAPI: Adding allowedip 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] Bringing peers up 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] UDP bind has been updated 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Routine: receive incoming 0x292980 - started 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - Starting... 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - Sending keepalive packet 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - Sending handshake initiation 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Routine: receive incoming 0x292a60 - started 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - Routine: sequential sender - started 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - Routine: sequential receiver - started 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Interface state was Down, requested Up, now Up 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Monitoring default v6 routes 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Binding v6 socket to interface 0 (blackhole=false) 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Setting device v6 addresses 2021-04-12 08:41:07.202: [TUN] [lhirisseccom01] Monitoring default v4 routes 2021-04-12 08:41:07.210: [TUN] [lhirisseccom01] Binding v4 socket to interface 10 (blackhole=false) 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Setting device v4 addresses 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Listening for UAPI requests 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Executing: `wg set %WIREGUARD_TUNNEL_NAME% listen-port 0` 2021-04-12 08:41:07.229: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - Received handshake response 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] UAPI: Updating listen port 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] Routine: receive incoming 0x292980 - stopped 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] Routine: receive incoming 0x292a60 - stopped 2021-04-12 08:41:07.407: [TUN] [lhirisseccom01] cmd> Unable to modify interface: Unknown error 2021-04-12 08:41:07.410: [TUN] panic: ring is full 2021-04-12 08:41:07.410: [TUN] goroutine 134 [running]: 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard/conn.(*ringBuffer).Push(...) 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:46 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard/conn.(*afWinRingBind).InsertReceiveRequest(0xc000220000, 0x0, 0x0) 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:327 +0x7e 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard/conn.(*WinRingBind).Open(0xc000220000, 0x0, 0x0, 0x0, 0x0, 0xc00021dbf7, 0x0, 0x0) 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:291 +0x265 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard/device.(*Device).BindUpdate(0xc000222000, 0x0, 0x0) 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/device.go:470 +0x104 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard/device.(*Device).handleDeviceLine(0xc000222000, 0xc000324030, 0xb, 0xc00032403c, 0x1, 0x1, 0xc0003140a0) 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:223 +0x7a5 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard/device.(*Device).IpcSetOperation(0xc000222000, 0x52ee60, 0xc0003042a0, 0x0, 0x0) 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:183 +0x279 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard/device.(*Device).IpcHandle(0xc000222000, 0x537840, 0xc0004b4078) 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:426 +0x165 2021-04-12 08:41:07.410: [TUN] created by golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute.func2 2021-04-12 08:41:07.410: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:226 +0x7b 2021-04-12 08:41:07.467: [MGR] [lhirisseccom01] Tunnel service tracker finished 2021-04-12 08:41:16.327: [MGR] [Wintun] IsPoolMember: Reading pool devpkey failed, falling back: Element not found. (Code 0x00000490) 2021-04-12 08:41:16.338: [MGR] Removing Wintun interface ?lhirisseccom01? because no service for it exists On 09/04/2021 23:47, Jason A. Donenfeld wrote: > The fix has been released in 0.3.10. > > Jason From peter.whisker at gmail.com Mon Apr 12 07:56:04 2021 From: peter.whisker at gmail.com (Peter Whisker) Date: Mon, 12 Apr 2021 08:56:04 +0100 Subject: WireGuard for Windows crash "panic: ring is full" since release of 0.3.10 In-Reply-To: <3e55e6c9-6446-3e8f-20bd-87986ad5f4ac@gmail.com> References: <3e55e6c9-6446-3e8f-20bd-87986ad5f4ac@gmail.com> Message-ID: It seems to be your suggested workaround for using Wireguard via a split tunnel: PostUp = wg set %WIREGUARD_TUNNEL_NAME% listen-port 0 which is causing the crash. It was great that this worked in earlier versions but I'm now back to square one. Peter On 12/04/2021 08:45, Peter Whisker wrote: > Hi > > Since the recent upgrade to 0.3.10 It now crashes bringing up my > tunnels - all was well with 0.3.9. > > Peter > > 2021-04-12 08:41:07.187: [TUN] [lhirisseccom01] Setting interface > configuration > 2021-04-12 08:41:07.187: [TUN] [lhirisseccom01] Routine: event worker > - started > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] UAPI: Updating private > key > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] UAPI: Removing all peers > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Created > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Updating preshared key > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Updating endpoint > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Updating persistent keepalive interval > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Removing all allowedips > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Adding allowedip > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Adding allowedip > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Adding allowedip > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > UAPI: Adding allowedip > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] Bringing peers up > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] UDP bind has been updated > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Routine: receive > incoming 0x292980 - started > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > Starting... > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > Sending keepalive packet > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > Sending handshake initiation > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Routine: receive > incoming 0x292a60 - started > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > Routine: sequential sender - started > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > Routine: sequential receiver - started > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Interface state was > Down, requested Up, now Up > 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Monitoring default v6 > routes > 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Binding v6 socket to > interface 0 (blackhole=false) > 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Setting device v6 > addresses > 2021-04-12 08:41:07.202: [TUN] [lhirisseccom01] Monitoring default v4 > routes > 2021-04-12 08:41:07.210: [TUN] [lhirisseccom01] Binding v4 socket to > interface 10 (blackhole=false) > 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Setting device v4 > addresses > 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Listening for UAPI > requests > 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Executing: `wg set > %WIREGUARD_TUNNEL_NAME% listen-port 0` > 2021-04-12 08:41:07.229: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > Received handshake response > 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] UAPI: Updating listen > port > 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] Routine: receive > incoming 0x292980 - stopped > 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] Routine: receive > incoming 0x292a60 - stopped > 2021-04-12 08:41:07.407: [TUN] [lhirisseccom01] cmd> Unable to modify > interface: Unknown error > 2021-04-12 08:41:07.410: [TUN] panic: ring is full > 2021-04-12 08:41:07.410: [TUN] goroutine 134 [running]: > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard/conn.(*ringBuffer).Push(...) > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:46 > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard/conn.(*afWinRingBind).InsertReceiveRequest(0xc000220000, > 0x0, 0x0) > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:327 > +0x7e > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard/conn.(*WinRingBind).Open(0xc000220000, 0x0, > 0x0, 0x0, 0x0, 0xc00021dbf7, 0x0, 0x0) > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:291 > +0x265 > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard/device.(*Device).BindUpdate(0xc000222000, > 0x0, 0x0) > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/device.go:470 > +0x104 > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard/device.(*Device).handleDeviceLine(0xc000222000, > 0xc000324030, 0xb, 0xc00032403c, 0x1, 0x1, 0xc0003140a0) > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:223 > +0x7a5 > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard/device.(*Device).IpcSetOperation(0xc000222000, > 0x52ee60, 0xc0003042a0, 0x0, 0x0) > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:183 > +0x279 > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard/device.(*Device).IpcHandle(0xc000222000, > 0x537840, 0xc0004b4078) > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:426 > +0x165 > 2021-04-12 08:41:07.410: [TUN] created by > golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute.func2 > 2021-04-12 08:41:07.410: [TUN] > golang.zx2c4.com/wireguard/windows/tunnel/service.go:226 +0x7b > 2021-04-12 08:41:07.467: [MGR] [lhirisseccom01] Tunnel service tracker > finished > 2021-04-12 08:41:16.327: [MGR] [Wintun] IsPoolMember: Reading pool > devpkey failed, falling back: Element not found. (Code 0x00000490) > 2021-04-12 08:41:16.338: [MGR] Removing Wintun interface > ?lhirisseccom01? because no service for it exists > > On 09/04/2021 23:47, Jason A. Donenfeld wrote: >> The fix has been released in 0.3.10. >> >> Jason From facboy at gmail.com Mon Apr 12 08:55:43 2021 From: facboy at gmail.com (Christopher Ng) Date: Mon, 12 Apr 2021 09:55:43 +0100 Subject: WireGuard for Windows crash "panic: ring is full" since release of 0.3.10 In-Reply-To: References: <3e55e6c9-6446-3e8f-20bd-87986ad5f4ac@gmail.com> Message-ID: yeah, i have the same problem. i gather your 'wg set' command didn't used to hang, mine took effect on 0.3.9 but i always had to run it manually and Ctrl-C it as it would never return. On Mon, 12 Apr 2021 at 08:57, Peter Whisker wrote: > > It seems to be your suggested workaround for using Wireguard via a split > tunnel: > > PostUp = wg set %WIREGUARD_TUNNEL_NAME% listen-port 0 > > which is causing the crash. It was great that this worked in earlier > versions but I'm now back to square one. > > Peter > > On 12/04/2021 08:45, Peter Whisker wrote: > > Hi > > > > Since the recent upgrade to 0.3.10 It now crashes bringing up my > > tunnels - all was well with 0.3.9. > > > > Peter > > > > 2021-04-12 08:41:07.187: [TUN] [lhirisseccom01] Setting interface > > configuration > > 2021-04-12 08:41:07.187: [TUN] [lhirisseccom01] Routine: event worker > > - started > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] UAPI: Updating private > > key > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] UAPI: Removing all peers > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Created > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Updating preshared key > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Updating endpoint > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Updating persistent keepalive interval > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Removing all allowedips > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Adding allowedip > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Adding allowedip > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Adding allowedip > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > UAPI: Adding allowedip > > 2021-04-12 08:41:07.188: [TUN] [lhirisseccom01] Bringing peers up > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] UDP bind has been updated > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Routine: receive > > incoming 0x292980 - started > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > Starting... > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > Sending keepalive packet > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > Sending handshake initiation > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Routine: receive > > incoming 0x292a60 - started > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > Routine: sequential sender - started > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > Routine: sequential receiver - started > > 2021-04-12 08:41:07.190: [TUN] [lhirisseccom01] Interface state was > > Down, requested Up, now Up > > 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Monitoring default v6 > > routes > > 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Binding v6 socket to > > interface 0 (blackhole=false) > > 2021-04-12 08:41:07.191: [TUN] [lhirisseccom01] Setting device v6 > > addresses > > 2021-04-12 08:41:07.202: [TUN] [lhirisseccom01] Monitoring default v4 > > routes > > 2021-04-12 08:41:07.210: [TUN] [lhirisseccom01] Binding v4 socket to > > interface 10 (blackhole=false) > > 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Setting device v4 > > addresses > > 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Listening for UAPI > > requests > > 2021-04-12 08:41:07.212: [TUN] [lhirisseccom01] Executing: `wg set > > %WIREGUARD_TUNNEL_NAME% listen-port 0` > > 2021-04-12 08:41:07.229: [TUN] [lhirisseccom01] peer(Qfjl?0V1w) - > > Received handshake response > > 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] UAPI: Updating listen > > port > > 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] Routine: receive > > incoming 0x292980 - stopped > > 2021-04-12 08:41:07.404: [TUN] [lhirisseccom01] Routine: receive > > incoming 0x292a60 - stopped > > 2021-04-12 08:41:07.407: [TUN] [lhirisseccom01] cmd> Unable to modify > > interface: Unknown error > > 2021-04-12 08:41:07.410: [TUN] panic: ring is full > > 2021-04-12 08:41:07.410: [TUN] goroutine 134 [running]: > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard/conn.(*ringBuffer).Push(...) > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:46 > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard/conn.(*afWinRingBind).InsertReceiveRequest(0xc000220000, > > 0x0, 0x0) > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:327 > > +0x7e > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard/conn.(*WinRingBind).Open(0xc000220000, 0x0, > > 0x0, 0x0, 0x0, 0xc00021dbf7, 0x0, 0x0) > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/conn/bind_windows.go:291 > > +0x265 > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard/device.(*Device).BindUpdate(0xc000222000, > > 0x0, 0x0) > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/device.go:470 > > +0x104 > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard/device.(*Device).handleDeviceLine(0xc000222000, > > 0xc000324030, 0xb, 0xc00032403c, 0x1, 0x1, 0xc0003140a0) > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:223 > > +0x7a5 > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard/device.(*Device).IpcSetOperation(0xc000222000, > > 0x52ee60, 0xc0003042a0, 0x0, 0x0) > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:183 > > +0x279 > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard/device.(*Device).IpcHandle(0xc000222000, > > 0x537840, 0xc0004b4078) > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard at v0.0.0-20210409202608-75526d60714c/device/uapi.go:426 > > +0x165 > > 2021-04-12 08:41:07.410: [TUN] created by > > golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute.func2 > > 2021-04-12 08:41:07.410: [TUN] > > golang.zx2c4.com/wireguard/windows/tunnel/service.go:226 +0x7b > > 2021-04-12 08:41:07.467: [MGR] [lhirisseccom01] Tunnel service tracker > > finished > > 2021-04-12 08:41:16.327: [MGR] [Wintun] IsPoolMember: Reading pool > > devpkey failed, falling back: Element not found. (Code 0x00000490) > > 2021-04-12 08:41:16.338: [MGR] Removing Wintun interface > > ?lhirisseccom01? because no service for it exists > > > > On 09/04/2021 23:47, Jason A. Donenfeld wrote: > >> The fix has been released in 0.3.10. > >> > >> Jason From simon at rozman.si Mon Apr 12 11:38:30 2021 From: simon at rozman.si (Simon Rozman) Date: Mon, 12 Apr 2021 11:38:30 +0000 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> Message-ID: <9940aef2c1064fc785b51ac860020a18@rozman.si> Hi, > > Looks good to me; thanks. Just need to work out how to cross-build it > > (I can muster up a Windows VM for testing, but *building* on it is > > beyond my tolerance of Windows for now). > > +1 to all that. Don't worry. Once Jason is back, reviews and (hopefully) approves the changes, we shall prepare an official release for you. > > We'll also need to be able to WintunAllocateSendPacket() of the full > > possible MTU, then receive and decrypt into that, and send only the > > actual size of the packet we received. How about this: https://git.zx2c4.com/wintun/commit/?id=03b6cd410c8963d1888966edf31fdc35a4c8b523 Should be backward compatible. Tested with the existing stable wireguard-windows release 0.3.10. > There are two cases worth considering where the packet size could > actually *expand*: > > 1) Some VPN protocols support compression of the tunneled packets. It > would be bad behavior to use this to stuff a packet of >(advertised > MTU) bytes in <(advertised MTU) bytes, but it wouldn't surprise me if it > exists in the wild. We now deal with receipt of larger-than-expected-MTU > packets in OpenConnect in a relatively uniform way: allocate MAX(mtu, > 16384) bytes for packets coming from the VPN (if using TLS transport) or > MAX(mtu, 2048) if using DTLS. > 2) Some VPN protocols concatenate multiple packets into a single > aggregate on the wire. On Linux we can decrypt, truncate, and send to > the tunnel interface without further copying. > > Case (1) can be handled with overallocate-and-shrink. Case (2) is pretty > rare among the protocols that OpenConnect supports, so fallback to > memcpy seems fine. Phew! Thanks. :) Regards, Simon From dwmw2 at infradead.org Mon Apr 12 13:00:21 2021 From: dwmw2 at infradead.org (David Woodhouse) Date: Mon, 12 Apr 2021 14:00:21 +0100 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: <9940aef2c1064fc785b51ac860020a18@rozman.si> References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> <9940aef2c1064fc785b51ac860020a18@rozman.si> Message-ID: <38E774FD-16C8-4788-8C31-634A7AA4248A@infradead.org> On 12 April 2021 12:38:30 BST, Simon Rozman wrote: >> > We'll also need to be able to WintunAllocateSendPacket() of the >full >> > possible MTU, then receive and decrypt into that, and send only the >> > actual size of the packet we received. > >How about this: >https://git.zx2c4.com/wintun/commit/?id=03b6cd410c8963d1888966edf31fdc35a4c8b523 > >Should be backward compatible. Tested with the existing stable >wireguard-windows release 0.3.10. Looks good; thanks. However... >> 2) Some VPN protocols concatenate multiple packets into a single >> aggregate on the wire. On Linux we can decrypt, truncate, and send to >> the tunnel interface without further copying. >> >> Case (1) can be handled with overallocate-and-shrink. Case (2) is >pretty >> rare among the protocols that OpenConnect supports, so fallback to >> memcpy seems fine. Case (2) is fairly easy to handle when the L3 packet size doesn't use up the whole TUN_PACKET size, isn't it? We can loop and consume multiple smaller packets? -- Sent from my Android device with K-9 Mail. Please excuse my brevity. From Jason at zx2c4.com Mon Apr 12 17:03:15 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Mon, 12 Apr 2021 11:03:15 -0600 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: <38E774FD-16C8-4788-8C31-634A7AA4248A@infradead.org> References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> <9940aef2c1064fc785b51ac860020a18@rozman.si> <38E774FD-16C8-4788-8C31-634A7AA4248A@infradead.org> Message-ID: Hey guys, Sorry I'm a bit late to this thread. I'm happy to see there's a prototype for benchmarking, though I do wonder if this is a bit of overeager optimization? That is, why is this necessary and does it actually help? By returning packets back to the Wintun ring later, more of the ring winds up being used, which in turn means more cache misses as it spans additional cache lines. In other words, it seems like this might be comparing the performance of memcpy+cache no-memcpy+cachemiss. Which is better, and is it actually measurable? Is it possible that adding this functionality actually has zero measurable impact on performance? Given the complexity this adds, it'd be nice to see some numbers to help make the argument, or perhaps reasoning that's more sophisticated than my own napkin thoughts here. Jason From Jason at zx2c4.com Mon Apr 12 17:31:48 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Mon, 12 Apr 2021 11:31:48 -0600 Subject: WireGuard for Windows crash "panic: ring is full" since release of 0.3.10 In-Reply-To: <3e55e6c9-6446-3e8f-20bd-87986ad5f4ac@gmail.com> References: <3e55e6c9-6446-3e8f-20bd-87986ad5f4ac@gmail.com> Message-ID: Hi Peter, Please let me know if updating to 0.3.11 fixes the issue. Jason From Jason at zx2c4.com Mon Apr 12 17:50:28 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Mon, 12 Apr 2021 11:50:28 -0600 Subject: Duplicate IP address, and permissions problems on Windows In-Reply-To: References: Message-ID: On Wed, Apr 7, 2021 at 5:05 PM Daniel Lenski wrote: > > On Wed, Apr 7, 2021 at 1:18 AM David Woodhouse wrote: > > > > On Tue, 2021-04-06 at 18:17 -0600, Jason A. Donenfeld wrote: > > > With regards to permissions, you must be Local System, which is > > > already the case if you're running inside a service. If you'd like to > > > run as a mere Administrator process, you can steal a token with a > > > technique like https://git.zx2c4.com/wireguard-tools/tree/src/ipc-uapi-windows.h#n14 > > > or https://git.zx2c4.com/wireguard-windows/tree/elevate/doas.go#n30 > > > > Great, thanks! > > > > Is there a list of precisely which operations require such privileges? > > Is it only *creating* an adapter? Or only if doing so requires the > > kernel driver to be loaded for the first time? > > > > I'm a little confused by this. In my testing of our recent builds of > OpenConnect on Windows 2012 R2 with wintun-0.10.2? > > Running as Administrator *has been* sufficient to allow OpenConnect to > open the Wintun adapters, as well as to configure them with "netsh", > etc. > > Is there some additional environment we should be testing in, where > Administrator may *not* be sufficient? Oh, sorry, you're right. Administrator _is_ sufficient for this, because the code I mentioned above to do automatic elevation is part of wintun.dll. Sorry for the confusion. Jason From Jason at zx2c4.com Tue Apr 13 02:57:05 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Mon, 12 Apr 2021 20:57:05 -0600 Subject: [PATCH] freebsd: Implement selection of FIB (routing table) for tunneled packets In-Reply-To: <9a60aab2-788e-ba1d-96ac-cf6d08bf4bd1@harz.behrens.de> References: <6aa0fd33-4c0d-557f-f7f5-5f5406b3a273@harz.behrens.de> <89952f1f-5296-7f87-9345-0f5c087ee3ae@harz.behrens.de> <9a60aab2-788e-ba1d-96ac-cf6d08bf4bd1@harz.behrens.de> Message-ID: Hi Frank, Can you let me know if this fixes the issue? https://git.zx2c4.com/wireguard-freebsd/commit/?id=cdb18ebf44a5babb57cddccd6b33e9f19cfdf365 Jason From Jason at zx2c4.com Tue Apr 13 03:09:11 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Mon, 12 Apr 2021 21:09:11 -0600 Subject: [ANNOUNCE] wireguard-freebsd snapshot v0.0.20210412 is available Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, An experimental snapshot, v0.0.20210412, of WireGuard for FreeBSD has been been tagged in the git repository. At this time this code is new, unvetted, possibly buggy, and should be considered "experimental". It might contain security issues. We gladly welcome your testing and bug reports, but do keep in mind that this code is new, so some caution should be exercised at the moment for using it in mission critical environments. == Changes == * if_wg: set persistent keepalive even if interface is down * if_wg: remove old link state check * if_wg: allow getting tunnelfib to race * if_wg: set user cookie and fib through proper sockopts Various state fixes. * if_wg: simplify jail exit logic Fixing the jail exit logic here means that you can set jails up and down without rendering all wireguard tunnels useless. * TODO: initial dump There's now a pretty big TODO list of goals before switching into more intense bug fixing mode: https://git.zx2c4.com/wireguard-freebsd/about/TODO.md If you'd like to help out, please get in touch! This snapshot contains commits from: Jason A. Donenfeld. The source repository is available at the usual location: git clone https://git.zx2c4.com/wireguard-freebsd This snapshot is available in compressed tarball form: https://git.zx2c4.com/wireguard-freebsd/snapshot/wireguard-freebsd-0.0.20210412.tar.xz SHA2-256: eff7fdff89949ea294177fe9b18fde99a016fc4ad44aaa0f31ba6c2cff5ac506 Thank you, Jason Donenfeld -----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEEq5lC5tSkz8NBJiCnSfxwEqXeA64FAmB1C0QQHGphc29uQHp4 MmM0LmNvbQAKCRBJ/HASpd4DrvE4EACNi7dCF+GUOh1FsEqLmovrcWTLk4+w9lm/ AFOB8X2mC3IYjDC1TNin7AnlG07uRE6W8ocLGywDdUYjh6ahozRqjbDIO/ZTuUD+ lc7IlisbDJ4QhJPbbuYpVnztKllptRvfuhDT28hX8T+3xhH0zdK7YfrotraEMMrt wiQSk4GNZvr+Z79h3Ev8vHv25EfzL8HNzg3k15kEPNsERvdcPdovSFYqAxS1+oss 6Z/L2OWlpCqVdOAwoQIxO1yWStxwEO8+x1SPHSDz8IS9lIrldPBgm277mEafo5u2 0jPd9D/9IS9tVgXFF9EcR/I5oPe1lUhpl193xEHgLnxlmD+H5ZhTi2Jud1s8MPmK XmqSTE2GA0clEwE0y4evBgDxP6B8o1LBcRsF62RR/KPASYAqoteQBAmv78MtL98S iluf4nGWwE+IrgSE1gfLbkHADo36GyX3a4jmEz5//IbjpnIzpuudqeH/p4d7QM4Y 4rS0egtkMF69cHtVdi98Xbi7vCDlXYEv1ikdi/mjAO5dr0sUoBisGSl0Uewje8Wl Lo3367BJOl7jwTUhRGtlxt8duR8FyYRvYAbMh+NJHCDjhwIWsqYZ+VW8/26YF2VX 6zg1Ge41kVgFvNaqrRXFKlWTJO0k8VIywbOWK6CnfB9LjborWhRSGF+hLXuGrxGx MxZAIgD/XA== =1CAc -----END PGP SIGNATURE----- From peter.whisker at gmail.com Tue Apr 13 13:01:27 2021 From: peter.whisker at gmail.com (Peter Whisker) Date: Tue, 13 Apr 2021 14:01:27 +0100 Subject: WireGuard for Windows crash "panic: ring is full" since release of 0.3.10 In-Reply-To: References: <3e55e6c9-6446-3e8f-20bd-87986ad5f4ac@gmail.com> Message-ID: <3855f3fb-84ac-cc8f-4a16-3167ae90b381@gmail.com> Hi Jason, Yes thanks, it's fine again with 0.3.11. Regards Peter On 12/04/2021 18:31, Jason A. Donenfeld wrote: > Hi Peter, > > Please let me know if updating to 0.3.11 fixes the issue. > > Jason From Jason at zx2c4.com Tue Apr 13 22:09:01 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Tue, 13 Apr 2021 16:09:01 -0600 Subject: Allowing space for packet headers in Wintun Tx/Rx In-Reply-To: References: <6e259ab359c7f93f8f1119df0ba7b285cd4f53d1.camel@infradead.org> <26fc1c68fa495407b5c4c46a56abdb5dfe639280.camel@infradead.org> <1f5dfe333c4e8d228773241cffadc9913d7829c7.camel@infradead.org> <9940aef2c1064fc785b51ac860020a18@rozman.si> <38E774FD-16C8-4788-8C31-634A7AA4248A@infradead.org> Message-ID: On Mon, Apr 12, 2021 at 11:03 AM Jason A. Donenfeld wrote: > Sorry I'm a bit late to this thread. I'm happy to see there's a > prototype for benchmarking, though I do wonder if this is a bit of > overeager optimization? That is, why is this necessary and does it > actually help? > > By returning packets back to the Wintun ring later, more of the ring > winds up being used, which in turn means more cache misses as it spans > additional cache lines. In other words, it seems like this might be > comparing the performance of memcpy+cache no-memcpy+cachemiss. Which > is better, and is it actually measurable? Is it possible that adding > this functionality actually has zero measurable impact on performance? > Given the complexity this adds, it'd be nice to see some numbers to > help make the argument, or perhaps reasoning that's more sophisticated > than my own napkin thoughts here. I've moved these improvements to this branch while we wait for additional argumentation: https://git.zx2c4.com/wintun/log/?h=sr/api-improvements From facboy at gmail.com Wed Apr 14 09:40:28 2021 From: facboy at gmail.com (Christopher Ng) Date: Wed, 14 Apr 2021 10:40:28 +0100 Subject: Problems with Windows client over PulseSecure VPN In-Reply-To: References: <9f621ce6-ec3d-0641-c359-756d0ad36f65@gmail.com> <6a01b182-a98f-1736-676f-d0811f6de086@gmail.com> Message-ID: not sure why this happens on my machine, but changing the command to PostUp = powershell -Command "& {Start-Process -FilePath \"c:\program files\wireguard\wg.exe\" -ArgumentList \"set my-tunnel listen-port 0\"}" works for me and doesn't hang the Wireguard UI On Tue, 23 Mar 2021 at 11:01, Christopher Ng wrote: > > this sort of works for me too, the only problem is 'wg set' never > returns (even on the CLI) so the tunnel activation hangs in > 'activating' waiting for it to return, which it never does. this is > on 0.3.9 in windows > > On Wed, 3 Mar 2021 at 10:56, Jason A. Donenfeld wrote: > > > > Hey Peter, > > > > I had a strange idea for how to fix this without requiring > > recompilation or removal of that code. > > > > 1) Enable DangerousScriptExecution: > > https://git.zx2c4.com/wireguard-windows/about/docs/adminregistry.md#hklmsoftwarewireguarddangerousscriptexecution > > > > 2) Add a PostUp line to your [Interface] section: > > > > PostUp = wg set %WIREGUARD_TUNNEL_NAME% listen-port 0 > > > > 3) Try it and tell me if it works? > > > > Regards, > > Jason From wireguard at sneits.fi Wed Apr 14 18:00:18 2021 From: wireguard at sneits.fi (Osku Sneits) Date: Wed, 14 Apr 2021 21:00:18 +0300 Subject: freebsd - cpu consumption? Message-ID: Dear all, has anyone else noticed the CPU consumption on FreeBSD kernel Wireguard? For my test link, there is a net speed of 200 Mbit/s. On esxi based host, transferring inside Wireguard tunnel, full speed takes about 90% of xeon d-1541 host. Doing this on CentOS 7, takes less than 20% of the same host. From stefan.haller at stha.de Wed Apr 14 18:43:37 2021 From: stefan.haller at stha.de (Stefan Haller) Date: Wed, 14 Apr 2021 20:43:37 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour Message-ID: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> Hello everyone! Today I tried switching to the if_wg kernel module. I observed that the behaviour of the tunnel interface was changed to drop the POINTTOPOINT and MULTICAST flags (8801509656e9). For some reason the bird2 routing daemon is not picking up my interface if there is only a /32 address configured and I manually add host routes over the wg interface. This broke my wireguard mesh setup and I wanted to find out ways to get it back into a working state. Luckily, a look into the git history showed up change 0adab0e961c6e that I find really useful (and also quite smart). I can simply say `ifconfig wg0 link1` to get the POINTTOPOINT behaviour back. Unfortunately, most routing protocols seem to rely on multicast traffic (e.g. OSPF, Babel, at least with default settings). bird2 will not pick up my interface, because the MULTICAST flag is missing. I tested a simple change that you can also find at the end of this email. The link1 flag will not only toggle the POINTTOPOINT flag, but additionally also toggles the MULTICAST flag. I am not really experienced with kernel and network stack code, but to me it makes sense to mark the interface as multicast capable in a peer-to-peer setting (if you use this, you will most likely set AllowedIPs to 0.0.0.0/0, ::/0 anyway). Is such a change sensible? I tested the change for my specific use case and everything seems to be working again (without broader changes to the configuration otherwise necessary). I do not want to imply that the current behaviour is wrong, because I simply don't know much about the topic. If someone else is using dynamic routing protocols over p2p wireguard tunnels successfully, I appreciate pointers into the right direction :) Kind regards, Stefan diff --git a/src/if_wg.c b/src/if_wg.c index ca54476..414a641 100644 --- a/src/if_wg.c +++ b/src/if_wg.c @@ -2910,9 +2910,9 @@ wg_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) case SIOCSIFFLAGS: if ((ifp->if_flags & IFF_LINK0) || !(ifp->if_flags & IFF_LINK1)) - ifp->if_flags &= ~IFF_POINTOPOINT; + ifp->if_flags &= ~IFF_POINTOPOINT & ~IFF_MULTICAST; else if (ifp->if_flags & IFF_LINK1) - ifp->if_flags |= IFF_POINTOPOINT; + ifp->if_flags |= IFF_POINTOPOINT | IFF_MULTICAST; ifp->if_flags &= ~(IFF_LINK0 | IFF_LINK1 | IFF_LINK2); if (ifp->if_flags & IFF_UP) From Jason at zx2c4.com Wed Apr 14 20:19:12 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Wed, 14 Apr 2021 14:19:12 -0600 Subject: Problems with Windows client over PulseSecure VPN In-Reply-To: References: <9f621ce6-ec3d-0641-c359-756d0ad36f65@gmail.com> <6a01b182-a98f-1736-676f-d0811f6de086@gmail.com> Message-ID: Sounds like you probably have an older version of wg.exe somewhere with higher precedence in your PATH. Perhaps C:\windows\system32? From Jason at zx2c4.com Wed Apr 14 20:21:28 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Wed, 14 Apr 2021 14:21:28 -0600 Subject: freebsd - cpu consumption? In-Reply-To: References: Message-ID: Hi Osku, We'll switch to using FreeBSD's opencrypto at some point, at which point the performance will improve. Right now we're using boring unoptimized reference implementations. See https://lists.freebsd.org/pipermail/freebsd-hackers/2021-March/057076.html for more info. So far nobody has stepped up to contribute code there. Jason From Jason at zx2c4.com Wed Apr 14 20:24:20 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Wed, 14 Apr 2021 14:24:20 -0600 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> Message-ID: Hi Stefan, WireGuard does not do multicast, so we probably won't set that flag. You'll want to use babble over unicast anyway. As far as the `ifconfig wg0 link1` trick I added yesterday goes... I'm not totally convinced I'll keep that yet for the next snapshot. Does bird completely ignore interfaces without it? Is there no setting to change that? Ptp isn't quite a correct match for WireGuard, so having that flag to satisfy a misbehaving userspace seems like a bummer. Have you looked everywhere within bird first to see if there's another way? Jason From facboy at gmail.com Wed Apr 14 21:17:59 2021 From: facboy at gmail.com (Christopher Ng) Date: Wed, 14 Apr 2021 22:17:59 +0100 Subject: Problems with Windows client over PulseSecure VPN In-Reply-To: References: <9f621ce6-ec3d-0641-c359-756d0ad36f65@gmail.com> <6a01b182-a98f-1736-676f-d0811f6de086@gmail.com> Message-ID: ah good call, there was an old version there! now works fine with the vanilla PostUp you suggested. On Wed, 14 Apr 2021 at 21:19, Jason A. Donenfeld wrote: > > Sounds like you probably have an older version of wg.exe somewhere > with higher precedence in your PATH. Perhaps C:\windows\system32? From stefan.haller at stha.de Wed Apr 14 21:50:45 2021 From: stefan.haller at stha.de (Stefan Haller) Date: Wed, 14 Apr 2021 23:50:45 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> Message-ID: <87371254-15f1-494b-8740-38071d7f7d68@stha.de> Hi Jason, Thanks for your clarification. I understand that setting this flag would be a false promise to userspace, because generally Wireguard is point-to-multipoint and doesn't copy messages to multiple peers (which is not exactly necessary in my case, where only a single peer is configured on both sides). I just wanted to ensure that the introduced change was intentional before looking into other directions, hence my question. On Wed, Apr 14, 2021 at 02:24:20PM -0600, Jason A. Donenfeld wrote: > Does bird completely ignore interfaces without it? Is there no setting > to change that? At least a brief look at the code suggests this: [1] The Babel protocol seems to rely on well-known *link-local* IPv6 multicast addresses. I did not find anything related to unicast "hello" messages in the RFC or in the implementations. (OSPF is similar, but as far as I remember unicast hellos are explicitly allowed.) One odd thing I noticed: On Linux (5.11.13-arch1-1, so quite recent), the interface does not list the MULTICAST flag and the interface is still used by bird: # ip l show dev wg1 4: wg1: mtu 1400 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 I will have a closer look why it doesn't work on FreeBSD but the same thing works on Linux. I am probably missing something important. Kind regards, Stefan [1]: https://gitlab.nic.cz/labs/bird/-/blob/9c41e1ca3e93d4498eaa085139caf1545e08c1d8/proto/babel/babel.c#L1662 From toke at toke.dk Wed Apr 14 22:14:04 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Thu, 15 Apr 2021 00:14:04 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <87371254-15f1-494b-8740-38071d7f7d68@stha.de> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> Message-ID: <874kg8ldjn.fsf@toke.dk> Stefan Haller writes: > Hi Jason, > > Thanks for your clarification. I understand that setting this flag would > be a false promise to userspace, because generally Wireguard is > point-to-multipoint and doesn't copy messages to multiple peers (which > is not exactly necessary in my case, where only a single peer is > configured on both sides). > > I just wanted to ensure that the introduced change was intentional > before looking into other directions, hence my question. > > On Wed, Apr 14, 2021 at 02:24:20PM -0600, Jason A. Donenfeld wrote: >> Does bird completely ignore interfaces without it? Is there no setting >> to change that? > > At least a brief look at the code suggests this: [1] > > The Babel protocol seems to rely on well-known *link-local* IPv6 > multicast addresses. I did not find anything related to unicast "hello" > messages in the RFC or in the implementations. (OSPF is similar, but > as far as I remember unicast hellos are explicitly allowed.) > > One odd thing I noticed: On Linux (5.11.13-arch1-1, so quite recent), > the interface does not list the MULTICAST flag and the interface is > still used by bird: > > # ip l show dev wg1 > 4: wg1: mtu 1400 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 > > I will have a closer look why it doesn't work on FreeBSD but the same thing > works on Linux. I am probably missing something important. That's because the babel protocol code is checking for Bird's internal MULTICAST flag, which is set like: else if (fl & IFF_POINTOPOINT) /* PtP */ f.flags |= IF_MULTICAST; else if (fl & IFF_BROADCAST) /* Broadcast */ f.flags |= IF_MULTIACCESS | IF_BROADCAST | IF_MULTICAST; so it needs either the OS-level POINTOPOINT or the BROADCAST flag set. Wireguard interfaces on Linux has POINTOPOINT which is enough for Bird. And yeah, for now Babel only speaks multicast; the spec does allow for unicast communication, but the code in Bird doesn't implement that yet (I'm the author of the Babel implementation in Bird). Even for unicast, Babel still needs multicast for discovery, but in the case of Wireguard that could be replaced by reading the peers directly from the Wireguard kernel module. Add in updating of Wireguard AllowedIPs, and presto, there's you completely dynamic mesh requiring only a single wg interface on each peer :) Quite happy to review Bird patches if someone wants to hack on this, BTW, but otherwise it's on my "eventually" list :P -Toke From Jason at zx2c4.com Thu Apr 15 04:30:44 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Wed, 14 Apr 2021 22:30:44 -0600 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <874kg8ldjn.fsf@toke.dk> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> Message-ID: Hey Toke, Regarding POINTTOPOINT flag in Linux vs FreeBSD -- apparently FreeBSD routes everything differently simply by virtue of the interface having that flag, whereas on Linux, PTP routing mode is only switched on if you actually add an address with a dest peer. So for FreeBSD, the different routing seemed somewhat disruptive, so I stopped setting that flag in a recent snapshot release. Hey Stefan, Looking at bird's source code (iface.c), it looks like bird will only look at IFF flags if you fail to specify the interface type in the config file. Can you try *not changing to link1/ptp mode* and then setting the type flag in your bird config? Specifically: interface [instance ] { ... type [broadcast|bcast|pointopoint|ptp| nonbroadcast|nbma|pointomultipoint|ptmp]; If you set `type ptmp` or `type nbma` or something, and see if that will do the trick for you? I'd like to _not_ release this link1 hack/trick if possible. Thanks, Jason From toke at toke.dk Thu Apr 15 09:42:27 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Thu, 15 Apr 2021 11:42:27 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> Message-ID: <87im4nkhoc.fsf@toke.dk> "Jason A. Donenfeld" writes: > Hey Toke, > > Regarding POINTTOPOINT flag in Linux vs FreeBSD -- apparently FreeBSD > routes everything differently simply by virtue of the interface having > that flag, whereas on Linux, PTP routing mode is only switched on if > you actually add an address with a dest peer. So for FreeBSD, the > different routing seemed somewhat disruptive, so I stopped setting > that flag in a recent snapshot release. Ah, of course that would be different... > Hey Stefan, > > Looking at bird's source code (iface.c), it looks like bird will only > look at IFF flags if you fail to specify the interface type in the > config file. Can you try *not changing to link1/ptp mode* and then > setting the type flag in your bird config? Specifically: > > interface [instance ] { > ... > type [broadcast|bcast|pointopoint|ptp| > nonbroadcast|nbma|pointomultipoint|ptmp]; This is from the OSPF protocol code, though, so it won't work for Babel. -Toke From stefan.haller at stha.de Thu Apr 15 11:36:53 2021 From: stefan.haller at stha.de (Stefan Haller) Date: Thu, 15 Apr 2021 13:36:53 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <874kg8ldjn.fsf@toke.dk> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> Message-ID: <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> Hi Toke, On Thu, Apr 15, 2021 at 12:14:04AM +0200, Toke H?iland-J?rgensen wrote: > That's because the babel protocol code is checking for Bird's internal > MULTICAST flag, which is set like: > > else if (fl & IFF_POINTOPOINT) /* PtP */ > f.flags |= IF_MULTICAST; > else if (fl & IFF_BROADCAST) /* Broadcast */ > f.flags |= IF_MULTIACCESS | IF_BROADCAST | IF_MULTICAST; > > so it needs either the OS-level POINTOPOINT or the BROADCAST flag set. > Wireguard interfaces on Linux has POINTOPOINT which is enough for Bird. That explains a lot. I expected something like this, but did not have time yet to look more closely. > And yeah, for now Babel only speaks multicast; the spec does allow for > unicast communication, but the code in Bird doesn't implement that yet > (I'm the author of the Babel implementation in Bird). Even for unicast, > Babel still needs multicast for discovery, but in the case of Wireguard > that could be replaced by reading the peers directly from the Wireguard > kernel module. Add in updating of Wireguard AllowedIPs, and presto, > there's you completely dynamic mesh requiring only a single wg interface > on each peer :) Overall, this sounds like a great idea. Having to create so many wireguard p2p tunnels to form a mesh is quite cumbersome. Using Wireguards AllowedIPs as an alternative to the kernel routing table sounds useful. The peer discovery could also be useful outside of the babel protocol implementation (even though it will always be quite non-standard). One could probably assume that the first configured v6/128 and v4/32 IPs belong to the directly connected peer. > Quite happy to review Bird patches if someone wants to hack on this, > BTW, but otherwise it's on my "eventually" list :P While I am interested and it sounds like a great opportunity to learn cool new things I don't know a lot about yet, I have to see if I am actually up to the task. :) Anyway, I think there is an agreement that it is better to add specific support for Wireguard interfaces in bird instead of changing the interface flags. Kind regards, Stefan From toke at toke.dk Thu Apr 15 12:22:38 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Thu, 15 Apr 2021 14:22:38 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> Message-ID: <87czuvka9d.fsf@toke.dk> Stefan Haller writes: > Hi Toke, > > On Thu, Apr 15, 2021 at 12:14:04AM +0200, Toke H?iland-J?rgensen wrote: >> That's because the babel protocol code is checking for Bird's internal >> MULTICAST flag, which is set like: >> >> else if (fl & IFF_POINTOPOINT) /* PtP */ >> f.flags |= IF_MULTICAST; >> else if (fl & IFF_BROADCAST) /* Broadcast */ >> f.flags |= IF_MULTIACCESS | IF_BROADCAST | IF_MULTICAST; >> >> so it needs either the OS-level POINTOPOINT or the BROADCAST flag set. >> Wireguard interfaces on Linux has POINTOPOINT which is enough for Bird. > > That explains a lot. I expected something like this, but did not have > time yet to look more closely. > >> And yeah, for now Babel only speaks multicast; the spec does allow for >> unicast communication, but the code in Bird doesn't implement that yet >> (I'm the author of the Babel implementation in Bird). Even for unicast, >> Babel still needs multicast for discovery, but in the case of Wireguard >> that could be replaced by reading the peers directly from the Wireguard >> kernel module. Add in updating of Wireguard AllowedIPs, and presto, >> there's you completely dynamic mesh requiring only a single wg interface >> on each peer :) > > Overall, this sounds like a great idea. Having to create so many > wireguard p2p tunnels to form a mesh is quite cumbersome. Using > Wireguards AllowedIPs as an alternative to the kernel routing table > sounds useful. The peer discovery could also be useful outside of the > babel protocol implementation (even though it will always be quite > non-standard). One could probably assume that the first configured > v6/128 and v4/32 IPs belong to the directly connected peer. > >> Quite happy to review Bird patches if someone wants to hack on this, >> BTW, but otherwise it's on my "eventually" list :P > > While I am interested and it sounds like a great opportunity to learn > cool new things I don't know a lot about yet, I have to see if I am > actually up to the task. :) > > Anyway, I think there is an agreement that it is better to add specific > support for Wireguard interfaces in bird instead of changing the > interface flags. Yeah; in the meantime, you can just patch Bird; just get rid of this check in proto/babel/babel.c (there are two of them): if (!(iface->flags & IF_MULTICAST)) continue; should have no ill effects. Actually I think we could just get rid of that check entirely, it's not strictly needed for anything other than maybe filtering a very wide glob of interfaces. I'll send a patch... -Toke From toke at toke.dk Thu Apr 15 13:44:50 2021 From: toke at toke.dk (=?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?=) Date: Thu, 15 Apr 2021 15:44:50 +0200 Subject: [PATCH] babel: Drop check for IF_MULTICAST interface flag Message-ID: <20210415134450.197661-1-toke@toke.dk> The babel protocol code was checking interfaces for the IF_MULTICAST flag and refusing to run if this isn't present. However, there are cases where this flag doesn't correspond to the actual capability of sending multicast packets. For instance, Wireguard interfaces on FreeBSD doesn't set the required flags, but Babel will run just fine over such an interface given the right configuration. Since we're also checking for the presence of a link-local addresses right below the flag check, we don't really need it. So let's just drop the check and trust that users will only configure Babel on interfaces that can handle the traffic. Reported-by: Stefan Haller Signed-off-by: Toke H?iland-J?rgensen --- proto/babel/babel.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/proto/babel/babel.c b/proto/babel/babel.c index 4b6b9d7f9f6f..297b86b06a46 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -1658,10 +1658,6 @@ babel_if_notify(struct proto *P, unsigned flags, struct iface *iface) if (!(iface->flags & IF_UP)) return; - /* We only speak multicast */ - if (!(iface->flags & IF_MULTICAST)) - return; - /* Ignore ifaces without link-local address */ if (!iface->llv6) return; @@ -1736,10 +1732,6 @@ babel_reconfigure_ifaces(struct babel_proto *p, struct babel_config *cf) if (!(iface->flags & IF_UP)) continue; - /* Ignore non-multicast ifaces */ - if (!(iface->flags & IF_MULTICAST)) - continue; - /* Ignore ifaces without link-local address */ if (!iface->llv6) continue; -- 2.31.1 From sbrown at ewol.com Thu Apr 15 14:02:14 2021 From: sbrown at ewol.com (Steve Brown) Date: Thu, 15 Apr 2021 10:02:14 -0400 Subject: Keep alive being sent when PersistentKeepalive = 0 Message-ID: <7a8e0f8f25c43effb17b01e6344678ba9c6462a6.camel@ewol.com> I have no PersistentKeepalive set, but the peer gets sent a keep alive every 60 seconds anyway. This is verified by the both the wireguard log on the sending side and firewall log on the receiving side. The peer is nat'd and sends its own keep alive every 15 seconds. wg showconf doesn't show a keep alive value for the peer. This isn't a problem other than a little noise in the log. The packet gets dumped by the peer's firewall. I'm running openwrt with kernel 5.10.23. Steve From Jason at zx2c4.com Thu Apr 15 17:11:17 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Thu, 15 Apr 2021 11:11:17 -0600 Subject: Keep alive being sent when PersistentKeepalive = 0 In-Reply-To: <7a8e0f8f25c43effb17b01e6344678ba9c6462a6.camel@ewol.com> References: <7a8e0f8f25c43effb17b01e6344678ba9c6462a6.camel@ewol.com> Message-ID: Keepalives are sent sometimes in response to protocol events. The difference is that these types aren't "persistent". So likely there's nothing to worry about here. Jason From Jason at zx2c4.com Thu Apr 15 17:22:57 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Thu, 15 Apr 2021 11:22:57 -0600 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> Message-ID: Hi Stefan, Sounds like Toke has come up with the optimal solution, so I think I'll drop the "link1" patch/hack. One thing I was wondering though, mostly for my own curiosity, is what config you're using that shows the problem, and how does the problem manifest? I just put this in bird.conf: router id 192.168.88.2; protocol babel { interface "wg0" { type wired; port 1234; }; }; And then I ran: # pkg install bird2 # bird -d -c bird.conf And I didn't see any troubling error messages. But maybe it's more subtle than that? Jason From toke at toke.dk Thu Apr 15 17:53:14 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Thu, 15 Apr 2021 19:53:14 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> Message-ID: <87sg3rigdx.fsf@toke.dk> "Jason A. Donenfeld" writes: > Hi Stefan, > > Sounds like Toke has come up with the optimal solution, so I think > I'll drop the "link1" patch/hack. > > One thing I was wondering though, mostly for my own curiosity, is what > config you're using that shows the problem, and how does the problem > manifest? > > I just put this in bird.conf: > > router id 192.168.88.2; > protocol babel { > interface "wg0" { > type wired; > port 1234; > }; > }; > > And then I ran: > > # pkg install bird2 > # bird -d -c bird.conf > > And I didn't see any troubling error messages. But maybe it's more > subtle than that? I think it would just silently ignore the interface; does it say anything about running on it? You could also see if there's any traffic, there should be UDP packets with dest port 6696 appearing if it does run... -Toke From Jason at zx2c4.com Fri Apr 16 00:05:03 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Thu, 15 Apr 2021 18:05:03 -0600 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <87sg3rigdx.fsf@toke.dk> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> Message-ID: Hey Stefan, Toke, I spent the day playing around with bird and babel and sorted out FreeBSD's v6 situation. Basically, ff00::/8 addresses are treated differently, and they're blocked unless the interface sets IFF_MULTICAST. So I've committed https://git.zx2c4.com/wireguard-freebsd/commit/?id=a7a84a17faf784857f076e37aa4818f6b6c12a95 to do this. We _could_ also set IFF_BROADCAST, which would translate to babel enabling IF_MULTICAST, but so far I can't see how this would help anything real, and combined with Toke's patch -- https://bird.network.cz/pipermail/bird-users/2021-April/015415.html -- I think we're actually in a good situation. Seeing that this now works, I've also dropped the link1 hack and put that in a branch in case it becomes useful later. Bernhard (decke@) is CC'd here in case he'd like to get some of this into ports early for your use case. Specifically, this involves: 1) https://bird.network.cz/pipermail/bird-users/2021-April/015415.html for the bird2 package. 2) https://git.zx2c4.com/wireguard-freebsd/patch/?id=a7a84a17faf784857f076e37aa4818f6b6c12a95 for the wireguard-kmod package. Stefan - please let me know if those work for you. In my testing thus far, things seem to work for me. Long term, we'll certainly want to have Toke's planned support for direct WireGuard peering inside of bird. Regards, Jason From Jason at zx2c4.com Fri Apr 16 05:21:14 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Thu, 15 Apr 2021 23:21:14 -0600 Subject: [ANNOUNCE] wireguard-freebsd snapshot v0.0.20210415 is available Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, An experimental snapshot, v0.0.20210415, of WireGuard for FreeBSD has been been tagged in the git repository. At this time this code is new, unvetted, possibly buggy, and should be considered "experimental". It might contain security issues. We gladly welcome your testing and bug reports, but do keep in mind that this code is new, so some caution should be exercised at the moment for using it in mission critical environments. == Changes == * if_wg: remove peer marshalling from get request This is a pretty massive code cleanup that decreases memory usage on `wg show` and also simplifies the code considerably, replacing 312 lines with 94. * if_wg: allow debugging with `ifconfig wg0 debug` Users can now run `ifconfig wg0 debug` to see the usual debugging messages in dmesg, just like on Linux with dynamic_debug. * if_wg: don't check return value of WAITOK Tiny cleanup. * if_wg: do not allow ioctl to race with clone_destroy This works around some bugs in the core FreeBSD kernel networking stack, where clone_destroy races with ioctls and sometimes even packet transmission. There are upstream patches pending to fix this, but for now it looks like every driver works around it in its own way, so for now we go with an approach most similar to the if_tuntap.c driver. * if_wg: set multicast flag Following extensive discussion [1] with Stefan Haller and Toke H?iland- J?rgensen, the IFF_MULTICAST option is now set on the interface, so that bird can send packets using babel. It turns out that FreeBSD forbids v6 multicast address destinations, even when used in a unicast context, if this flag isn't set, which differs from Linux semantics. This patch combined with [2] from Toke to upstream bird will allow WireGuard to work with bird as it did when we previously used IFF_POINTTOPOINT (which had its own problems). I sent a patch to the FreeBSD port of bird here [3] so that hopefully if_wg is functional with bird and babel not before too long. [1] https://lore.kernel.org/wireguard/CAHmME9qerb3LhuJfQ2L=J9gz=vGXV47qUAwC3-LYMTWVWnn62Q at mail.gmail.com/T/ [2] https://bird.network.cz/pipermail/bird-users/2021-April/015415.html [3] https://lists.freebsd.org/pipermail/freebsd-ports/2021-April/120867.html This snapshot contains commits from: Jason A. Donenfeld. The source repository is available at the usual location: git clone https://git.zx2c4.com/wireguard-freebsd This snapshot is available in compressed tarball form: https://git.zx2c4.com/wireguard-freebsd/snapshot/wireguard-freebsd-0.0.20210415.tar.xz SHA2-256: 40dae82e27b37e236f761a2e84f892fe10ee183227287e7affdd5be571a1e612 Thank you, Jason Donenfeld -----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEEq5lC5tSkz8NBJiCnSfxwEqXeA64FAmB5HrUQHGphc29uQHp4 MmM0LmNvbQAKCRBJ/HASpd4DrhkhEACgF5svIroYhrH23L9/XU9ndBmOqM9kc+ke nx7w0x+jWdfOOvCRMbuS9LFLLTBfP+/y4igPpDVYi6Njl20YamcfmTa6mqNizpIg TA5OCYKqOZSPEQynPz4pNtqFhT+ZqxquDgnNQB6RL9PfmVzDT4Jvk4/8IFF5f3ls hjLa14cpL2MkrGvYbM5WPUo/3zXkHA6Ai1uzAAa8HmxZI8Dl3/L4EEoUXO6VeUK7 KI+EyelH7N8ZLZNKBTT7j0CcTtA26zbMY8VtNlAJBiYaSpktSaox3JcTtS9nRFU8 HOoherDDP4weHMcrr9En2VVkMGHK5F9EvgbpDGPGObLcXY8u/AU9xZTBxn7es7Go AYtkOcr6q1QvIEtnzQT8hYr8umhq31QnGUuA50LhuSCl5WOPJWAU0+Y9CnszNeyO KPgou/8zAE7VdUk4js3MXKXm5PbEEFMotqkluXHXYg8SRqyD+lYAi5G+wfc3iFgo U//8HkAPOr81O32Y+clLsTkmM270QRiQ90UTOBAZPDBjHR+ScUzUa6uZ8GKWasjO U8xMPw2t1DR1gYvPFQZ6O7VxVp4dL34GNmgrPFr9+pfsNyZ5nEMCYr2IBrHNwN2H zSWDYyw8ySs053IWZOMIlXGDvKp4xqI0AK8ioHQk3kY87UtNrM1BN1kvQAz7CIhS vvsCQq6Tdg== =bgfK -----END PGP SIGNATURE----- From stefan.haller at stha.de Fri Apr 16 08:57:46 2021 From: stefan.haller at stha.de (Stefan Haller) Date: Fri, 16 Apr 2021 10:57:46 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> Message-ID: <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> Hi Jason, On Thu, Apr 15, 2021 at 06:05:03PM -0600, Jason A. Donenfeld wrote: > I spent the day playing around with bird and babel and sorted out > FreeBSD's v6 situation. Basically, ff00::/8 addresses are treated > differently, and they're blocked unless the interface sets > IFF_MULTICAST. So I've committed > https://git.zx2c4.com/wireguard-freebsd/commit/?id=a7a84a17faf784857f076e37aa4818f6b6c12a95 > to do this. That is also what I observed. Without IFF_MULTICAST I see the following error in bird's log: bird[8045]: babel1: Socket error: IPV6_MULTICAST_IF: Can't assign requested address bird[8045]: babel1: Cannot open socket for wg1 > Stefan - please let me know if those work for you. In my testing thus > far, things seem to work for me. After applying Toke's patch for bird and your Wireguard patch in a7a84a17faf784 everything is working as before (with minor config changes). Just for the record, my previous configuration looked like this (using POINTTOPOINT interfaces, I use ifconfig to set the peer address): > [Interface] > ... > Address = fe80::5/64 > PostUp = ifconfig %i inet 169.254.42.5/32 169.254.42.2 My new configuration without POINTTOPOINT, but only a single peer directly attached to other side of the wg tunnel: > [Interface] > ... > Address = 169.254.42.5/32, fe80::5/64 > PostUp = route add 169.254.42.2 -iface %i So for me everything works as expected again. A big thanks to all of you for figuring out what was going wrong and getting it fixed so quickly. Kind regards, Stefan From toke at toke.dk Fri Apr 16 09:35:46 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Fri, 16 Apr 2021 11:35:46 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> Message-ID: <87a6pyinbh.fsf@toke.dk> Stefan Haller writes: > Hi Jason, > > On Thu, Apr 15, 2021 at 06:05:03PM -0600, Jason A. Donenfeld wrote: >> I spent the day playing around with bird and babel and sorted out >> FreeBSD's v6 situation. Basically, ff00::/8 addresses are treated >> differently, and they're blocked unless the interface sets >> IFF_MULTICAST. So I've committed >> https://git.zx2c4.com/wireguard-freebsd/commit/?id=a7a84a17faf784857f076e37aa4818f6b6c12a95 >> to do this. > > That is also what I observed. Without IFF_MULTICAST I see the following > error in bird's log: > > bird[8045]: babel1: Socket error: IPV6_MULTICAST_IF: Can't assign requested address > bird[8045]: babel1: Cannot open socket for wg1 > >> Stefan - please let me know if those work for you. In my testing thus >> far, things seem to work for me. > > After applying Toke's patch for bird and your Wireguard patch in > a7a84a17faf784 everything is working as before (with minor config > changes). > > Just for the record, my previous configuration looked like this (using > POINTTOPOINT interfaces, I use ifconfig to set the peer address): > >> [Interface] >> ... >> Address = fe80::5/64 >> PostUp = ifconfig %i inet 169.254.42.5/32 169.254.42.2 > > My new configuration without POINTTOPOINT, but only a single peer > directly attached to other side of the wg tunnel: > >> [Interface] >> ... >> Address = 169.254.42.5/32, fe80::5/64 >> PostUp = route add 169.254.42.2 -iface %i > > So for me everything works as expected again. A big thanks to all of you for > figuring out what was going wrong and getting it fixed so quickly. Great! You're welcome :) -Toke From m.muenz at spam-fetish.org Fri Apr 16 12:14:02 2021 From: m.muenz at spam-fetish.org (Muenz, Michael) Date: Fri, 16 Apr 2021 14:14:02 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> Message-ID: <8e80a3e4-4118-6273-a5e3-0ec7692fcb17@spam-fetish.org> Am 16.04.2021 um 10:57 schrieb Stefan Haller: > After applying Toke's patch for bird and your Wireguard patch in > a7a84a17faf784 everything is working as before (with minor config > changes). > > Just for the record, my previous configuration looked like this (using > POINTTOPOINT interfaces, I use ifconfig to set the peer address): Hi, Just following the conversation and also had a quick chat with Jason via IRC (mimugmail). We had a couple of reports that with latest change of removing PTP which breaks OSPF. In our case (OPNsense) we rely on FRR so it would be nice to have a generic solution without toucingh routing software itself. > So for me everything works as expected again. A big thanks to all of you for > figuring out what was going wrong and getting it fixed so quickly. > > I set up a lab and will do some testing with version before and after the change, maybe for FRR it's enough to set NBMA or similar. Best, Michael From lists at lonnie.abelbeck.com Fri Apr 16 13:56:04 2021 From: lists at lonnie.abelbeck.com (Lonnie Abelbeck) Date: Fri, 16 Apr 2021 08:56:04 -0500 Subject: T-Mobile 4G/5G CGNAT vs WireGuard tunnel jitter In-Reply-To: <15541873-A1D6-417E-A3B7-121DE0D90F22@lonnie.abelbeck.com> References: <0BDB7408-22AC-4643-975E-1B5AC3AFADD9@lonnie.abelbeck.com> <20210410205951.14f93435@natsu> <15541873-A1D6-417E-A3B7-121DE0D90F22@lonnie.abelbeck.com> Message-ID: > On Apr 10, 2021, at 11:12 AM, Lonnie Abelbeck wrote: > >> On Apr 10, 2021, at 10:59 AM, Roman Mamedov wrote: >> >> On Sat, 10 Apr 2021 10:27:23 -0500 >> Lonnie Abelbeck wrote: >> >>> I have been testing the T-Mobile Home Internet (4G/5G fixed wireless) service to a Linode VM via WireGuard. >>> >>> The TMHI service uses CGNAT plus an additional NAT in their modem/gateway with a MTU of 1420, so WireGuard is configured with a 1340 MTU. >> >> Do they provide IPv6? I see mentions that yes, but with incoming connections >> blocked. Might still work for WG. > > Hi Roman, > > TMHI uses IPv6 for their CGNAT, but AFAIK their current firmware does not support IPv6 on the ethernet ports (I disable their WiFi). > > But if (when) they support IPv6, establishing the WireGuard tunnel over IPv6 would be great, and back to a 1420 MTU for WireGuard. A quick update, TMHI does support IPv6 via DHCPv6, but sadly has the same MTU (1420) as IPv4 has, and IPv6 is firewalled inbound (as Roman said). I now have the WireGuard transport endpoints using IPv6 over TMHI, but the jitter with low bitrate traffic still occurs as with the IPv4 transport endpoint setup. Other than that, it works quite well. Lonnie From Jason at zx2c4.com Fri Apr 16 15:17:26 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 16 Apr 2021 09:17:26 -0600 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <8e80a3e4-4118-6273-a5e3-0ec7692fcb17@spam-fetish.org> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> <8e80a3e4-4118-6273-a5e3-0ec7692fcb17@spam-fetish.org> Message-ID: Hi Michael, On 4/16/21, Muenz, Michael wrote: > Am 16.04.2021 um 10:57 schrieb Stefan Haller: >> After applying Toke's patch for bird and your Wireguard patch in >> a7a84a17faf784 everything is working as before (with minor config >> changes). >> >> Just for the record, my previous configuration looked like this (using >> POINTTOPOINT interfaces, I use ifconfig to set the peer address): > > > Hi, > > Just following the conversation and also had a quick chat with Jason via > IRC (mimugmail). > We had a couple of reports that with latest change of removing PTP which > breaks OSPF. > In our case (OPNsense) we rely on FRR so it would be nice to have a > generic solution without toucingh routing software itself. > > >> So for me everything works as expected again. A big thanks to all of you >> for >> figuring out what was going wrong and getting it fixed so quickly. >> >> > > I set up a lab and will do some testing with version before and after > the change, maybe for FRR it's enough to set NBMA or similar. Could you send a minimal bird config that's broken so that I can reproduce the problem and debug? Jason From Jason at zx2c4.com Fri Apr 16 17:45:02 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 16 Apr 2021 11:45:02 -0600 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> <8e80a3e4-4118-6273-a5e3-0ec7692fcb17@spam-fetish.org> Message-ID: On Fri, Apr 16, 2021 at 9:17 AM Jason A. Donenfeld wrote: > > I set up a lab and will do some testing with version before and after > > the change, maybe for FRR it's enough to set NBMA or similar. > > Could you send a minimal bird config that's broken so that I can > reproduce the problem and debug? With the latest version -- https://lists.zx2c4.com/pipermail/wireguard/2021-April/006634.html -- wireguardd seems to be working out of the box with frr. From rostma at poisk.co.ua Fri Apr 16 07:49:40 2021 From: rostma at poisk.co.ua (=?UTF-8?B?0KDQvtC80LDQvSDQodGC0YDQvtCz0LDQvdC+0LI=?=) Date: Fri, 16 Apr 2021 10:49:40 +0300 Subject: Wireguard speed Message-ID: <0d460501-14a1-370f-554e-f6d19bf55329@poisk.co.ua> Help with speed in the wireguard vpn. There are 2 routers linksys with openwrt 19.07.7. And the wireguard tunnel between them. If the link between the Wan of both routers is 1 gigabit/s, then the speed inside the tunnel is 300-370 Mb/s, which I think is good. I understand that these are simple routers, not servers. This is done for the test. In real life, the speed between the feasts will be limited to 100 Mb/s. I decided to do a test and lowered the speed on the switch ports (routers connected through a gigabit switch) to 100 Mb/s. After that, the speed between routers through wg is 30-40 Mb/s. Processors on routers are loaded at 25-25%. Once I am on a channel in 100 Mb/s. received speeds between routers 85-90 Mb/s. So such speeds are possible on the wireguard. After that, something went wrong with the electricity and the routers were rebooted. I didn't have time to save the settings. From memory, I set everything up again, but now I can't achieve high speeds... I measure iperf3 installed on the routers themselves. How can I get ~ 80-90 Mb/s again via 100 Mb/s channel? I will be grateful for any help in setting the speed wireguard p.s Forgive my English. I do not know him well and use a translator From frank at harz.behrens.de Sat Apr 17 13:08:25 2021 From: frank at harz.behrens.de (Frank Behrens) Date: Sat, 17 Apr 2021 15:08:25 +0200 Subject: [PATCH] freebsd: Implement selection of FIB (routing table) for tunneled packets In-Reply-To: References: <6aa0fd33-4c0d-557f-f7f5-5f5406b3a273@harz.behrens.de> <89952f1f-5296-7f87-9345-0f5c087ee3ae@harz.behrens.de> <9a60aab2-788e-ba1d-96ac-cf6d08bf4bd1@harz.behrens.de> Message-ID: Hi Jason! Am 13.04.2021 um 04:57 schrieb Jason A. Donenfeld: > Can you let me know if this fixes the issue? > > https://git.zx2c4.com/wireguard-freebsd/commit/?id=cdb18ebf44a5babb57cddccd6b33e9f19cfdf365 It looks better, but a little too much optimized. ;-) The fix is in https://git.zx2c4.com/wireguard-freebsd/log/?h=fb/fib3 Best regards, Frank -- Frank Behrens Osterwieck, Germany From Jason at zx2c4.com Sat Apr 17 15:00:02 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Sat, 17 Apr 2021 09:00:02 -0600 Subject: [PATCH] freebsd: Implement selection of FIB (routing table) for tunneled packets In-Reply-To: References: <6aa0fd33-4c0d-557f-f7f5-5f5406b3a273@harz.behrens.de> <89952f1f-5296-7f87-9345-0f5c087ee3ae@harz.behrens.de> <9a60aab2-788e-ba1d-96ac-cf6d08bf4bd1@harz.behrens.de> Message-ID: Hi Frank, On 4/17/21, Frank Behrens wrote: > Hi Jason! > > Am 13.04.2021 um 04:57 schrieb Jason A. Donenfeld: >> Can you let me know if this fixes the issue? >> >> https://git.zx2c4.com/wireguard-freebsd/commit/?id=cdb18ebf44a5babb57cddccd6b33e9f19cfdf365 > > It looks better, but a little too much optimized. ;-) > > The fix is in https://git.zx2c4.com/wireguard-freebsd/log/?h=fb/fib3 Does this actually fix or change anything? Don't new sockets have fib==0 right out of the gate already? Jason From frank at harz.behrens.de Sat Apr 17 15:23:17 2021 From: frank at harz.behrens.de (Frank Behrens) Date: Sat, 17 Apr 2021 17:23:17 +0200 Subject: [PATCH] freebsd: Implement selection of FIB (routing table) for tunneled packets In-Reply-To: References: <6aa0fd33-4c0d-557f-f7f5-5f5406b3a273@harz.behrens.de> <89952f1f-5296-7f87-9345-0f5c087ee3ae@harz.behrens.de> <9a60aab2-788e-ba1d-96ac-cf6d08bf4bd1@harz.behrens.de> Message-ID: <3d610bc1-84c9-1ad5-a366-3c8b77efb858@harz.behrens.de> Am 17.04.2021 um 17:00 schrieb Jason A. Donenfeld: > Does this actually fix or change anything? Don't new sockets have > fib==0 right out of the gate already? New sockets inherit the fib from the current process. If you create the wg interface from a process with different fib, that fib will also be used for this socket. Probably the difference in code is not very important for the case of a system default boot. But that may vary for jails/vnets with different default fibs. In my test case the sequence > setfib 1 ifconfig wg0 create .... > ifconfig wg0 tunnelfib 0 failed. Frank -- Frank Behrens Osterwieck, Germany From Jason at zx2c4.com Sat Apr 17 16:49:08 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Sat, 17 Apr 2021 10:49:08 -0600 Subject: [PATCH] freebsd: Implement selection of FIB (routing table) for tunneled packets In-Reply-To: <3d610bc1-84c9-1ad5-a366-3c8b77efb858@harz.behrens.de> References: <6aa0fd33-4c0d-557f-f7f5-5f5406b3a273@harz.behrens.de> <89952f1f-5296-7f87-9345-0f5c087ee3ae@harz.behrens.de> <9a60aab2-788e-ba1d-96ac-cf6d08bf4bd1@harz.behrens.de> <3d610bc1-84c9-1ad5-a366-3c8b77efb858@harz.behrens.de> Message-ID: Hi Frank, On Sat, Apr 17, 2021 at 9:23 AM Frank Behrens wrote: > > > Am 17.04.2021 um 17:00 schrieb Jason A. Donenfeld: > > Does this actually fix or change anything? Don't new sockets have > > fib==0 right out of the gate already? > > New sockets inherit the fib from the current process. If you create > the wg interface from a process with different fib, that fib will also > be used for this socket. Probably the difference in code is not very > important for the case of a system default boot. But that may vary > for jails/vnets with different default fibs. > > In my test case the sequence > > setfib 1 ifconfig wg0 create .... > > ifconfig wg0 tunnelfib 0 > failed. Ahh, interesting. I applied your patch. Thanks for the persistence in getting this feature working well. Jason From toke at toke.dk Mon Apr 19 13:55:18 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Mon, 19 Apr 2021 15:55:18 +0200 Subject: [PATCH] babel: Drop check for IF_MULTICAST interface flag In-Reply-To: References: <20210415134450.197661-1-toke@toke.dk> Message-ID: <87y2degz09.fsf@toke.dk> Ondrej Zajicek writes: > On Thu, Apr 15, 2021 at 03:44:50PM +0200, Toke H?iland-J?rgensen wrote: >> The babel protocol code was checking interfaces for the IF_MULTICAST flag >> and refusing to run if this isn't present. However, there are cases where >> this flag doesn't correspond to the actual capability of sending multicast >> packets. For instance, Wireguard interfaces on FreeBSD doesn't set the >> required flags, but Babel will run just fine over such an interface given >> the right configuration. > > Hi > > Is there a reason why to disregard the IF_MULTICAST flag? This seems to me > more like a bug in FreeBSD Wireguard implementation that should be fixed > there. Is this flag properly checked on Linux, or is there some reason why > the flag is missing? We did fix Wireguard - see: https://git.zx2c4.com/wireguard-freebsd/patch/?id=a7a84a17faf784857f076e37aa4818f6b6c12a95 However, that didn't help, Babel still refused to use the interface. Looking at krt-sock.c, the IF_MULTICAST flag is only set on IFF_POINTOPOINT or IFF_BROADCAST on bsd. The Linux code (in netlink.c) has a further: if (fl & IFF_MULTICAST) f.flags |= IF_MULTICAST; beneath the other flag checks, so maybe that's really what's missing on the BSD side? > Routing protocols in BIRD generally follow this flag (and perhaps use > it to switch to unicast-only mode), so i do not see why Babel should > behave differently. Yeah, I do believe I originally copied that check from one of the other protocols. I can see how it makes sense to check the flag and change operation mode based on it, but given that Babel doesn't do that it just seems kinda redundant? If the interface *actually* is unable to send multicast packets, the subsequent socket operation is going to fail, and at least that produces an error message instead of just silently ignoring the interface like that flag check does :) -Toke From toke at toke.dk Mon Apr 19 18:24:38 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Mon, 19 Apr 2021 20:24:38 +0200 Subject: [PATCH] babel: Drop check for IF_MULTICAST interface flag In-Reply-To: References: <20210415134450.197661-1-toke@toke.dk> <87y2degz09.fsf@toke.dk> Message-ID: <87im4igmjd.fsf@toke.dk> Ondrej Zajicek writes: > On Mon, Apr 19, 2021 at 03:55:18PM +0200, Toke H?iland-J?rgensen wrote: >> Ondrej Zajicek writes: >> >> > Is there a reason why to disregard the IF_MULTICAST flag? This seems to me >> > more like a bug in FreeBSD Wireguard implementation that should be fixed >> > there. Is this flag properly checked on Linux, or is there some reason why >> > the flag is missing? >> >> We did fix Wireguard - see: >> https://git.zx2c4.com/wireguard-freebsd/patch/?id=a7a84a17faf784857f076e37aa4818f6b6c12a95 >> >> However, that didn't help, Babel still refused to use the interface. >> Looking at krt-sock.c, the IF_MULTICAST flag is only set on >> IFF_POINTOPOINT or IFF_BROADCAST on bsd. The Linux code (in netlink.c) >> has a further: >> >> if (fl & IFF_MULTICAST) >> f.flags |= IF_MULTICAST; >> >> beneath the other flag checks, so maybe that's really what's missing on >> the BSD side? > > Yes, it is likely that it is an issue in sysdep/bsd code. Alright, I'll send a patch for that then :) >> > Routing protocols in BIRD generally follow this flag (and perhaps use >> > it to switch to unicast-only mode), so i do not see why Babel should >> > behave differently. >> >> Yeah, I do believe I originally copied that check from one of the other >> protocols. I can see how it makes sense to check the flag and change >> operation mode based on it, but given that Babel doesn't do that it just >> seems kinda redundant? If the interface *actually* is unable to send >> multicast packets, the subsequent socket operation is going to fail, and >> at least that produces an error message instead of just silently >> ignoring the interface like that flag check does :) > > Well, i am OK with generating a warning in cases of non-matching interface > type, instead of ignoring it silently. (In contrast to iface down or missing > lladdr, which should be silent, as it may correct later.) OK, fine with me; I'll send an updated patch that adds a warning instead of dropping the check... -Toke From toke at toke.dk Mon Apr 19 18:25:46 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Mon, 19 Apr 2021 20:25:46 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <87a6pyinbh.fsf@toke.dk> References: <9afe6dc9-5c53-4c25-b09f-5b4cf6ff8046@stha.de> <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> <87a6pyinbh.fsf@toke.dk> Message-ID: <87fszmgmhh.fsf@toke.dk> Toke H?iland-J?rgensen writes: > Stefan Haller writes: > >> Hi Jason, >> >> On Thu, Apr 15, 2021 at 06:05:03PM -0600, Jason A. Donenfeld wrote: >>> I spent the day playing around with bird and babel and sorted out >>> FreeBSD's v6 situation. Basically, ff00::/8 addresses are treated >>> differently, and they're blocked unless the interface sets >>> IFF_MULTICAST. So I've committed >>> https://git.zx2c4.com/wireguard-freebsd/commit/?id=a7a84a17faf784857f076e37aa4818f6b6c12a95 >>> to do this. >> >> That is also what I observed. Without IFF_MULTICAST I see the following >> error in bird's log: >> >> bird[8045]: babel1: Socket error: IPV6_MULTICAST_IF: Can't assign requested address >> bird[8045]: babel1: Cannot open socket for wg1 >> >>> Stefan - please let me know if those work for you. In my testing thus >>> far, things seem to work for me. >> >> After applying Toke's patch for bird and your Wireguard patch in >> a7a84a17faf784 everything is working as before (with minor config >> changes). >> >> Just for the record, my previous configuration looked like this (using >> POINTTOPOINT interfaces, I use ifconfig to set the peer address): >> >>> [Interface] >>> ... >>> Address = fe80::5/64 >>> PostUp = ifconfig %i inet 169.254.42.5/32 169.254.42.2 >> >> My new configuration without POINTTOPOINT, but only a single peer >> directly attached to other side of the wg tunnel: >> >>> [Interface] >>> ... >>> Address = 169.254.42.5/32, fe80::5/64 >>> PostUp = route add 169.254.42.2 -iface %i >> >> So for me everything works as expected again. A big thanks to all of you for >> figuring out what was going wrong and getting it fixed so quickly. > > Great! You're welcome :) Stefan, any chance you could test this patch to Bird (*instead of* the previous one that removes the check from the Babel code)? -Toke diff --git a/sysdep/bsd/krt-sock.c b/sysdep/bsd/krt-sock.c index c2faa23dd44f..cd89544063c7 100644 --- a/sysdep/bsd/krt-sock.c +++ b/sysdep/bsd/krt-sock.c @@ -665,6 +665,9 @@ krt_read_ifinfo(struct ks_msg *msg, int scan) else f.flags |= IF_MULTIACCESS; /* NBMA */ + if (fl & IFF_MULTICAST) + f.flags |= IF_MULTICAST; + iface = if_update(&f); if (!scan) From stefan.haller at stha.de Mon Apr 19 19:41:31 2021 From: stefan.haller at stha.de (Stefan Haller) Date: Mon, 19 Apr 2021 21:41:31 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: <87fszmgmhh.fsf@toke.dk> References: <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> <87a6pyinbh.fsf@toke.dk> <87fszmgmhh.fsf@toke.dk> Message-ID: On Mon, Apr 19, 2021 at 08:25:46PM +0200, Toke H?iland-J?rgensen wrote: > Stefan, any chance you could test this patch to Bird (*instead of* the > previous one that removes the check from the Babel code)? The patch is working on FreeBSD 13.0. Kind regards, Stefan From Jason at zx2c4.com Mon Apr 19 19:42:58 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Mon, 19 Apr 2021 13:42:58 -0600 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: References: <87371254-15f1-494b-8740-38071d7f7d68@stha.de> <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> <87a6pyinbh.fsf@toke.dk> <87fszmgmhh.fsf@toke.dk> Message-ID: On Mon, Apr 19, 2021 at 1:42 PM Stefan Haller wrote: > > On Mon, Apr 19, 2021 at 08:25:46PM +0200, Toke H?iland-J?rgensen wrote: > > Stefan, any chance you could test this patch to Bird (*instead of* the > > previous one that removes the check from the Babel code)? > > The patch is working on FreeBSD 13.0. Just FYI, the previous patch was added to ports, so I wanted to double check that you removed that previous patch before adding this one... From stefan.haller at stha.de Mon Apr 19 19:49:56 2021 From: stefan.haller at stha.de (Stefan Haller) Date: Mon, 19 Apr 2021 21:49:56 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: References: <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> <87a6pyinbh.fsf@toke.dk> <87fszmgmhh.fsf@toke.dk> Message-ID: On Mon, Apr 19, 2021 at 01:42:58PM -0600, Jason A. Donenfeld wrote: > On Mon, Apr 19, 2021 at 1:42 PM Stefan Haller wrote: > > > > On Mon, Apr 19, 2021 at 08:25:46PM +0200, Toke H?iland-J?rgensen wrote: > > > Stefan, any chance you could test this patch to Bird (*instead of* the > > > previous one that removes the check from the Babel code)? > > > > The patch is working on FreeBSD 13.0. > > Just FYI, the previous patch was added to ports, so I wanted to double > check that you removed that previous patch before adding this one... Yes, I did remove the old patch (in proto/babel/babel.c): > root at fbsd:/usr/ports/net/bird2 # git status . > On branch main > Changes not staged for commit: > (use "git add/rm ..." to update what will be committed) > (use "git restore ..." to discard changes in working directory) > deleted: files/patch-proto_babel_babel.c > > Untracked files: > (use "git add ..." to include in what will be committed) > files/patch-sysdep_bsd_krt-sock.c Kind regards, Stefan From toke at toke.dk Mon Apr 19 21:46:16 2021 From: toke at toke.dk (Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?=) Date: Mon, 19 Apr 2021 23:46:16 +0200 Subject: FreeBSD if_wg POINTTOPOINT and MULTICAST behaviour In-Reply-To: References: <874kg8ldjn.fsf@toke.dk> <7be52421-db0d-4971-99b0-ce76307d1a33@stha.de> <87sg3rigdx.fsf@toke.dk> <15c3483d-546b-4c86-aca7-9ab37945791e@stha.de> <87a6pyinbh.fsf@toke.dk> <87fszmgmhh.fsf@toke.dk> Message-ID: <871rb6gd7b.fsf@toke.dk> Stefan Haller writes: > On Mon, Apr 19, 2021 at 01:42:58PM -0600, Jason A. Donenfeld wrote: >> On Mon, Apr 19, 2021 at 1:42 PM Stefan Haller wrote: >> > >> > On Mon, Apr 19, 2021 at 08:25:46PM +0200, Toke H?iland-J?rgensen wrote: >> > > Stefan, any chance you could test this patch to Bird (*instead of* the >> > > previous one that removes the check from the Babel code)? >> > >> > The patch is working on FreeBSD 13.0. >> >> Just FYI, the previous patch was added to ports, so I wanted to double >> check that you removed that previous patch before adding this one... > > Yes, I did remove the old patch (in proto/babel/babel.c): > >> root at fbsd:/usr/ports/net/bird2 # git status . >> On branch main >> Changes not staged for commit: >> (use "git add/rm ..." to update what will be committed) >> (use "git restore ..." to discard changes in working directory) >> deleted: files/patch-proto_babel_babel.c >> >> Untracked files: >> (use "git add ..." to include in what will be committed) >> files/patch-sysdep_bsd_krt-sock.c Awesome! Thank you for testing! :) -Toke From toke at toke.dk Mon Apr 19 22:26:53 2021 From: toke at toke.dk (=?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?=) Date: Tue, 20 Apr 2021 00:26:53 +0200 Subject: [PATCH] sysdep/bsd: propagate OS-level IFF_MULTICAST to internal IF_MULTICAST flag Message-ID: <20210419222653.55983-1-toke@toke.dk> The BSD code did not propagate the OS-level IFF_MULTICAST flag to the Bird-internal IF_MULTICAST flag, which causes problems with Wireguard interfaces on FreeBSD. The Linux sysdep code does propagate the flag already, so just copy over the same check and flag update. Tested-by: Stefan Haller Signed-off-by: Toke H?iland-J?rgensen --- sysdep/bsd/krt-sock.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sysdep/bsd/krt-sock.c b/sysdep/bsd/krt-sock.c index c2faa23dd44f..cd89544063c7 100644 --- a/sysdep/bsd/krt-sock.c +++ b/sysdep/bsd/krt-sock.c @@ -665,6 +665,9 @@ krt_read_ifinfo(struct ks_msg *msg, int scan) else f.flags |= IF_MULTIACCESS; /* NBMA */ + if (fl & IFF_MULTICAST) + f.flags |= IF_MULTICAST; + iface = if_update(&f); if (!scan) -- 2.31.1 From santiago at crfreenet.org Mon Apr 19 13:03:54 2021 From: santiago at crfreenet.org (Ondrej Zajicek) Date: Mon, 19 Apr 2021 15:03:54 +0200 Subject: [PATCH] babel: Drop check for IF_MULTICAST interface flag In-Reply-To: <20210415134450.197661-1-toke@toke.dk> References: <20210415134450.197661-1-toke@toke.dk> Message-ID: On Thu, Apr 15, 2021 at 03:44:50PM +0200, Toke H?iland-J?rgensen wrote: > The babel protocol code was checking interfaces for the IF_MULTICAST flag > and refusing to run if this isn't present. However, there are cases where > this flag doesn't correspond to the actual capability of sending multicast > packets. For instance, Wireguard interfaces on FreeBSD doesn't set the > required flags, but Babel will run just fine over such an interface given > the right configuration. Hi Is there a reason why to disregard the IF_MULTICAST flag? This seems to me more like a bug in FreeBSD Wireguard implementation that should be fixed there. Is this flag properly checked on Linux, or is there some reason why the flag is missing? Routing protocols in BIRD generally follow this flag (and perhaps use it to switch to unicast-only mode), so i do not see why Babel should behave differently. -- Elen sila lumenn' omentielvo Ondrej 'Santiago' Zajicek (email: santiago at crfreenet.org) OpenPGP encrypted e-mails preferred (KeyID 0x11DEADC3, wwwkeys.pgp.net) "To err is human -- to blame it on a computer is even more so." From santiago at crfreenet.org Mon Apr 19 16:32:59 2021 From: santiago at crfreenet.org (Ondrej Zajicek) Date: Mon, 19 Apr 2021 18:32:59 +0200 Subject: [PATCH] babel: Drop check for IF_MULTICAST interface flag In-Reply-To: <87y2degz09.fsf@toke.dk> References: <20210415134450.197661-1-toke@toke.dk> <87y2degz09.fsf@toke.dk> Message-ID: On Mon, Apr 19, 2021 at 03:55:18PM +0200, Toke H?iland-J?rgensen wrote: > Ondrej Zajicek writes: > > > Is there a reason why to disregard the IF_MULTICAST flag? This seems to me > > more like a bug in FreeBSD Wireguard implementation that should be fixed > > there. Is this flag properly checked on Linux, or is there some reason why > > the flag is missing? > > We did fix Wireguard - see: > https://git.zx2c4.com/wireguard-freebsd/patch/?id=a7a84a17faf784857f076e37aa4818f6b6c12a95 > > However, that didn't help, Babel still refused to use the interface. > Looking at krt-sock.c, the IF_MULTICAST flag is only set on > IFF_POINTOPOINT or IFF_BROADCAST on bsd. The Linux code (in netlink.c) > has a further: > > if (fl & IFF_MULTICAST) > f.flags |= IF_MULTICAST; > > beneath the other flag checks, so maybe that's really what's missing on > the BSD side? Yes, it is likely that it is an issue in sysdep/bsd code. > > Routing protocols in BIRD generally follow this flag (and perhaps use > > it to switch to unicast-only mode), so i do not see why Babel should > > behave differently. > > Yeah, I do believe I originally copied that check from one of the other > protocols. I can see how it makes sense to check the flag and change > operation mode based on it, but given that Babel doesn't do that it just > seems kinda redundant? If the interface *actually* is unable to send > multicast packets, the subsequent socket operation is going to fail, and > at least that produces an error message instead of just silently > ignoring the interface like that flag check does :) Well, i am OK with generating a warning in cases of non-matching interface type, instead of ignoring it silently. (In contrast to iface down or missing lladdr, which should be silent, as it may correct later.) -- Elen sila lumenn' omentielvo Ondrej 'Santiago' Zajicek (email: santiago at crfreenet.org) OpenPGP encrypted e-mails preferred (KeyID 0x11DEADC3, wwwkeys.pgp.net) "To err is human -- to blame it on a computer is even more so." From peter.georg at physik.uni-regensburg.de Mon Apr 19 20:51:25 2021 From: peter.georg at physik.uni-regensburg.de (Peter Georg) Date: Mon, 19 Apr 2021 22:51:25 +0200 Subject: [PATCH compat] Update and improve detection of CentOS Stream 8 Message-ID: <20210419205125.2835077-1-peter.georg@physik.uni-regensburg.de> CentOS Stream 8 by now (4.18.0-301.1.el8) reports RHEL_MINOR=5. The current RHEL 8 minor release is still 3. RHEL 8.4 is in beta. Replace equal comparison by greater equal to (hopefully) be a little bit more future proof. Signed-off-by: Peter Georg --- src/compat/compat-asm.h | 2 +- src/compat/compat.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compat/compat-asm.h b/src/compat/compat-asm.h index 7067afd..fde21da 100644 --- a/src/compat/compat-asm.h +++ b/src/compat/compat-asm.h @@ -15,7 +15,7 @@ #define ISRHEL7 #elif RHEL_MAJOR == 8 #define ISRHEL8 -#if RHEL_MINOR == 4 +#if RHEL_MINOR >= 4 #define ISCENTOS8S #endif #endif diff --git a/src/compat/compat.h b/src/compat/compat.h index 0227204..26a6d7e 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -16,7 +16,7 @@ #define ISRHEL7 #elif RHEL_MAJOR == 8 #define ISRHEL8 -#if RHEL_MINOR == 4 +#if RHEL_MINOR >= 4 #define ISCENTOS8S #endif #endif -- 2.31.1 From Jason at zx2c4.com Fri Apr 23 01:52:53 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Thu, 22 Apr 2021 19:52:53 -0600 Subject: [PATCH compat] Update and improve detection of CentOS Stream 8 In-Reply-To: <20210419205125.2835077-1-peter.georg@physik.uni-regensburg.de> References: <20210419205125.2835077-1-peter.georg@physik.uni-regensburg.de> Message-ID: Applied, thanks! https://git.zx2c4.com/wireguard-linux-compat/commit/?id=2cf9543bedc68b29760f85622ae228a256082ac6 Jason From cascardo at canonical.com Fri Apr 23 17:19:37 2021 From: cascardo at canonical.com (Thadeu Lima de Souza Cascardo) Date: Fri, 23 Apr 2021 14:19:37 -0300 Subject: [PATCH 0/1] wireguard-linux-compat: fix build on Ubuntu 18.04 Message-ID: <20210423171938.583964-1-cascardo@canonical.com> Back in February, we were looking into backporting a commit to Ubuntu 18.04 GA kernel that introduces skb_mark_not_on_list. That would break wireguard-linux-compat when building against that kernel, so a change was submitted as that commit would be introduced soon. However, that plan did not work out as intended, and since then, wireguard-linux-compat CI has been broken on Ubuntu 18.04. Jason, thanks for bringing that up to our attention, and sorry that we broke wireguard-linux-compat CI. We will resend a fix as soon as we sort out when that commit will be applied. Thanks. Cascardo. Thadeu Lima de Souza Cascardo (1): Revert "compat: skb_mark_not_on_list will be backported to Ubuntu 18.04" src/compat/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.27.0 From cascardo at canonical.com Fri Apr 23 17:19:38 2021 From: cascardo at canonical.com (Thadeu Lima de Souza Cascardo) Date: Fri, 23 Apr 2021 14:19:38 -0300 Subject: [PATCH 1/1] Revert "compat: skb_mark_not_on_list will be backported to Ubuntu 18.04" In-Reply-To: <20210423171938.583964-1-cascardo@canonical.com> References: <20210423171938.583964-1-cascardo@canonical.com> Message-ID: <20210423171938.583964-2-cascardo@canonical.com> This reverts commit cad80597c7947f0def83caf8cb56aff0149c83a8. Because this commit has not been backported so far, due to the implications of building Ubuntu's backport of wireguard in a timely manner. For now, reverting this fix would allow wireguard-linux-compat CI to work on Ubuntu 18.04. A different fix or the same one can be applied again when the time is right. Signed-off-by: Thadeu Lima de Souza Cascardo --- src/compat/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compat/compat.h b/src/compat/compat.h index 26a6d7ec2d6b..91d4388824ea 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -823,7 +823,7 @@ static __always_inline void old_rcu_barrier(void) #define COMPAT_CANNOT_DEPRECIATE_BH_RCU #endif -#if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 19, 10) && LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0) && !defined(ISRHEL8) && !defined(ISUBUNTU1804)) || LINUX_VERSION_CODE < KERNEL_VERSION(4, 14, 217) +#if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 19, 10) && LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0) && !defined(ISRHEL8)) || LINUX_VERSION_CODE < KERNEL_VERSION(4, 14, 217) static inline void skb_mark_not_on_list(struct sk_buff *skb) { skb->next = NULL; -- 2.27.0 From Jason at zx2c4.com Fri Apr 23 20:32:00 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 23 Apr 2021 14:32:00 -0600 Subject: [PATCH 0/1] wireguard-linux-compat: fix build on Ubuntu 18.04 In-Reply-To: <20210423171938.583964-1-cascardo@canonical.com> References: <20210423171938.583964-1-cascardo@canonical.com> Message-ID: Hi Cascardo, Thanks for the patch. I appreciate you fixing this. Hopefully next time there's not a several month period of CI being broken and me having to bug apw about it. :) Jason From Jason at zx2c4.com Fri Apr 23 20:33:33 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 23 Apr 2021 14:33:33 -0600 Subject: [PATCH 1/1] Revert "compat: skb_mark_not_on_list will be backported to Ubuntu 18.04" In-Reply-To: <20210423171938.583964-2-cascardo@canonical.com> References: <20210423171938.583964-1-cascardo@canonical.com> <20210423171938.583964-2-cascardo@canonical.com> Message-ID: Thanks. Applied as: https://git.zx2c4.com/wireguard-linux-compat/commit/?id=1edffe201ad08d70fe74290b657a929cd4229df5 From Jason at zx2c4.com Sat Apr 24 17:15:57 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Sat, 24 Apr 2021 13:15:57 -0400 Subject: [ANNOUNCE] wireguard-freebsd snapshot v0.0.20210424 is available Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, An experimental snapshot, v0.0.20210424, of WireGuard for FreeBSD has been been tagged in the git repository. At this time this code is new, unvetted, possibly buggy, and should be considered "experimental". It might contain security issues. We gladly welcome your testing and bug reports, but do keep in mind that this code is new, so some caution should be exercised at the moment for using it in mission critical environments. == Changes == This is our biggest snapshot ever, aside from the initial one, with a pretty crazy amount of code changed/rewritten/reworked: TODO.md | 14 +- src/compat.h | 15 +- src/crypto.c | 92 + src/crypto.h | 9 + src/if_wg.c | 3076 +++++++++++++++------------------ src/selftest/allowedips.c | 625 +++++++ src/selftest/cookie.c | 291 ++++ src/selftest/counter.c | 97 ++ src/support.h | 62 +- src/version.h | 2 +- src/wg_cookie.c | 430 +++-- src/wg_cookie.h | 92 +- src/wg_noise.c | 1447 ++++++++++------ src/wg_noise.h | 199 +-- 14 files changed, 3756 insertions(+), 2695 deletions(-) In addition to adding automated selftests for some of the more critical and finicky algorithms, we've squashed numerous bugs basically everywhere, added proper reference counting, epoch usage, and locking where it makes sense, and fixed up several critical state machines. Because of the size of this snapshot, I'm not going to annotate every commit like usual, but if you're curious, many of the commits in the git repo have quite a bit of commentary. Hopefully this is a massive step toward getting this kmod complete and stable. With all the churn, I would expect some whonkiness, at least in the short term, but I don't anticipate anything we won't be able to address quickly. This snapshot contains commits from: Matt Dunwoodie, Jason A. Donenfeld, and Frank Behrens. The source repository is available at the usual location: git clone https://git.zx2c4.com/wireguard-freebsd This snapshot is available in compressed tarball form: https://git.zx2c4.com/wireguard-freebsd/snapshot/wireguard-freebsd-0.0.20210424.tar.xz SHA2-256: bfa8d3c4854f802567db51a89fdea32e7bf98a3d54a525359bdb240f2e864735 Thank you, Jason Donenfeld -----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEEq5lC5tSkz8NBJiCnSfxwEqXeA64FAmCEUjQQHGphc29uQHp4 MmM0LmNvbQAKCRBJ/HASpd4DrkhxD/9R/coAcfFsTW0pCLDCshVFXa3egquRQ8rm cdkzHqJ1gBELE7W77xWllKkZ1+zejMqzJg0KYOn4ybJv083CYij1htMD9KEr/aCb HKUbYVptuzGIBC0D+m39GFrkSstdoypRApUPixI5J69JJCCUQtraOJ5pMF8tKllw Yi5r/axfqZA5NhJKx0Z8HZeKCZWfUX7+ht9GuoYi6Xaw5ZCJF+YrG2g5tX8vebhO Mcnb6AgQx8AUeGDf6z2m3yEH8N3hqbNyoTd8lCSo2zztsbF52H8wV1b8tiVK2Ebd cwEpGM4XTCl+lWi+u9k5YhfTd5AyN4xIRReLbBdjt4EaC6abGe5G4/FpukrBgHOL lqhDfnT3gJxB5yc1p15tXgfnXlSYZiULnwTmOkQi5ZZH70cuypwNq8v9GfromOJJ PjNKrNH5Jpi9QeIQX2IVLyBeU8cfHldvulOvudfrwSN8FDw5qOzG4NUxS880LSSk HER8OvwV6PmMFskvhvVxKJfpJXqxm3bwnDjBhEwvQiNQYHLfNxSkg+EC/61ztqmg qO7gxTxzCRrX0Uz9F/27bVfqO02noeaZ907K54UvlPgAkYowKCBOrPbBxlZkiNA9 p8IU5d069yRbLnoPk/Iu3inw1HNmjUgwmc73wpzwO0M7rZKhY+lPJC1bkHYYGfvg lvLtFGbBKg== =MJeK -----END PGP SIGNATURE----- From Jason at zx2c4.com Sat Apr 24 20:44:22 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Sat, 24 Apr 2021 16:44:22 -0400 Subject: [ANNOUNCE] wireguard-tools v1.0.20210424 released Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hello, A new version, v1.0.20210424, of wireguard-tools has been tagged in the git repository, containing various required userspace utilities, such as the wg(8) and wg-quick(8) commands and documentation. == Changes == * wg-quick: freebsd: check for socket using -S, not -f * wg-quick: freebsd: do not assume point-to-point interface flag * wg-quick: freebsd: use ifconfig for determining if interface is up * wg-quick: kill route monitor when loop terminates These three fixes affect FreeBSD, OpenBSD, and Darwin, and are little cleanups around wg-quick. This release contains commits from: Jason A. Donenfeld. As always, the source is available at https://git.zx2c4.com/wireguard-tools/ and information about the project is available at https://www.wireguard.com/ . This release is available in compressed tarball form here: https://git.zx2c4.com/wireguard-tools/snapshot/wireguard-tools-1.0.20210424.tar.xz SHA2-256: A PGP signature of that file decompressed is available here: https://git.zx2c4.com/wireguard-tools/snapshot/wireguard-tools-1.0.20210424.tar.asc Signing key: AB9942E6D4A4CFC3412620A749FC7012A5DE03AE Remember to unxz the tarball before verifying the signature. If you're a package maintainer, please bump your package version. If you're a user, the WireGuard team welcomes any and all feedback on this latest version. Finally, WireGuard development thrives on donations. By popular demand, we have a webpage for this: https://www.wireguard.com/donations/ Thank you, Jason Donenfeld -----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEEq5lC5tSkz8NBJiCnSfxwEqXeA64FAmCEgyEQHGphc29uQHp4 MmM0LmNvbQAKCRBJ/HASpd4DrtGEEADJzVkTM19/miDZ3G89FpxtZU5/g+d9F47o 8gJSns642FJS0cC6HllqlYLL7bxgvBkXRVPkmnDGoDrqgrJWB+bnOKFOdtfKXv1f Ar7QREL+2ZLfCw9NgkFWwBS3NxxCFbyHm8AjK1vAAcjISRpH3GJDzjspuzmfKqzs bvyQ8U05Tkbvc0J6lLd3A4ei1q+JxJXTgoneWviVNEuDn5Jj8/oEqoRAJbN8d8pq pB5C7DgbfNnPiX/2bnw+frskUgwU043n7fYHr41mCUTdKTst26DrPEOgR0ebiKU2 XGlBgHziJJoeciealqXRhPb+DFKj1FvfEozvcuYQbAPUvs1qX44gWDVcUBEXX5TJ GAh1vVSebLuwM17J4J5zVw66pKjTnZaNIJRPA8qdaHB1/uB/ZZNnYl6DPd+OaJTN 170/HaId2iGtROGljOnojGeu/CMx+VEwv+L1WDfr9ubgd1p+N7m3YpJgsP6JutyX b9Ff3mbERy3aKmH37CYFeQS3TG8e5pHfMJR2QwV2M1PWK0BleWE1vHk9MdImy4u8 rghju4MBEb16xdJbJcqillKG/F0j/AQdlbVbwItO57iwfT07V6NNuElpaUizwcps obfYjqLFQ0wt0nEWTB5OxON2+E4c0YgbcZrDJFMmoYxXwlD27K8IjJM4E0zzg0vA a6IU8oxLqg== =36NL -----END PGP SIGNATURE----- From Jason at zx2c4.com Sat Apr 24 20:54:48 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Sat, 24 Apr 2021 16:54:48 -0400 Subject: [ANNOUNCE] wireguard-linux-compat v1.0.20210424 released Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hello, A new version, v1.0.20210424, of the backported WireGuard kernel module for 3.10 <= Linux <= 5.5.y has been tagged in the git repository. == Changes == * compat: icmp_ndo_send functions were backported extensively Backports for Greg's kernels. * compat: update and improve detection of CentOS Stream 8 We now support RHEL 8.3 and >= 8.4, since Stream targets 8.5, rather than 8.4 beta. * Revert "compat: skb_mark_not_on_list will be backported to Ubuntu 18.04" Canonical broke CI for two months, which is now fixed. This release contains commits from: Jason A. Donenfeld, Thadeu Lima de Souza Cascardo, and Peter Georg. As always, the source is available at https://git.zx2c4.com/wireguard-linux-compat/ and information about the project is available at https://www.wireguard.com/ . This version is available in compressed tarball form here: https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-1.0.20210424.tar.xz SHA2-256: 8839139a53733bd20602e39cfc679a8176747dae8fe9f9c7fce28f8fba71abde A PGP signature of that file decompressed is available here: https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-1.0.20210424.tar.asc Signing key: AB9942E6D4A4CFC3412620A749FC7012A5DE03AE Remember to unxz the tarball before verifying the signature. If you're a package maintainer, please bump your package version. If you're a user, the WireGuard team welcomes any and all feedback on this latest version. Finally, WireGuard development thrives on donations. By popular demand, we have a webpage for this: https://www.wireguard.com/donations/ Thank you, Jason Donenfeld -----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEEq5lC5tSkz8NBJiCnSfxwEqXeA64FAmCEhY4QHGphc29uQHp4 MmM0LmNvbQAKCRBJ/HASpd4DrouMD/9wqagrs6jcFR99c5teyVBbUlqMxFC+4gMc EGzBQ80zsPGvYjOXUUM839PIXP+CnBox3empyITPj3kCdI4LcWxsEPDtpYoE+Igu K8pyzjf2g6leK9vy1AfTbW/azsM2rRhKO7Z0MJ2+3OyVKJsj3DzOMbOAN5EJjF+r SEkuMereJBQnuM8UvmxdWbc7ZKeUl9ux+hr0G/Cdqg5igfSGOiDpzmJTL59ojEJp FPi78B0CTyUJSvUfNt7JTLuqf2BOroOXa5Ps1gp4KeTvPvRi4lXlLG3VghA09hY2 1v/rNlOwjdPlDIrwyZkjuss69HRfkeoq3D8nZjZqV4K9hQ0rCPhiqk2wDIhO/U/q +Vv9y6vQCRzrSEUx5qq6Vmze+/r4iB3kgP41FjYxRSserumrSimIfWOTeSWsIpp8 vBjFK/4TFsXLNdrXd3ZM2TRH96ExTPvTYuPgb0gRdiYDYlkDZE+O8cBa46B1zfel GhnzQ7SRIXN4o2Pex3DljWjuoIbrmrui4+FzXY1/C61/+eAA8rUaF6bPhrp57woE JOV9on+q9f5Z1fQ7Y80fYdU0aZrdrcs3LInA1dtgaTBRx+Dk4vl8OVuavLsLA8Ce XHFiwkTFA0/z6mh28JSIEwBpr0AFyhgF/PF8IbaXRFIgKDZsfebS5BClOMZokc7a /5KA6uh/qA== =nBlG -----END PGP SIGNATURE----- From peljasz at yahoo.co.uk Sat Apr 24 10:11:50 2021 From: peljasz at yahoo.co.uk (lejeczek) Date: Sat, 24 Apr 2021 11:11:50 +0100 Subject: wgX iface as slave to a bridge - Linux References: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574.ref@yahoo.co.uk> Message-ID: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> Hi guys. Apologies, I'll bother you guys as I failed to find some better places to ask, I searched for forums etc. but failed. Can wiregurard ifaces be enslaved by LInux bridge? I tried but it did not work for me. Similarly "mavclan" - would/should wireguard work that way? What I've tried and failed was on CentOS stream with 4.18.0-294.el8.x86_64. many thanks, L. From ch at ntrv.dk Sun Apr 25 12:21:02 2021 From: ch at ntrv.dk (Chriztoffer Hansen) Date: Sun, 25 Apr 2021 14:21:02 +0200 Subject: wgX iface as slave to a bridge - Linux In-Reply-To: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> References: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574.ref@yahoo.co.uk> <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> Message-ID: > Can wiregurard ifaces be enslaved by LInux bridge? I tried > but it did not work for me. Similarly "mavclan" - > would/should wireguard work that way? Why would you want to enslave an L3-only capable interface to an L2 bridge? What is your use case behind the question? -- Chriztoffer From peljasz at yahoo.co.uk Sun Apr 25 13:13:24 2021 From: peljasz at yahoo.co.uk (lejeczek) Date: Sun, 25 Apr 2021 14:13:24 +0100 Subject: wgX iface as slave to a bridge - Linux In-Reply-To: References: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574.ref@yahoo.co.uk> <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> Message-ID: <4eeeaa84-65a9-d53e-972b-c2212babc944@yahoo.co.uk> On 25/04/2021 13:21, Chriztoffer Hansen wrote: >> Can wiregurard ifaces be enslaved by LInux bridge? I tried >> but it did not work for me. Similarly "mavclan" - >> would/should wireguard work that way? > Why would you want to enslave an L3-only capable interface to an L2 bridge? > > What is your use case behind the question? > Containers. Simple (but also can be complex too as scales easily) case where containers would be glued together and be able to communicate across nodes/hosts via wireguard tunnel/link. I'm looking at it from a 'regular' admin standpoint. Then it'd be just one wiregurard host-to-host link which all container could utilize, as oppose to separate wireguard for/in each container. many thanks, L. From mike at jazmin.com.au Sun Apr 25 05:33:41 2021 From: mike at jazmin.com.au (Mike O'Connor) Date: Sun, 25 Apr 2021 15:03:41 +0930 Subject: wgX iface as slave to a bridge - Linux In-Reply-To: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> References: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> Message-ID: Hi L. No wireguard is a layer 3 vpn, a bridge is layer2 Cheers Mike > On 25 Apr 2021, at 2:02 pm, lejeczek wrote: > > ?Hi guys. > > Apologies, I'll bother you guys as I failed to find some better places to ask, I searched for forums etc. but failed. > > Can wiregurard ifaces be enslaved by LInux bridge? I tried but it did not work for me. Similarly "mavclan" - would/should wireguard work that way? > What I've tried and failed was on CentOS stream with 4.18.0-294.el8.x86_64. > > many thanks, L. From rm at romanrm.net Sun Apr 25 14:07:31 2021 From: rm at romanrm.net (Roman Mamedov) Date: Sun, 25 Apr 2021 19:07:31 +0500 Subject: wgX iface as slave to a bridge - Linux In-Reply-To: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> References: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574.ref@yahoo.co.uk> <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> Message-ID: <20210425190731.5625f0ab@natsu> On Sat, 24 Apr 2021 11:11:50 +0100 lejeczek wrote: > Hi guys. > > Apologies, I'll bother you guys as I failed to find some > better places to ask, I searched for forums etc. but failed. > > Can wiregurard ifaces be enslaved by LInux bridge? I tried > but it did not work for me. Similarly "mavclan" - > would/should wireguard work that way? > What I've tried and failed was on CentOS stream with > 4.18.0-294.el8.x86_64. As others have replied, it is an L3 interface, not L2 which can join bridges. One solution that many use is to run an L2 tunnel over WireGuard, such as VXLAN or GRETAP. But then you lose even more MTU compared to the standard 1500. -- With respect, Roman From johnathanclarke at gmail.com Mon Apr 26 05:34:07 2021 From: johnathanclarke at gmail.com (Johnathan Clarke) Date: Mon, 26 Apr 2021 15:34:07 +1000 Subject: Fwd: Error when connecting from windows client In-Reply-To: References: Message-ID: Hi Everyone, i am getting an error unable to create wintun interface my Google Fu has not given me many results that look like they have an answer i need. Where should the WinTun files be located? should i replace them with the files from the wintun project page https://www.wintun.net/ is there away to re register the Tun Device? 2021-04-26 14:45:33.377930: [TUN] [Home] Starting WireGuard/0.3.11 (Windows 10.0.21364; amd64) 2021-04-26 14:45:33.378484: [TUN] [Home] Watching network interfaces 2021-04-26 14:45:33.382398: [TUN] [Home] Resolving DNS names 2021-04-26 14:45:33.382398: [TUN] [Home] Creating Wintun interface 2021-04-26 14:45:33.519928: [TUN] [Home] [Wintun] CreateAdapter: Creating adapter 2021-04-26 14:45:33.828328: [TUN] [Home] [Wintun] SelectDriver: Using existing driver 0.10 2021-04-26 14:45:34.289159: [TUN] [Home] [Wintun] CreateAdapter: Failed to setup adapter (status: 0x0): The operation completed successfully. (Code 0x00000000) 2021-04-26 14:45:34.289159: [TUN] [Home] [Wintun] OpenDeviceObject: Failed to connect to adapter ROOT\NET\0000 associated instance : The system cannot find the path specified. (Code 0x00000003) 2021-04-26 14:45:34.289159: [TUN] [Home] [Wintun] WintunStartSession: Failed to open adapter device object 2021-04-26 14:45:34.383133: [TUN] [Home] Unable to create Wintun interface: Error starting session: The system cannot find the path specified. 2021-04-26 14:45:34.386136: [TUN] [Home] Shutting down -- --Johnno From joshua.sjoding at scjalliance.com Tue Apr 27 01:19:06 2021 From: joshua.sjoding at scjalliance.com (Joshua Sjoding) Date: Mon, 26 Apr 2021 18:19:06 -0700 Subject: WinTun access violation error 0xc0000005 during ReceivePacket call Message-ID: Last week one of our staff encountered an access violation error in WinTun. I think this happened while WireGuard was in the process of closing the device. A WireGuard log is attached. The machine is a Lenovo ThinkPad P53 laptop. I believe it was running WireGuard 0.3.11 and WinTun 0.10. It looks like the ReceivePacket syscall caught the exception and this resulted in a WireGuard panic at [1]. I wouldn't be surprised if this was a timing issue while the device was closing. I'm not too worried about it myself, but figured I should send it along in case it's of interest. This is the only occurrence I've seen. [1] https://github.com/WireGuard/wireguard-go/blob/0.0.20210424/tun/wintun/session_windows.go#L65 Joshua Sjoding SCJ Alliance IT Specialist www.scjalliance.com -------------- next part -------------- 2021-04-22 11:44:29.740989: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:44:29.740989: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:44:36.617956: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:44:36.617956: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 11:44:36.617956: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 11:44:36.633231: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:44:47.522947: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:47.552016: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:44:47.552016: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:44:48.649683: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:44:55.025929: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:44:57.719896: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:44:57.851713: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:45:00.685240: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:45:05.823859: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:45:10.909444: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:45:11.035858: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:45:12.713902: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:45:24.745342: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:45:36.777639: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:45:40.758563: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:45:45.292220: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:45:45.410803: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:45:45.410803: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:45:49.577827: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:45:56.227049: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:45:58.391100: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:45:58.779654: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:46:01.610056: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:06.739891: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:46:11.834504: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:46:11.959075: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:46:14.153625: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:26.185739: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:27.143495: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:46:31.748224: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:46:31.770056: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:46:31.770056: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:46:38.985915: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:38.985915: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 11:46:38.985915: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 11:46:39.001790: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:42.238539: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:46:48.858506: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:46:48.890467: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:46:48.890467: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:46:49.485476: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:58.881251: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:46:59.063179: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:46:59.196201: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:47:11.863162: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:47:11.941755: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:47:11.996073: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:47:22.249445: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:47:35.049166: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:47:41.720761: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:47:47.081775: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:47:48.977956: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:47:49.005823: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:47:49.006337: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:47:59.734988: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:47:59.809441: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:47:59.879358: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:47:59.881215: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:11.661093: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:12.413456: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:48:12.534663: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:48:14.151055: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:48:22.409383: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:32.239701: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:48:32.259904: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:48:32.259904: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:48:34.114274: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:48:34.441461: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:46.473410: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:46.473410: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 11:48:46.473410: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 11:48:46.489447: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:52.088437: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:48:52.114874: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:48:52.114874: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:48:58.761359: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:49:02.198816: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:49:02.278942: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:49:02.333738: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:49:09.001181: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:49:14.845793: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:49:14.876927: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:49:14.998894: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:49:21.289110: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:49:33.581323: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:49:43.816960: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:49:44.740309: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:49:54.291663: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:49:54.314413: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:49:54.314413: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:49:56.617574: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:04.486219: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:50:04.662731: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:50:04.794672: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:50:07.625158: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:16.951176: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:50:17.033521: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:50:17.083635: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:50:19.657755: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:32.713179: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:36.779311: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:50:36.796654: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:50:36.796654: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:50:54.984869: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:54.984869: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 11:50:54.984869: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 11:50:55.001237: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:58.104322: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:50:58.137494: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:50:58.137494: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:51:08.150709: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:51:08.227231: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:51:08.539060: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:51:08.553308: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:51:20.001746: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:51:20.058053: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:51:20.183531: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:51:20.329042: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:51:31.849375: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:51:43.369388: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:51:46.882090: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:51:49.961505: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:51:53.864890: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:52:01.782809: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:52:02.215910: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:52:02.290070: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:52:02.290070: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:52:04.872933: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:52:12.918154: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:52:13.050341: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:52:15.368898: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:52:23.926712: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:52:24.058582: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:52:24.064267: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:52:27.145107: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:52:37.641041: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:52:43.845191: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:52:43.862036: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:52:43.862036: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:52:50.953472: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:03.753325: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:03.753325: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 11:53:03.753325: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 11:53:03.768444: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:03.862460: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:53:05.959414: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:53:05.989494: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:53:05.989494: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:53:16.053832: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:53:16.150582: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:53:16.297595: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:26.389577: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:53:26.517469: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:53:26.525396: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:53:27.817312: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:44.201402: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:54.697135: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:56.280630: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:54:08.664005: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:54:08.685005: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:54:08.685005: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:54:08.776925: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:54:18.946855: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:54:19.125875: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:54:19.261470: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:54:19.277202: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:54:29.622201: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:54:29.697983: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:54:29.753714: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:54:30.793075: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:54:43.336866: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:54:49.465575: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:54:49.494258: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:54:49.494258: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:54:54.857076: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:07.404829: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:07.404829: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 11:55:07.404829: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 11:55:07.420965: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:09.543699: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:55:09.581576: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:55:09.581576: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:55:19.616861: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:55:19.798609: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:55:19.930204: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:55:19.944561: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:30.367914: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:55:30.425598: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:55:30.550408: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:55:32.492792: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:43.497071: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:54.760949: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:00.285819: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:56:07.304634: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:10.836045: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:56:10.858160: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:56:10.858160: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:56:17.800702: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:21.062909: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:56:21.238363: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:56:21.369733: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:56:30.088910: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:31.734769: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:56:31.810339: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:56:31.866285: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:56:42.632222: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:51.681023: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:56:51.697542: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:56:51.697542: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:56:52.872391: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:06.184397: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:12.733302: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:57:12.770084: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:57:12.770084: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:57:16.680580: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:16.680883: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 11:57:16.680883: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 11:57:16.698588: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:22.756975: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:57:22.934031: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:57:23.067724: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:57:28.712647: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:33.431129: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:57:33.504488: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:57:33.563763: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:57:41.000545: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:56.104721: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:03.311701: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:58:14.916720: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:58:14.948880: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:58:14.949461: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:58:18.889623: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:25.218748: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:58:25.398343: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:58:25.787633: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:58:31.437836: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:38.075132: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:58:38.198010: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:58:38.272072: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:58:42.697603: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:55.497857: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:58.002186: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:58:58.019376: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:58:58.019376: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:59:08.297749: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:17.007588: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:59:17.042695: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:59:17.042695: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:59:20.840277: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:20.842400: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 11:59:20.842400: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 11:59:20.859271: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:27.093756: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:59:27.169232: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:59:27.225592: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:59:33.128310: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:39.986876: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:59:40.025737: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:59:40.150055: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 11:59:45.672079: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:56.427762: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:07.176206: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:09.927465: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:00:17.415577: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:19.922332: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:00:19.979472: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:00:19.979472: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:00:30.399714: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:00:30.581637: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:00:30.713400: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:00:30.727943: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:42.759874: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:42.869397: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:00:42.944347: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:00:43.001271: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:00:54.536482: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:02.791444: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:01:02.809175: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:01:02.809721: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:01:07.337338: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:18.088341: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:25.029218: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:01:25.063154: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:01:25.063154: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:01:30.376065: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:30.376302: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:01:30.376409: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:01:30.394652: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:35.093566: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:01:35.481437: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:01:37.984424: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:01:41.384099: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:48.661258: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:01:48.734265: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:01:48.796610: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:01:59.815573: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:02:13.127693: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:02:18.527877: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:02:26.631683: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:02:26.658888: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:02:26.658888: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:02:36.863742: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:02:37.045363: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:02:37.435871: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:02:43.079819: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:02:51.968678: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:02:52.026661: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:02:52.149435: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:02:53.835657: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:04.181878: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:03:04.583639: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:24.025417: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:03:24.043708: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:03:24.043708: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:03:28.039029: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:03:28.072517: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:03:28.072517: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:03:31.719412: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:31.719412: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:03:31.719412: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:03:31.735978: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:38.048341: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:03:38.229483: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:03:38.362674: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:03:42.215784: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:53.156608: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:03:53.210576: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:03:53.332725: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:03:55.015619: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:06.791290: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:18.823523: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:23.101368: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:04:28.861241: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:04:28.886983: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:04:28.886983: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:04:31.623537: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:39.156855: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:04:39.234417: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:04:39.546715: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:04:42.120053: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:49.731813: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:04:49.786670: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:04:49.908629: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:04:54.408356: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:06.951127: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:19.690667: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:05:19.751465: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:31.339195: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:05:31.357198: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:05:31.357198: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:05:31.450952: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:05:31.482084: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:05:31.482084: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:05:32.039142: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:32.039580: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:05:32.039580: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:05:32.057189: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:41.439728: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:05:41.621247: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:05:41.755811: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:05:44.071606: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:52.116578: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:05:52.195680: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:05:52.248976: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:06:17.351399: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:06:22.009882: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:06:29.131765: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:06:34.210702: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:06:34.232539: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:06:34.232539: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:06:41.415428: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:06:44.416500: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:06:44.596714: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:06:44.728804: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:06:53.447070: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:06:57.396357: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:06:57.473301: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:06:57.529073: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:07:05.734124: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:07:18.279346: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:07:27.311321: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:07:30.310689: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:07:32.233978: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:07:32.233978: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:07:32.251428: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:07:35.616243: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:07:35.639096: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:07:35.639198: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:07:35.850682: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:07:35.881500: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:07:35.881500: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:07:42.346971: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:07:45.780208: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:07:45.856644: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:07:46.171047: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:07:54.631038: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:07:58.400846: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:07:58.459506: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:07:58.580576: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:08:06.666805: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:08:18.954547: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:08:28.363502: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:08:31.238873: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:08:36.077899: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:08:36.104619: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:08:36.104619: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:08:43.270784: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:08:46.272825: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:08:46.452335: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:08:46.585882: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:08:55.815074: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:08:59.252549: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:08:59.334516: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:08:59.387893: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:09:07.846972: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:09:20.134409: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:09:29.163845: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:09:32.934434: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:09:32.934434: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:09:32.934434: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:09:32.950343: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:09:38.057396: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:09:38.081718: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:09:38.081718: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:09:38.285043: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:09:38.315290: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:09:38.315290: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:09:44.966869: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:09:48.225046: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:09:48.404128: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:09:48.539502: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:09:57.258520: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:10:01.083329: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:10:01.204151: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:10:01.284197: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:10:09.542972: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:10:21.834558: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:10:31.014852: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:10:34.118576: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:10:38.875723: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:10:38.947624: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:10:38.947624: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:10:46.150804: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:10:49.444039: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:10:49.587994: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:10:49.721365: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:10:58.183028: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:11:02.132050: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:11:02.269884: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:11:02.302525: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:11:10.473799: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:11:22.502544: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:11:31.994737: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:11:34.534702: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:11:34.534972: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:11:34.535069: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:11:34.551078: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:11:40.829423: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:11:40.847070: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:11:40.847070: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:11:40.892848: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:11:40.923643: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:11:40.923643: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:11:47.334599: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:11:51.028103: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:11:51.160100: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:11:51.272104: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:11:59.622713: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:12:03.315881: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:12:03.448408: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:12:03.750691: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:12:11.654690: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:12:23.942578: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:12:33.247777: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:12:36.486522: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:12:41.716464: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:12:41.742606: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:12:41.742606: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:12:49.030890: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:12:52.034520: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:12:52.211360: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:12:52.347460: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:13:04.650966: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:13:05.011555: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:13:05.092347: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:13:05.146990: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:13:34.425868: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:13:34.863739: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:13:54.438169: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:13:54.438169: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:13:54.456561: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:13:54.857774: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:13:54.879633: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:13:54.879633: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:14:34.460093: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:14:34.897359: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:14:43.696835: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:14:43.722761: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:14:43.722761: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:14:43.929576: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:14:43.958499: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:14:54.148142: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:14:54.459936: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:14:54.470417: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:15:04.641925: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:15:04.696761: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:15:04.819669: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:15:24.254813: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:15:37.119588: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:15:44.134309: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:15:57.414958: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:15:57.554552: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:15:57.635668: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:15:57.658803: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:15:57.658803: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:15:57.701465: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:15:57.701465: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:15:57.701465: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:15:57.721564: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:16:07.795215: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:16:07.875281: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:16:07.927696: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:16:09.222118: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:16:24.325510: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:16:27.592288: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:16:37.697208: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:16:40.386366: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:16:42.757581: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:16:49.514182: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:16:49.543496: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:16:49.543496: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:16:49.741229: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:16:49.769149: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:16:49.769149: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:16:56.325967: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:16:59.841970: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:17:00.019184: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:17:00.153447: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:17:07.593390: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:17:12.185740: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:17:12.307284: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:17:12.385336: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:17:19.877800: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:17:42.136821: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:17:49.764232: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:18:02.055262: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:18:02.230971: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:18:02.364790: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:18:02.373202: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:18:02.373798: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:18:02.373798: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:18:02.392006: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:18:02.614388: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:18:02.637931: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:18:02.638451: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:18:12.723406: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:18:12.858006: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:18:15.107242: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:18:26.698018: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:18:35.078722: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:18:40.521806: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:18:42.654616: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:18:52.301977: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:18:52.327242: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:18:52.327242: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:18:52.513336: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:18:52.545139: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:18:52.545139: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:18:53.317290: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:19:02.642635: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:19:02.721469: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:19:02.777839: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:19:05.604675: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:19:15.521674: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:19:15.578022: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:19:15.698750: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:19:17.893912: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:19:30.181907: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:19:42.214324: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:19:45.418582: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:19:55.013323: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:20:03.907186: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:20:04.082902: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:20:04.215554: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:20:06.767333: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:20:06.788584: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:20:06.789412: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:20:06.789412: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:20:06.789412: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:20:06.789412: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:20:06.807238: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:20:16.883033: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:20:16.974626: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:20:17.015724: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:20:19.590319: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:20:31.620309: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:20:43.909525: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:20:46.823427: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:20:52.382215: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:20:52.451008: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:20:52.451008: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:20:54.405720: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:20:56.345173: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:20:56.381824: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:20:56.381824: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:21:06.546572: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:21:06.679304: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:21:06.949628: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:21:18.725639: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:21:19.991236: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:21:20.114416: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:21:48.490369: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:21:49.887020: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:22:08.506161: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:22:08.506161: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:22:08.522054: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:22:09.895604: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:22:09.921635: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:22:09.921635: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:22:48.538860: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:22:52.454572: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:22:52.476469: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:22:52.476469: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:22:57.248415: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 12:22:57.273123: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 12:22:58.585583: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:23:03.871307: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:23:03.902255: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:23:03.902255: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:23:08.657954: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:23:11.060412: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:23:21.202572: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:23:22.117163: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:23:23.864168: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:23:29.728930: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:23:29.783795: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:23:35.173228: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:23:47.205146: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:23:51.148888: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:23:57.445371: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:24:11.143158: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:24:11.163240: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:24:11.163240: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:24:17.399690: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:24:17.399690: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:24:17.416019: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:24:28.786732: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:24:28.919963: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:24:29.189138: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:24:41.480476: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:24:42.998278: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:24:43.122823: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:24:54.025353: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:24:55.158952: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:24:55.187217: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:24:55.187217: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:25:06.309062: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:25:12.842837: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:25:18.601566: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:25:20.822402: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:25:20.855787: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:25:20.855787: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:25:30.994165: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:25:31.129639: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:25:31.140988: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:25:34.418295: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:25:43.686367: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:25:45.721155: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:25:45.842582: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:26:02.309891: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:26:13.824631: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:26:15.596335: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:26:15.596418: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:26:15.619743: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:26:15.619865: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:26:20.575009: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:26:20.575009: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:26:20.592851: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:26:33.027834: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:26:33.202167: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:26:33.336441: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:26:33.349400: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:26:43.698109: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:26:43.779030: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:26:43.833236: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:26:45.381317: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:26:57.412857: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:27:10.213498: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:27:13.624930: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:27:22.756881: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:27:24.760885: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:27:24.789562: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:27:24.789562: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:27:24.996869: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:27:25.026576: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:27:25.026576: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:27:34.980540: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:27:35.154311: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:27:35.287074: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:27:35.300868: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:27:45.734567: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:27:45.783975: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:27:45.906033: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:27:47.076899: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:27:59.364499: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:28:11.396910: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:28:15.630943: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:28:15.630943: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:28:15.648734: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:28:15.648734: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:28:24.161574: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:28:24.161574: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:28:24.176634: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:28:34.436871: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:28:38.212586: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:28:38.386146: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:28:38.519469: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:28:46.980441: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:28:50.498310: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:29:02.071206: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:29:13.848272: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:29:18.321686: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:29:28.120869: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:29:28.144123: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:29:28.144123: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:29:28.540964: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:29:28.568143: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:29:28.568143: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:29:38.370011: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:29:38.936390: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:29:51.938934: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:29:51.993291: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:29:52.116431: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:30:09.265014: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:30:15.745414: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:30:15.762479: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:30:15.762479: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:30:25.905850: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:30:34.244242: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:30:34.244242: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:30:34.244242: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:30:34.259016: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:30:40.753785: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:30:40.838947: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:30:46.788565: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:30:51.129104: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:30:51.249936: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:30:51.333202: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:31:08.401705: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:31:16.483432: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:31:27.683227: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:31:29.296035: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:31:29.316493: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:31:29.316493: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:31:30.673393: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:31:31.656840: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:31:31.686625: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:31:31.686625: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:31:39.012786: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:31:41.681905: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:31:41.766322: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:31:42.072693: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:31:55.638404: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:31:55.843189: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:31:57.282059: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 12:32:02.161791: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:32:17.674177: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:32:17.692671: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:32:17.692671: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:32:28.017813: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:32:33.796213: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:32:37.321947: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:32:37.321947: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:32:37.337176: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:32:47.217376: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:32:47.351799: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:32:47.400384: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:33:00.866895: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:33:00.923847: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:33:05.285284: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:33:05.393923: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:33:37.027974: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:33:43.025333: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:33:44.909265: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:33:44.931256: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:33:44.931256: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:33:45.125753: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:33:45.162190: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:33:45.162190: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:33:55.136438: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:33:55.448630: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:34:05.297312: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:34:05.378200: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:34:08.259065: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:34:10.806156: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:34:25.167943: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:34:25.191022: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:34:25.191022: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:34:31.043961: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:34:37.885110: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:34:37.885110: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:34:37.901278: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:34:56.577484: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:34:56.753047: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:34:56.885877: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:35:00.227740: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:35:09.687498: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:35:09.808617: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:35:09.885567: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:35:26.070978: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:35:26.084147: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:35:29.520896: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:35:29.601303: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:35:36.570412: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:35:41.385684: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:35:51.338571: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:35:51.380754: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:35:51.380754: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:35:55.945543: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:35:59.421879: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:36:01.601933: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:36:02.291744: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:36:02.319732: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:36:02.319857: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:36:12.353669: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:36:12.664074: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:36:12.931632: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:36:23.025297: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:36:23.109978: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:36:23.158946: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:36:40.583693: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:36:40.583693: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:36:40.583693: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:36:40.598338: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:36:42.894497: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:36:42.912619: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:36:42.912619: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:36:52.611886: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:37:12.773445: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:37:12.944831: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:37:13.079532: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:37:16.675740: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:37:26.391417: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:37:32.896379: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:37:44.432717: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:37:46.884253: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:38:02.837347: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:38:02.867842: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:38:02.867842: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:38:03.009710: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:38:03.042950: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:38:03.042950: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:38:13.104962: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:38:13.183314: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:38:13.238877: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:38:25.728489: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:38:25.782805: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:38:25.904851: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:38:40.596137: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:38:40.596137: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:38:40.613486: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:38:52.784860: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:39:03.661488: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:39:03.679635: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:39:03.679635: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:39:14.368514: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:39:14.677194: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:39:25.375254: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:39:25.429215: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:39:25.552511: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:40:06.137502: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:40:06.161943: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:40:06.161943: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:40:06.335583: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:40:06.364293: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:40:06.364293: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:40:16.320502: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:40:16.501577: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:40:16.627634: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:40:30.660483: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:40:30.708219: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:40:38.256185: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:40:42.298869: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:40:42.298869: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:40:42.315927: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:40:59.248315: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:41:04.973714: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:41:04.991334: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:41:04.991334: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:41:16.734866: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:41:16.790903: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:41:18.448248: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:41:20.130843: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:41:30.991942: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:41:31.071867: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:41:31.126993: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:41:50.448533: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:42:06.210780: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:42:08.580477: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:42:08.624249: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:42:08.624518: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:42:08.624518: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:42:08.825711: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:42:08.852370: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:42:08.852370: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:42:18.941956: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:42:19.255856: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:42:30.007625: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:42:30.128685: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:42:30.209387: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:42:40.770862: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:42:42.319731: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:42:42.319731: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:42:42.336916: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:42:45.743761: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:42:52.546653: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:43:05.712017: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:43:11.876323: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:43:11.898698: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:43:11.898698: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:43:21.922737: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:43:22.102371: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:43:22.228659: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:43:34.461303: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:43:34.515783: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:43:34.639670: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:43:54.607953: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:43:56.034498: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:44:15.936106: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:44:16.014686: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:44:16.014686: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:44:16.572657: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:44:16.651292: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:44:16.651292: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:44:26.607516: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:44:26.694939: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:44:27.254123: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:44:37.103698: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:44:37.182580: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:44:43.039175: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:44:43.039175: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:44:43.112031: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:44:47.990113: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:44:54.658271: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:45:00.020864: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:45:07.013773: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:45:24.370396: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:45:27.011978: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:45:27.030472: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:45:27.030472: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:45:54.396418: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:46:06.563867: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:46:06.702904: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:46:08.885619: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:46:08.898161: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:46:17.613240: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:46:17.721603: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:46:17.721603: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:46:20.402958: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:46:20.527475: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:46:28.365371: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:46:34.498047: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:46:42.163570: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:46:50.277631: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:46:54.378078: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:46:54.378078: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:46:54.394168: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:47:20.306332: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:47:40.302415: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:47:40.325794: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:47:40.325794: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:47:40.802210: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:48:01.734145: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:48:10.759432: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:48:16.321174: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:48:20.353176: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:48:26.025708: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:48:26.048532: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:48:26.048532: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:48:36.291756: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:48:40.789204: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:48:50.370229: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:49:00.807312: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:49:00.807312: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:49:00.823793: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:49:20.412086: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:49:40.407131: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:49:40.424951: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:49:40.425514: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:49:40.845579: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:50:10.880421: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:50:13.311455: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:50:13.487343: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:50:24.064857: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:50:40.901425: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:50:43.264516: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:51:00.912096: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:51:00.912096: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:51:00.929571: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:51:09.593365: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:51:09.697181: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:51:09.697181: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:51:20.559433: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:51:35.070024: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:51:40.950348: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:51:50.305556: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:51:50.305556: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:51:50.329749: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:51:50.329749: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:51:54.999901: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:52:10.968482: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:52:20.340952: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:52:40.997287: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:52:50.375282: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:53:05.921434: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:53:05.921814: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:53:05.921814: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:53:05.940595: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:53:06.030646: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:53:16.661302: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 12:53:35.898823: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:53:35.898823: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:53:55.908543: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:53:55.927038: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:53:55.927038: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:54:05.917750: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:54:35.930960: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:54:35.961875: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:55:05.968178: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:55:05.999956: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:55:25.988346: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:55:25.988346: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:55:26.017242: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:55:36.034092: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:55:56.028327: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:55:56.044691: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:55:56.044691: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:56:06.019153: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:56:36.032655: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:56:36.062529: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:57:06.054789: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:57:06.100684: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:57:26.079336: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:57:26.079336: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:57:26.096980: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:57:36.126528: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:57:56.137704: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:57:56.162005: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:57:56.162005: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:58:06.119609: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:58:36.133889: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:58:36.181270: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:59:06.177769: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:59:06.208981: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:59:26.199464: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 12:59:26.199464: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 12:59:26.217775: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:59:36.240879: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 12:59:56.239770: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:59:56.266876: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:59:56.266876: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:00:06.232437: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:00:09.712557: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 13:00:36.275400: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:00:36.306932: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:01:06.285414: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:01:06.331715: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:01:18.325866: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:01:18.380753: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 13:01:26.309060: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:01:26.309060: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:01:26.328910: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:01:28.898851: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:01:36.369992: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:01:56.360407: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:01:56.378918: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:01:56.378918: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:02:06.342435: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:02:07.995667: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 13:02:08.028663: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 13:02:11.405114: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 13:02:11.429231: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 13:02:18.220567: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:02:21.939917: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 13:02:32.909641: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 13:02:32.948010: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 13:02:33.838377: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:02:39.872677: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:02:47.235983: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:03:06.350384: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:03:06.435158: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:03:06.449754: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 13:03:06.496417: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:03:26.205531: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:03:26.238786: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 13:03:26.238786: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 13:03:36.221750: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:03:36.237299: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 13:03:36.237299: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:03:56.251674: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:03:56.251674: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:03:56.274930: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:04:06.254161: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 13:04:06.254161: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:04:06.254161: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:04:06.281807: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 13:04:06.282403: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:04:06.282572: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:04:26.258051: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 13:04:26.278604: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 13:04:26.278604: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 13:04:36.279894: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:04:36.279894: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:05:06.307092: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:05:06.307092: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 13:05:06.307092: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:05:12.708079: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:05:18.030425: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 13:05:23.471238: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:05:28.781463: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 13:05:36.345857: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:05:36.345857: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:05:56.361851: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:05:56.361851: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:05:56.380680: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:06:06.372342: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:06:06.372490: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:06:06.390391: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:06:06.390391: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:06:36.387979: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:06:36.387979: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:07:06.405889: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:07:06.421898: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:07:36.432089: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:07:36.448309: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:07:56.454118: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:07:56.454118: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:07:56.472839: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:08:06.467839: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:08:06.467839: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:08:06.485649: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:08:06.485649: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:08:36.492242: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:08:36.507640: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:09:06.510300: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:09:06.525670: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:09:36.533733: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:09:36.549174: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:09:56.548109: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:09:56.548109: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:09:56.565796: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:10:06.582688: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:10:06.582688: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:10:06.606913: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:10:06.606913: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:10:36.575929: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:10:36.621771: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:11:06.596119: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:11:06.643254: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:11:08.030305: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 13:11:36.633160: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:11:36.695371: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:11:56.647923: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:11:56.647923: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:11:56.666375: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:12:06.728168: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:12:06.728168: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:12:06.749931: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:12:06.749961: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:12:26.240048: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 13:12:36.682480: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:12:36.758739: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:13:06.668621: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:13:06.815211: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:13:26.286715: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 13:13:36.597429: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:13:36.613742: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:14:06.622628: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:14:06.638387: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:14:26.633850: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:14:26.636846: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:14:26.636846: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:14:26.661049: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:14:26.662633: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:14:26.662633: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:15:06.673797: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:15:06.704654: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:15:06.879066: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:15:36.698056: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:15:36.728943: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:16:06.726784: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:16:06.757545: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:16:18.760884: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:16:18.789739: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 13:16:26.743578: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:16:26.743578: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:16:26.758849: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:16:26.760955: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:16:26.777552: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:16:26.777552: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:16:29.246416: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:16:39.738421: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:17:06.784224: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:17:06.815439: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:17:36.805693: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:17:36.836941: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:18:02.941554: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:18:06.838647: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:18:06.870019: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:18:17.275363: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:18:26.842872: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:18:26.842872: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:18:26.860881: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:18:26.873302: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:18:26.896427: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:18:26.896427: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:18:27.107640: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:18:27.140141: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 13:18:27.140141: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 13:18:37.240292: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:19:06.875730: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:19:06.923832: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:19:36.917922: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:19:36.963857: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:19:54.427381: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 13:20:06.950419: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:20:06.981684: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:20:26.966593: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:20:26.966593: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:20:26.982311: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:20:26.983778: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:20:26.999446: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:20:26.999446: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:21:07.006280: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:21:07.038158: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:21:37.022003: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:21:37.053694: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:22:07.064396: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:22:15.165134: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:22:27.048802: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:22:27.048802: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:22:27.064098: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:22:27.065941: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:22:27.083103: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:22:27.083103: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:23:06.986981: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:23:07.133203: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:23:22.599274: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:23:22.622991: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 13:23:22.859997: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 13:23:22.891994: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 13:23:32.927212: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:23:33.099692: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:23:33.234112: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 13:23:38.877290: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:23:43.673693: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 13:23:43.727181: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 13:23:52.298611: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:23:52.445096: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:24:16.253409: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:24:22.146555: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:24:29.821134: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:24:29.821134: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 13:24:29.821134: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 13:24:29.890216: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:24:42.158683: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:24:42.182048: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:24:42.182048: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:24:59.535227: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:25:33.431916: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 13:25:52.362950: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:26:29.979679: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 13:26:43.020045: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:26:43.020185: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:26:43.042185: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 13:26:43.042185: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 13:27:52.514912: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 13:30:40.315709: [TUN] [SCJ] Binding v4 socket to interface 0 (blackhole=false) 2021-04-22 13:30:40.315709: [TUN] [SCJ] Binding v6 socket to interface 0 (blackhole=false) 2021-04-22 13:30:41.567729: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:30:46.899120: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:30:46.899120: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:30:52.133560: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 13:30:52.133560: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:30:57.349907: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 13:30:57.349907: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:02.486916: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 13:31:02.486916: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:07.554035: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 6) 2021-04-22 13:31:07.554035: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:12.861442: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 7) 2021-04-22 13:31:12.861442: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:17.931683: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 8) 2021-04-22 13:31:17.931683: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:19.008422: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:31:23.190019: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 9) 2021-04-22 13:31:23.190019: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:24.134556: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:31:24.134556: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:31:28.428291: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 10) 2021-04-22 13:31:28.428291: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:29.303316: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 13:31:29.303316: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:31:33.558866: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 11) 2021-04-22 13:31:33.559150: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:34.398070: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 13:31:34.398070: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:31:38.595393: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 12) 2021-04-22 13:31:38.595393: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:39.482268: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 13:31:39.482268: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:31:43.842428: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 13) 2021-04-22 13:31:43.842428: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:44.797709: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 6) 2021-04-22 13:31:44.797709: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:31:48.964524: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 14) 2021-04-22 13:31:48.964634: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:49.998481: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 7) 2021-04-22 13:31:49.998665: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:31:54.289847: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 15) 2021-04-22 13:31:54.289847: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:31:55.324451: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 8) 2021-04-22 13:31:55.324451: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:31:59.481637: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 16) 2021-04-22 13:31:59.481637: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:32:00.380419: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 9) 2021-04-22 13:32:00.380419: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:04.763845: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 17) 2021-04-22 13:32:04.763845: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:32:05.604044: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 10) 2021-04-22 13:32:05.604044: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:09.922823: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 18) 2021-04-22 13:32:09.922823: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:32:10.866798: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 11) 2021-04-22 13:32:10.866995: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:15.229896: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 19) 2021-04-22 13:32:15.229896: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:32:15.980487: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 12) 2021-04-22 13:32:15.980487: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:20.455195: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 20) 2021-04-22 13:32:20.455520: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:32:21.116233: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 13) 2021-04-22 13:32:21.116233: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:22.629764: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 13:32:22.898520: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 13:32:25.708741: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 20 attempts, giving up 2021-04-22 13:32:26.178654: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 14) 2021-04-22 13:32:26.178654: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:31.327759: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 15) 2021-04-22 13:32:31.327950: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:36.650054: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 16) 2021-04-22 13:32:36.650054: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:41.823991: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 17) 2021-04-22 13:32:41.823991: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:46.909013: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 18) 2021-04-22 13:32:46.909013: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:52.057875: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 19) 2021-04-22 13:32:52.057875: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:57.128180: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 20) 2021-04-22 13:32:57.128180: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:32:57.269921: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:02.243948: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:33:02.243948: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:02.274031: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:33:02.274031: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:07.478772: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:33:07.478772: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:07.582354: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:33:07.582394: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:12.512789: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 13:33:12.512789: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:12.902371: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 13:33:12.902371: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:17.812364: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:33:17.812512: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:17.949665: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:33:17.949665: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:23.142081: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 13:33:23.142081: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:23.262333: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 13:33:23.262579: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:28.349982: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 13:33:28.349982: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:28.464323: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 13:33:28.464323: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:29.833614: [TUN] [SCJ] peer(1hMF?tqBw) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 13:33:33.488515: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 13:33:33.488515: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:33.765759: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 13:33:33.765759: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:38.811370: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 6) 2021-04-22 13:33:38.811370: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:38.872768: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 6) 2021-04-22 13:33:38.872768: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:44.039996: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 7) 2021-04-22 13:33:44.039996: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:44.134528: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 7) 2021-04-22 13:33:44.134600: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:49.086435: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 8) 2021-04-22 13:33:49.086435: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:49.428070: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 8) 2021-04-22 13:33:49.428070: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:54.380080: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 9) 2021-04-22 13:33:54.380155: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:54.594185: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 9) 2021-04-22 13:33:54.594185: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:33:59.494770: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 10) 2021-04-22 13:33:59.494770: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:33:59.657515: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 10) 2021-04-22 13:33:59.657515: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:04.714748: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 11) 2021-04-22 13:34:04.714748: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:04.766109: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 11) 2021-04-22 13:34:04.766109: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:09.914459: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 12) 2021-04-22 13:34:09.914485: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:09.948576: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 12) 2021-04-22 13:34:09.948576: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:15.017567: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 13) 2021-04-22 13:34:15.017567: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:15.145436: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 13) 2021-04-22 13:34:15.145436: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:20.186016: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 14) 2021-04-22 13:34:20.186016: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:20.291810: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 14) 2021-04-22 13:34:20.291810: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:25.475284: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 15) 2021-04-22 13:34:25.475284: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:25.584818: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 15) 2021-04-22 13:34:25.584818: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:30.770569: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 16) 2021-04-22 13:34:30.770569: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:30.783993: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 16) 2021-04-22 13:34:30.783993: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:35.804359: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 17) 2021-04-22 13:34:35.804359: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:36.110286: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 17) 2021-04-22 13:34:36.110286: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:41.071933: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 18) 2021-04-22 13:34:41.071933: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:41.280584: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 18) 2021-04-22 13:34:41.280739: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:46.131069: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 19) 2021-04-22 13:34:46.131069: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:46.498035: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 19) 2021-04-22 13:34:46.498035: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:51.161632: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 20) 2021-04-22 13:34:51.161632: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:34:51.635931: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 20) 2021-04-22 13:34:51.635931: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:34:56.328221: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 20 attempts, giving up 2021-04-22 13:34:56.753296: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 20 attempts, giving up 2021-04-22 13:34:58.231770: [MGR] Update checker: The server name or address could not be resolved 2021-04-22 13:35:01.179871: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:06.439005: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:35:06.439005: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:11.728000: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 13:35:11.728000: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:17.041647: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 13:35:17.041647: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:22.180214: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 13:35:22.180214: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:27.412567: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 6) 2021-04-22 13:35:27.412567: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:32.754865: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 7) 2021-04-22 13:35:32.754865: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:37.946249: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 8) 2021-04-22 13:35:37.946377: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:43.051534: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 13:35:43.096526: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 9) 2021-04-22 13:35:43.096526: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:48.274711: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 10) 2021-04-22 13:35:48.274843: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:53.409804: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 11) 2021-04-22 13:35:53.409804: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:35:58.720436: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 12) 2021-04-22 13:35:58.720436: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:36:04.063214: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 13) 2021-04-22 13:36:04.063214: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:36:05.757561: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 13:36:05.764491: [TUN] [SCJ] Binding v4 socket to interface 8 (blackhole=false) 2021-04-22 13:36:05.794384: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 13:36:06.876809: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 13:36:09.252968: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 13:36:09.346863: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 13:36:09.346863: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 13:36:10.247085: [TUN] [SCJ] Device closing 2021-04-22 13:36:10.255065: [TUN] Exception 0xc0000005 0x1 0x24 0x7ffc1bfb5e16 2021-04-22 13:36:10.255065: [TUN] PC=0x7ffc1bfb5e16 2021-04-22 13:36:10.255065: [TUN] runtime.cgocall(0x8ce7e0, 0xc0008882d8, 0xc0008882d8) 2021-04-22 13:36:10.255065: [TUN] runtime/cgocall.go:154 +0x55 fp=0xc00039fe18 sp=0xc00039fde0 pc=0x864755 2021-04-22 13:36:10.255065: [TUN] syscall.Syscall(0x1800092a0, 0x2, 0x1f3fbf50c90, 0xc00039fe9c, 0x0, 0x0, 0x0, 0x0) 2021-04-22 13:36:10.255065: [TUN] runtime/syscall_windows.go:332 +0xe9 fp=0xc00039fe58 sp=0xc00039fe18 pc=0x8c99e9 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard/tun/wintun.Session.ReceivePacket(0x1f3fbf50c90, 0x0, 0x0, 0x0, 0xc00039ff10, 0xaaa876) 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/tun/wintun/session_windows.go:65 +0xa9 fp=0xc00039fec0 sp=0xc00039fe58 pc=0x9ab509 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard/tun.(*NativeTun).Read(0xc0002b6000, 0xc0000ca800, 0x7e0, 0x7e0, 0x10, 0x4c, 0x0, 0x0) 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/tun/tun_windows.go:163 +0x7b fp=0xc00039ff50 sp=0xc00039fec0 pc=0x9ade9b 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineReadFromTUN(0xc0002b0280) 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:226 +0xf5 fp=0xc00039ffd8 sp=0xc00039ff50 pc=0xaaf075 2021-04-22 13:36:10.255065: [TUN] runtime.goexit() 2021-04-22 13:36:10.255065: [TUN] runtime/asm_amd64.s:1369 +0x1 fp=0xc00039ffe0 sp=0xc00039ffd8 pc=0x8cd061 2021-04-22 13:36:10.255065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:314 +0x2eb 2021-04-22 13:36:10.255065: [TUN] goroutine 1 [syscall, locked to thread]: 2021-04-22 13:36:10.255065: [TUN] syscall.Syscall(0x7ffc1bdf7c00, 0x1, 0xc00011dc58, 0x0, 0x0, 0x0, 0x0, 0x0) 2021-04-22 13:36:10.255065: [TUN] runtime/syscall_windows.go:332 +0xe9 2021-04-22 13:36:10.255065: [TUN] golang.org/x/sys/windows.StartServiceCtrlDispatcher(0xc00011dc58, 0xcc0180, 0xc000057540) 2021-04-22 13:36:10.255065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/zsyscall_windows.go:1185 +0x8a 2021-04-22 13:36:10.255065: [TUN] golang.org/x/sys/windows/svc.Run(0xc000010288, 0x13, 0xd1f3a0, 0xc00004bcc0, 0x3, 0xc000010288) 2021-04-22 13:36:10.255065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/svc/service.go:366 +0x1c8 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel.Run(0xc00000a240, 0x3d, 0x0, 0x0) 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:268 +0x138 2021-04-22 13:36:10.255065: [TUN] main.main() 2021-04-22 13:36:10.255065: [TUN] golang.zx2c4.com/wireguard/windows/main.go:206 +0xd25 2021-04-22 13:36:10.255065: [TUN] goroutine 6 [select]: 2021-04-22 13:36:10.255065: [TUN] golang.org/x/sys/windows/svc.(*service).run(0xc000057540) 2021-04-22 13:36:10.255065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/svc/service.go:264 +0x3c5 2021-04-22 13:36:10.255065: [TUN] created by golang.org/x/sys/windows/svc.Run 2021-04-22 13:36:10.255065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/svc/service.go:364 +0x1ba 2021-04-22 13:36:10.255065: [TUN] goroutine 18 [syscall, locked to thread]: 2021-04-22 13:36:10.255065: [TUN] syscall.Syscall(0x1800091f0, 0x1, 0x1f3fbf50c90, 0x0, 0x0, 0x0, 0x0, 0x0) 2021-04-22 13:36:10.255065: [TUN] runtime/syscall_windows.go:332 +0xe9 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/tun/wintun.Session.End(0x1f3fbf50c90) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/tun/wintun/session_windows.go:53 +0x7c 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/tun.(*NativeTun).Close.func1() 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/tun/tun_windows.go:130 +0x4b 2021-04-22 13:36:10.256065: [TUN] sync.(*Once).doSlow(0xc0002b6060, 0xc00069fb90) 2021-04-22 13:36:10.256065: [TUN] sync/once.go:68 +0xf7 2021-04-22 13:36:10.256065: [TUN] sync.(*Once).Do(...) 2021-04-22 13:36:10.256065: [TUN] sync/once.go:59 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/tun.(*NativeTun).Close(0xc0002b6000, 0xe, 0x0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/tun/tun_windows.go:128 +0x9c 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).Close(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:358 +0xe7 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute.func1(0xc00069fe70, 0xc00069fd1c, 0xc00069ff88, 0xc00069ff8c, 0xc00008e060, 0xc000092000, 0xc00069fe48, 0xc00069fe28, 0xc00008a010) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:97 +0x32e 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute(0xc00004bcc0, 0xc00008a000, 0x1, 0x1, 0xc00008e000, 0xc00008e060, 0x0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:244 +0xf0f 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys/windows/svc.(*service).run.func1(0xc000057540, 0xc00008a000, 0x1, 0x1, 0xc00008e000, 0xc00008e060, 0xc00008e0c0) 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/svc/service.go:252 +0x71 2021-04-22 13:36:10.256065: [TUN] created by golang.org/x/sys/windows/svc.(*service).run 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/svc/service.go:251 +0x24a 2021-04-22 13:36:10.256065: [TUN] goroutine 58 [semacquire, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] sync.runtime_Semacquire(0xc0002a4100) 2021-04-22 13:36:10.256065: [TUN] runtime/sema.go:56 +0x49 2021-04-22 13:36:10.256065: [TUN] sync.(*WaitGroup).Wait(0xc0002a40f8) 2021-04-22 13:36:10.256065: [TUN] sync/waitgroup.go:130 +0x6b 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.newOutboundQueue.func1(0xc0002a40f0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/channels.go:32 +0x38 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.newOutboundQueue 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/channels.go:31 +0xb2 2021-04-22 13:36:10.256065: [TUN] goroutine 59 [semacquire, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] sync.runtime_Semacquire(0xc0002a4118) 2021-04-22 13:36:10.256065: [TUN] runtime/sema.go:56 +0x49 2021-04-22 13:36:10.256065: [TUN] sync.(*WaitGroup).Wait(0xc0002a4110) 2021-04-22 13:36:10.256065: [TUN] sync/waitgroup.go:130 +0x6b 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.newInboundQueue.func1(0xc0002a4108) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/channels.go:50 +0x38 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.newInboundQueue 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/channels.go:49 +0xb2 2021-04-22 13:36:10.256065: [TUN] goroutine 57 [semacquire, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] sync.runtime_Semacquire(0xc0002a40e8) 2021-04-22 13:36:10.256065: [TUN] runtime/sema.go:56 +0x49 2021-04-22 13:36:10.256065: [TUN] sync.(*WaitGroup).Wait(0xc0002a40e0) 2021-04-22 13:36:10.256065: [TUN] sync/waitgroup.go:130 +0x6b 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.newHandshakeQueue.func1(0xc0002a40d8) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/channels.go:68 +0x38 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.newHandshakeQueue 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/channels.go:67 +0xb2 2021-04-22 13:36:10.256065: [TUN] goroutine 56 [select, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/ratelimiter.(*Ratelimiter).Init.func1(0xc0002ba0c0, 0xc0002b0340) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/ratelimiter/ratelimiter.go:70 +0xb6 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/ratelimiter.(*Ratelimiter).Init 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/ratelimiter/ratelimiter.go:66 +0x10c 2021-04-22 13:36:10.256065: [TUN] goroutine 60 [chan receive, 8 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 61 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 62 [chan receive, 17 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 63 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 64 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 65 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 66 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 67 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 68 [chan receive, 15 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 69 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 70 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 71 [chan receive, 15 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 72 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 73 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 74 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 75 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 76 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 77 [chan receive, 19 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 78 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 79 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 80 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 81 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 82 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 83 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 84 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 85 [chan receive, 8 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 86 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 87 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 88 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 89 [chan receive, 19 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 90 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 91 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 92 [chan receive, 19 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 93 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineEncryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:372 +0x15a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:307 +0x235 2021-04-22 13:36:10.256065: [TUN] goroutine 94 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineDecryption(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:243 +0x145 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:308 +0x257 2021-04-22 13:36:10.256065: [TUN] goroutine 95 [chan receive, 17 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineHandshake(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:275 +0x13b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:309 +0x279 2021-04-22 13:36:10.256065: [TUN] goroutine 97 [chan receive, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineTUNEventReader(0xc0002b0280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/tun.go:20 +0xbd 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.NewDevice 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:315 +0x30d 2021-04-22 13:36:10.256065: [TUN] goroutine 115 [syscall, locked to thread]: 2021-04-22 13:36:10.256065: [TUN] syscall.Syscall6(0x7ffc1b8c5dd0, 0x5, 0x7c8, 0xc000481f9c, 0xc000481fa0, 0xc000481fa8, 0xffffffff, 0x0, 0x0, 0x0, ...) 2021-04-22 13:36:10.256065: [TUN] runtime/syscall_windows.go:345 +0xf2 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys/windows.GetQueuedCompletionStatus(0x7c8, 0xc000481f9c, 0xc000481fa0, 0xc000481fa8, 0xffffffff, 0xd1fd00, 0xc000300020) 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/zsyscall_windows.go:2157 +0xd5 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/ipc/winpipe.ioCompletionProcessor(0x7c8) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/ipc/winpipe/file.go:130 +0xb6 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/ipc/winpipe.initIo 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/ipc/winpipe/file.go:46 +0x85 2021-04-22 13:36:10.256065: [TUN] goroutine 100 [syscall, 8 minutes, locked to thread]: 2021-04-22 13:36:10.256065: [TUN] syscall.Syscall6(0x7ffc1b8c5dd0, 0x5, 0x7d4, 0xc0004b3d54, 0xc0004b3d68, 0xc0004b3d88, 0xffffffff, 0x0, 0x0, 0x0, ...) 2021-04-22 13:36:10.256065: [TUN] runtime/syscall_windows.go:345 +0xf2 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys/windows.GetQueuedCompletionStatus(0x7d4, 0xc0004b3d54, 0xc0004b3d68, 0xc0004b3d88, 0xc0ffffffff, 0x0, 0x0) 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/zsyscall_windows.go:2157 +0xd5 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/conn.(*afWinRingBind).Receive(0xc0002c4000, 0xc000131000, 0x7e0, 0x7e0, 0xc0002c41b8, 0x0, 0x0, 0x0, 0x0, 0x0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/conn/bind_windows.go:374 +0x425 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/conn.(*WinRingBind).receiveIPv4(0xc0002c4000, 0xc000131000, 0x7e0, 0x7e0, 0x0, 0x0, 0x0, 0x0, 0x0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/conn/bind_windows.go:404 +0xc9 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineReceiveIncoming(0xc0002b0280, 0xc0002808c0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:125 +0x1c9 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Device).BindUpdate 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:506 +0x35d 2021-04-22 13:36:10.256065: [TUN] goroutine 101 [syscall, 4442 minutes, locked to thread]: 2021-04-22 13:36:10.256065: [TUN] syscall.Syscall6(0x7ffc1b8c5dd0, 0x5, 0x584, 0xc0004b5d54, 0xc0004b5d68, 0xc0004b5d88, 0xffffffff, 0x0, 0x0, 0x0, ...) 2021-04-22 13:36:10.256065: [TUN] runtime/syscall_windows.go:345 +0xf2 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys/windows.GetQueuedCompletionStatus(0x584, 0xc0004b5d54, 0xc0004b5d68, 0xc0004b5d88, 0xc0ffffffff, 0x86e009, 0x1f3d6332588) 2021-04-22 13:36:10.256065: [TUN] golang.org/x/sys at v0.0.0-20210403161142-5e06dd20ab57/windows/zsyscall_windows.go:2157 +0xd5 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/conn.(*afWinRingBind).Receive(0xc0002c40d0, 0xc000594000, 0x7e0, 0x7e0, 0xc0002c41b8, 0x0, 0x0, 0x0, 0x0, 0x0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/conn/bind_windows.go:374 +0x425 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/conn.(*WinRingBind).receiveIPv6(0xc0002c4000, 0xc000594000, 0x7e0, 0x7e0, 0x0, 0x0, 0x0, 0x0, 0x0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/conn/bind_windows.go:410 +0xd0 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).RoutineReceiveIncoming(0xc0002b0280, 0xc0002808d0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:125 +0x1c9 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Device).BindUpdate 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/device.go:506 +0x35d 2021-04-22 13:36:10.256065: [TUN] goroutine 102 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialSender(0xc00048b180) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:414 +0x12b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:186 +0x277 2021-04-22 13:36:10.256065: [TUN] goroutine 103 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialReceiver(0xc00048b180) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:437 +0x175 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:187 +0x29c 2021-04-22 13:36:10.256065: [TUN] goroutine 104 [chan receive, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialSender(0xc00048b500) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:414 +0x12b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:186 +0x277 2021-04-22 13:36:10.256065: [TUN] goroutine 105 [chan receive, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialReceiver(0xc00048b500) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:437 +0x175 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:187 +0x29c 2021-04-22 13:36:10.256065: [TUN] goroutine 106 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialSender(0xc00048a000) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:414 +0x12b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:186 +0x277 2021-04-22 13:36:10.256065: [TUN] goroutine 107 [chan receive, 11 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialReceiver(0xc00048a000) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:437 +0x175 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:187 +0x29c 2021-04-22 13:36:10.256065: [TUN] goroutine 108 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialSender(0xc00048a380) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:414 +0x12b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:186 +0x277 2021-04-22 13:36:10.256065: [TUN] goroutine 109 [chan receive, 13 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialReceiver(0xc00048a380) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:437 +0x175 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:187 +0x29c 2021-04-22 13:36:10.256065: [TUN] goroutine 110 [chan receive, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialSender(0xc00048a700) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:414 +0x12b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:186 +0x277 2021-04-22 13:36:10.256065: [TUN] goroutine 111 [chan receive, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialReceiver(0xc00048a700) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:437 +0x175 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:187 +0x29c 2021-04-22 13:36:10.256065: [TUN] goroutine 112 [chan receive, 31 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialSender(0xc00048aa80) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:414 +0x12b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:186 +0x277 2021-04-22 13:36:10.256065: [TUN] goroutine 113 [chan receive, 31 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialReceiver(0xc00048aa80) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:437 +0x175 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:187 +0x29c 2021-04-22 13:36:10.256065: [TUN] goroutine 114 [chan receive, 8 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialSender(0xc00048ae00) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/send.go:414 +0x12b 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:186 +0x277 2021-04-22 13:36:10.256065: [TUN] goroutine 131 [chan receive, 8 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Peer).RoutineSequentialReceiver(0xc00048ae00) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/receive.go:437 +0x175 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/device.(*Peer).Start 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/peer.go:187 +0x29c 2021-04-22 13:36:10.256065: [TUN] goroutine 132 [select]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/ipc.(*UAPIListener).Accept(0xc0002a8180, 0x0, 0x0, 0xd1f080, 0xc00004a280) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/ipc/uapi_windows.go:35 +0xa9 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute.func2(0xc00008a010, 0xc000092000) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:222 +0x3a 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:220 +0xb98 2021-04-22 13:36:10.256065: [TUN] goroutine 133 [select, 4442 minutes]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/ipc/winpipe.(*file).asyncIo(0xc000514000, 0xc000518210, 0xc000514038, 0x0, 0xd1fd00, 0xf7a240, 0xd1fd00, 0xf7a240, 0x8) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/ipc/winpipe/file.go:157 +0x14b 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/ipc/winpipe.(*file).Read(0xc000514000, 0xc000489000, 0x1000, 0x1000, 0x0, 0x0, 0x0) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/ipc/winpipe/file.go:199 +0x147 2021-04-22 13:36:10.256065: [TUN] bufio.(*Reader).fill(0xc0002b4c60) 2021-04-22 13:36:10.256065: [TUN] bufio/bufio.go:101 +0x10d 2021-04-22 13:36:10.256065: [TUN] bufio.(*Reader).ReadSlice(0xc0002b4c60, 0xcc0c0a, 0xc0004e3dd0, 0x996c25, 0x7ffc1b8d4fd0, 0x5, 0x7c4) 2021-04-22 13:36:10.256065: [TUN] bufio/bufio.go:360 +0x45 2021-04-22 13:36:10.256065: [TUN] bufio.(*Reader).collectFragments(0xc0002b4c60, 0xa5a70a, 0xc000514008, 0xc0005181e0, 0xc000514070, 0x9f2, 0x0, 0x0, 0x9f2, 0x0, ...) 2021-04-22 13:36:10.256065: [TUN] bufio/bufio.go:435 +0x85 2021-04-22 13:36:10.256065: [TUN] bufio.(*Reader).ReadString(0xc0002b4c60, 0xa, 0x0, 0x9, 0x0, 0x0) 2021-04-22 13:36:10.256065: [TUN] bufio/bufio.go:483 +0x53 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/device.(*Device).IpcHandle(0xc0002b0280, 0xd279a0, 0xc00022a018) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard at v0.0.0-20210412171932-47966ded1f1e/device/uapi.go:418 +0xdb 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute.func2 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:226 +0x7b 2021-04-22 13:36:10.256065: [TUN] goroutine 13879 [select]: 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute.func1.1(0xc0003c4620) 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:59 +0xb5 2021-04-22 13:36:10.256065: [TUN] created by golang.zx2c4.com/wireguard/windows/tunnel.(*tunnelService).Execute.func1 2021-04-22 13:36:10.256065: [TUN] golang.zx2c4.com/wireguard/windows/tunnel/service.go:56 +0x1f8 2021-04-22 13:36:10.256065: [TUN] rax 0x0 2021-04-22 13:36:10.256065: [TUN] rbx 0x1f3fbf50ce0 2021-04-22 13:36:10.256065: [TUN] rcx 0x1f3fbf50ce0 2021-04-22 13:36:10.256065: [TUN] rdi 0x0 2021-04-22 13:36:10.256065: [TUN] rsi 0x0 2021-04-22 13:36:10.256065: [TUN] rbp 0xc00039fe00 2021-04-22 13:36:10.256065: [TUN] rsp 0x1fcb9ff830 2021-04-22 13:36:10.256065: [TUN] r8 0x0 2021-04-22 13:36:10.256065: [TUN] r9 0x1f3fbf50c00 2021-04-22 13:36:10.256065: [TUN] r10 0x0 2021-04-22 13:36:10.256065: [TUN] r11 0x246 2021-04-22 13:36:10.256065: [TUN] r12 0x0 2021-04-22 13:36:10.256065: [TUN] r13 0x1fc9cd3000 2021-04-22 13:36:10.256065: [TUN] r14 0x1 2021-04-22 13:36:10.256065: [TUN] r15 0x0 2021-04-22 13:36:10.256065: [TUN] rip 0x7ffc1bfb5e16 2021-04-22 13:36:10.256065: [TUN] rflags 0x10213 2021-04-22 13:36:10.256065: [TUN] cs 0x33 2021-04-22 13:36:10.256065: [TUN] fs 0x53 2021-04-22 13:36:10.256065: [TUN] gs 0x2b 2021-04-22 13:36:10.289313: [MGR] [SCJ] Tunnel service tracker finished 2021-04-22 16:42:29.115326: [TUN] [SCJ] Starting WireGuard/0.3.11 (Windows 10.0.19041; amd64) 2021-04-22 16:42:29.115326: [TUN] [SCJ] Watching network interfaces 2021-04-22 16:42:29.117366: [TUN] [SCJ] Resolving DNS names 2021-04-22 16:42:30.262378: [TUN] [SCJ] Creating Wintun interface 2021-04-22 16:42:30.696900: [TUN] [SCJ] [Wintun] CreateAdapter: Creating adapter 2021-04-22 16:42:30.877814: [TUN] [SCJ] [Wintun] SelectDriver: Using existing driver 0.10 2021-04-22 16:42:31.101398: [TUN] [SCJ] Using Wintun/0.10 2021-04-22 16:42:31.101398: [TUN] [SCJ] Enabling firewall rules 2021-04-22 16:42:31.113746: [TUN] [SCJ] Dropping privileges 2021-04-22 16:42:31.114258: [TUN] [SCJ] Creating interface instance 2021-04-22 16:42:31.114258: [TUN] [SCJ] Setting interface configuration 2021-04-22 16:42:31.114258: [TUN] [SCJ] UAPI: Updating private key 2021-04-22 16:42:31.114258: [TUN] [SCJ] UAPI: Removing all peers 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Created 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Updating endpoint 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Updating persistent keepalive interval 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Removing all allowedips 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Adding allowedip 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Created 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Updating endpoint 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Updating persistent keepalive interval 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Removing all allowedips 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Adding allowedip 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Created 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Updating endpoint 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Updating persistent keepalive interval 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Removing all allowedips 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Adding allowedip 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Created 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Updating endpoint 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Updating persistent keepalive interval 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Removing all allowedips 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Adding allowedip 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Created 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Updating endpoint 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Updating persistent keepalive interval 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Removing all allowedips 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Adding allowedip 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.114769: [TUN] [SCJ] Routine: TUN reader - started 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Created 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Updating endpoint 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Updating persistent keepalive interval 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Removing all allowedips 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Adding allowedip 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Created 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Updating endpoint 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Updating persistent keepalive interval 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Removing all allowedips 2021-04-22 16:42:31.115282: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Adding allowedip 2021-04-22 16:42:31.115282: [TUN] [SCJ] Bringing peers up 2021-04-22 16:42:31.115282: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 16:42:31.115282: [TUN] [SCJ] Routine: event worker - started 2021-04-22 16:42:31.115282: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 16:42:31.117358: [TUN] [SCJ] UDP bind has been updated 2021-04-22 16:42:31.117358: [TUN] [SCJ] peer(1hMF?tqBw) - Starting... 2021-04-22 16:42:31.117358: [TUN] [SCJ] peer(heWL?uHXY) - Starting... 2021-04-22 16:42:31.117358: [TUN] [SCJ] peer(YnSj?521U) - Starting... 2021-04-22 16:42:31.117358: [TUN] [SCJ] peer(8muY?GdG8) - Starting... 2021-04-22 16:42:31.117358: [TUN] [SCJ] peer(YEM2?4hlk) - Starting... 2021-04-22 16:42:31.117358: [TUN] [SCJ] peer(1hMF?tqBw) - Routine: sequential receiver - started 2021-04-22 16:42:31.117358: [TUN] [SCJ] Routine: receive incoming v4 - started 2021-04-22 16:42:31.117358: [TUN] [SCJ] peer(WBaN?k8hA) - Starting... 2021-04-22 16:42:31.117358: [TUN] [SCJ] peer(c9ys?npmo) - Starting... 2021-04-22 16:42:31.117358: [TUN] [SCJ] Interface state was Down, requested Up, now Up 2021-04-22 16:42:31.117358: [TUN] [SCJ] Monitoring default v4 routes 2021-04-22 16:42:31.117358: [TUN] [SCJ] Binding v4 socket to interface 8 (blackhole=false) 2021-04-22 16:42:31.117884: [TUN] [SCJ] Routine: receive incoming v6 - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(1hMF?tqBw) - Routine: sequential sender - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(8muY?GdG8) - Routine: sequential receiver - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(heWL?uHXY) - Routine: sequential sender - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(heWL?uHXY) - Routine: sequential receiver - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(YnSj?521U) - Routine: sequential sender - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(YnSj?521U) - Routine: sequential receiver - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(8muY?GdG8) - Routine: sequential sender - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(WBaN?k8hA) - Routine: sequential sender - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(YEM2?4hlk) - Routine: sequential sender - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(YEM2?4hlk) - Routine: sequential receiver - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(WBaN?k8hA) - Routine: sequential receiver - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(c9ys?npmo) - Routine: sequential sender - started 2021-04-22 16:42:31.118395: [TUN] [SCJ] peer(c9ys?npmo) - Routine: sequential receiver - started 2021-04-22 16:42:31.118898: [TUN] [SCJ] Setting device v4 addresses 2021-04-22 16:42:31.124641: [TUN] [SCJ] Monitoring default v6 routes 2021-04-22 16:42:31.125162: [TUN] [SCJ] Binding v6 socket to interface 8 (blackhole=false) 2021-04-22 16:42:31.125162: [TUN] [SCJ] Setting device v6 addresses 2021-04-22 16:42:31.132336: [TUN] [SCJ] Listening for UAPI requests 2021-04-22 16:42:31.132336: [TUN] [SCJ] Startup complete 2021-04-22 16:42:34.605124: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 16:42:34.624982: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 16:42:35.016806: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 16:42:35.049951: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 16:42:35.418844: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 16:42:35.447730: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 16:42:42.730863: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 16:42:42.760371: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response From sascha.dierberg at gmail.com Sat Apr 24 13:33:32 2021 From: sascha.dierberg at gmail.com (Sascha Dierberg) Date: Sat, 24 Apr 2021 15:33:32 +0200 Subject: [PATCH] Windows Bindings: handler for WSAEMSGSIZE added to avoid stop receiving data Message-ID: From: Sascha Dierberg Signed-off-by: Sascha Dierberg --- conn/bind_windows.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conn/bind_windows.go b/conn/bind_windows.go index fdd1c24..e78bef9 100644 --- a/conn/bind_windows.go +++ b/conn/bind_windows.go @@ -389,6 +389,10 @@ func (bind *afWinRingBind) Receive(buf []byte, isOpen *uint32) (int, Endpoint, e if err != nil { return 0, nil, err } + // WSAEMSGSIZE message too long error on Winsock2 + if results[0].Status == 10040 { + return 0, nil, nil + } if results[0].Status != 0 { return 0, nil, windows.Errno(results[0].Status) } -- 2.31.1 From Jason at zx2c4.com Tue Apr 27 02:09:58 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Mon, 26 Apr 2021 22:09:58 -0400 Subject: [PATCH] Windows Bindings: handler for WSAEMSGSIZE added to avoid stop receiving data In-Reply-To: References: Message-ID: Thanks for the patch. That's a nice bug you found. I fixed things slightly differently, but mentioned you in the commit: https://git.zx2c4.com/wireguard-go/commit/?id=8246d251ea9b9cbef07082bd69280a8f988cec0c From Jason at zx2c4.com Tue Apr 27 02:27:13 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Mon, 26 Apr 2021 22:27:13 -0400 Subject: WinTun access violation error 0xc0000005 during ReceivePacket call In-Reply-To: References: Message-ID: Thanks for the bug report. Fixed here: https://git.zx2c4.com/wireguard-go/commit/?id=097af6e1351ba80a18b8f63e9c07b9bd13b632bb From joshua.sjoding at scjalliance.com Tue Apr 27 03:39:15 2021 From: joshua.sjoding at scjalliance.com (Joshua Sjoding) Date: Mon, 26 Apr 2021 20:39:15 -0700 Subject: Intermittent handshake failures in WireGuard for Windows Message-ID: For some time now we've seen a recurring issue where WireGuard handshakes start failing. Sometimes this affects only a few peers, but often it affects all peers. These handshakes fail even when pings to the peer public addresses succeed. These failures happen after the peer DNS addresses have been resolved and the tunnel has been functioning for some time. Restarting the tunnel resolves the issue in nearly every case. An example log from WireGuard for Windows 0.3.11 is attached. If left alone for minutes or hours, sometimes the issue resolves itself given time, but not always. The logs I've seen include many lines like this one: 2021-04-22 11:44:57.635923: [TUN] [SCJ] peer(WBaN?k8hA) - Handshake did not complete after 5 seconds, retrying (try 8) With about 100 machines running WireGuard for Windows, this seems to happen with weekly and sometimes daily frequency. We've seen it happen on at least a dozen different Windows machines. This has been happening at least since WireGuard for Windows 0.3.8, and possibly as far back as 0.3.4 or longer. Our use case is staff connecting to a set of office networks from home, so the home network setup for some staff could be a factor. I'm pretty sure it can happen without a laptop being physically relocated. I'm pretty sure it has happened while staff were in the middle of actively using the tunnel. I don't think it's limited to a single internet service provider. I realize handshakes can fail for a number of network-related reasons. It might not be a WireGuard issue at all; there could be a firewall somewhere along the way that is doing some chicanery with connection tracking. I had hoped to narrow this down more before reporting it, but so far I haven't been able to identify a common set of conditions. This has happened often enough and in enough circumstances now that I felt it was time to at least mention it on the list. I would be happy to provide additional configuration details off-list. If there is any other information we can collect that would be helpful, we'd be happy to do investigative work on this. Thanks! Joshua Sjoding SCJ Alliance IT Specialist www.scjalliance.com -------------- next part -------------- 2021-04-22 06:54:30.679446: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 06:54:34.796821: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 06:54:45.693611: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 06:55:00.543421: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 06:55:04.765645: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 06:55:30.570797: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 06:55:34.777504: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 06:56:00.588317: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 06:56:04.792673: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 06:56:20.587209: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 06:56:20.640947: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 06:56:20.640947: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 06:56:24.784851: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 06:56:24.784851: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 06:56:24.799582: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 06:56:30.649504: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 06:56:34.860717: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 06:57:00.676912: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 06:57:22.200815: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 06:57:22.220732: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 06:57:32.952518: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 06:57:52.109191: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 06:58:22.125502: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 06:58:42.137949: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 06:58:42.137949: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 06:58:42.161198: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 06:59:22.285234: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 06:59:52.177715: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:00:22.198085: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:00:42.213607: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:00:42.213607: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:00:42.229805: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:01:22.229251: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:01:52.257558: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:02:22.305687: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:02:39.511096: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 07:02:42.318258: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:02:42.318258: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:02:42.336025: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:03:03.819646: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 07:03:03.853496: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 07:03:06.600007: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 07:03:08.377709: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 07:03:14.966060: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 07:03:53.734337: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 07:03:53.759729: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 07:03:53.946309: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 07:03:53.967295: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 07:04:04.284080: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 07:04:06.685026: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 07:04:19.229297: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 07:04:19.452872: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 07:04:42.346586: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:04:42.346586: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:04:42.362089: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:04:49.145302: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 07:04:55.347072: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 07:04:55.363929: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 07:05:05.691584: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 07:05:12.927267: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 07:05:18.493371: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 07:05:18.520029: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 07:05:18.621076: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 07:05:24.013126: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:05:29.527590: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 07:05:48.391785: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 07:05:53.950873: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:06:08.392515: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 07:06:08.436801: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 07:06:08.436801: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 07:06:46.996763: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:06:46.996763: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:06:47.016334: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:06:57.697381: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 07:07:08.958429: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 07:07:32.287556: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:08:19.373044: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:08:49.106708: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:09:09.123131: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:09:09.123131: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:09:09.136128: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:09:49.139081: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:10:19.436980: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:10:49.221485: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:11:09.262528: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:11:09.262528: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:11:09.284110: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:11:49.274227: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:12:03.855928: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 07:12:19.290883: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:12:49.311791: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:12:53.969689: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 07:13:15.058797: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:13:15.059179: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:13:15.059179: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:13:15.071934: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:13:44.969884: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:13:55.366914: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 07:14:14.990207: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:14:45.009070: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:15:08.439302: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 07:15:15.023584: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:15:15.117474: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:15:15.117474: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:15:15.117474: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:15:15.132986: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:15:45.044390: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:16:15.059581: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:16:45.085245: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:17:15.102000: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:17:35.122115: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:17:35.122115: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:17:35.136784: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:18:15.139211: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:18:45.168632: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:19:15.189481: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:19:35.205763: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:19:35.205763: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:19:35.225198: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:20:15.227164: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:20:45.253011: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:21:15.273941: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:21:35.289742: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:21:35.289742: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:21:35.303853: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:21:58.317262: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:22:15.338683: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:22:45.358622: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:23:15.630068: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:23:35.335543: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:23:35.335543: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:23:35.351000: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:23:40.057850: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 07:23:40.075616: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 07:23:50.435012: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 07:24:00.941516: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:24:21.167290: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:24:45.370244: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:25:15.383256: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:25:15.436663: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:25:35.397724: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:25:35.397724: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:25:35.411455: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:26:15.430008: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:26:45.449646: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:27:15.466086: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:27:35.505838: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:27:35.505838: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:27:35.528017: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:28:15.529289: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:28:45.558480: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:29:15.583063: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:29:35.598933: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:29:35.598933: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:29:35.620113: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:30:15.627165: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:30:45.640833: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:31:15.656556: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:31:35.681653: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:31:35.681653: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:31:35.703637: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:32:15.704003: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:32:40.077875: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 07:32:45.720879: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:33:15.949398: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:33:35.707266: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:33:35.707266: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:33:35.723377: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:34:15.734325: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:34:45.777815: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:35:15.796804: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:35:35.817051: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:35:35.817051: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:35:35.833911: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:36:15.837594: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:36:45.855818: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:36:58.669192: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:37:15.871375: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:37:35.885822: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:37:35.885822: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:37:35.901355: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:38:15.901212: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:38:45.925086: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:39:15.939904: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:39:35.956117: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:39:35.956117: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:39:35.971062: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:40:15.974734: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:40:45.997864: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:41:16.013211: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:41:36.035445: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:41:36.035445: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:41:36.049526: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:42:16.051955: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:42:46.073173: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:43:16.269806: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:43:36.079166: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:43:36.079166: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:43:36.095785: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:44:16.094781: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:44:46.110056: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:45:16.334421: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:45:36.144885: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:45:36.144885: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:45:36.160437: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:46:16.164832: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:46:46.184424: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:47:16.203326: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:47:36.219962: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:47:36.219962: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:47:36.234672: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:48:16.238002: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:48:46.254363: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:49:16.275065: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:49:36.291439: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:49:36.291439: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:49:36.310203: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:50:16.308229: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:50:46.324014: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:51:16.342388: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:51:36.357816: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:51:36.357816: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:51:36.372948: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:51:58.781698: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:52:16.378553: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:52:46.395065: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:53:16.589900: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:53:36.429091: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:53:36.429091: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:53:36.444155: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:54:16.451581: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:54:49.773737: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:55:01.294038: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:55:21.269622: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:55:36.528219: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:55:36.528219: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:55:36.541362: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:56:16.543793: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:56:46.568587: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:57:16.588495: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:57:36.616198: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:57:36.616198: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:57:36.630250: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 07:58:16.632664: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:58:46.652055: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:59:16.668597: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 07:59:36.683881: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 07:59:36.683881: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 07:59:36.703050: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:00:16.698986: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:00:46.714475: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:01:16.729997: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:01:36.749861: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:01:36.749861: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:01:36.765628: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:02:16.766214: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:02:46.781210: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:03:16.909176: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:03:36.794868: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:03:36.794868: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:03:36.808707: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:04:16.812878: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:04:46.826337: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:05:16.842038: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:05:16.973117: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:05:36.858320: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:05:36.858320: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:05:36.875415: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:06:16.907838: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:06:46.924384: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:06:59.116844: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:07:16.946188: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:07:36.974287: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:07:36.974287: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:07:36.997410: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:08:16.993592: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:08:47.025704: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:09:17.040251: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:09:37.059995: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:09:37.059995: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:09:37.077603: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:10:17.101842: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:10:47.115150: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:11:17.129398: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:11:37.143526: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:11:37.143526: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:11:37.159381: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:12:17.177554: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:12:47.193895: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:13:17.229258: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:13:37.171083: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:13:37.171083: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:13:37.186311: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:14:17.193119: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:14:47.218171: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:15:17.234561: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:15:37.249800: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:15:37.249800: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:15:37.275960: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:16:04.653875: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:16:09.961179: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 08:16:10.016016: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 08:16:20.818576: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 08:16:20.973221: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 08:16:22.028446: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:16:35.884374: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:16:47.300677: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:17:17.319894: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:17:37.336129: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:17:37.336129: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:17:37.352542: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:18:17.353365: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:18:47.370702: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:19:17.389705: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:19:37.405750: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:19:37.405750: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:19:37.422839: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:20:17.424326: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:20:47.442090: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:21:17.465032: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:21:37.480354: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:21:37.480354: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:21:37.493041: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:21:59.212244: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:22:17.503535: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:22:47.525764: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:23:17.803639: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:23:37.542018: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:23:37.542018: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:23:37.560271: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:24:17.556329: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:24:47.574681: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:25:10.018737: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 08:25:17.591469: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:25:17.617176: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:25:37.605489: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:25:37.605489: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:25:37.630492: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:25:39.834029: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 08:25:39.862905: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 08:25:50.092072: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 08:25:50.379672: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:26:01.688639: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:26:21.613508: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:26:47.642072: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:27:17.660670: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:27:37.675983: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:27:37.675983: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:27:37.691385: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:28:17.708867: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:28:47.725752: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:29:10.383031: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 08:29:10.405017: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 08:29:11.033678: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 08:29:11.057438: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 08:29:11.453855: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 08:29:11.472143: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 08:29:21.459404: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 08:29:21.509130: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 08:29:31.055470: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:29:34.812614: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 08:29:37.782257: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:29:37.782257: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:29:37.795963: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:29:44.608715: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 08:29:48.213691: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:30:17.812315: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:30:44.352048: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 08:30:44.391975: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 08:30:47.834693: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:30:55.616489: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 08:30:55.761457: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 08:30:55.769969: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 08:30:55.791773: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:31:17.857777: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:31:37.874560: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:31:37.874560: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:31:37.888513: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:32:17.890909: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:32:47.906819: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:33:18.123454: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:33:47.886424: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:34:07.905292: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:34:07.905292: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:34:07.917652: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:34:47.922811: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:35:17.939684: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:35:18.187070: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:35:46.246597: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 08:35:46.397440: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 08:35:47.112601: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 08:35:47.132107: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 08:35:47.646283: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 08:35:47.677631: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 08:35:58.273473: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 08:36:00.127602: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 08:36:00.158855: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:36:12.415730: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 08:36:12.446223: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:36:12.459731: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:36:12.459731: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:36:12.459731: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:36:12.473314: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:36:32.713463: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:36:42.340228: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:37:11.337693: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:37:12.356574: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:37:32.753961: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:37:42.394564: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:38:02.371557: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 08:38:02.396704: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 08:38:02.396704: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:38:02.773273: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:38:02.794701: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:38:11.473837: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 08:38:12.424078: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:38:22.790378: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:38:22.790378: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:38:22.809660: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:38:42.479708: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:38:52.957644: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:38:52.974530: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:39:03.709016: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:39:22.852559: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:39:52.869948: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:40:22.883688: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:40:42.893195: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:40:42.893195: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:40:42.917065: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:40:52.901107: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:41:22.917974: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:41:52.933919: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:42:22.947966: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:42:42.963980: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:42:42.963980: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:42:42.979180: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:43:04.480471: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 08:43:04.505392: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 08:43:35.135648: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 08:44:43.014891: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:44:43.014891: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:44:43.067221: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:44:47.679341: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 08:45:07.505632: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 08:45:07.630987: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 08:45:07.630987: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 08:45:11.056377: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 08:45:11.079688: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 08:45:11.262823: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 08:45:11.284421: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 08:45:21.531925: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 08:45:26.448203: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 08:45:26.523466: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 08:45:26.547907: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 08:45:31.427582: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 08:45:48.157286: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 08:45:48.188272: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:45:48.204026: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:46:17.980631: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:46:17.987425: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:46:43.615576: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:46:43.615576: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:46:43.631215: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:46:47.998277: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:47:18.020587: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:47:38.013152: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 08:47:38.036596: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 08:47:38.036602: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:47:48.045235: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:48:18.064758: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:48:29.472083: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:48:29.486519: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:48:40.219339: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:48:49.347495: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:48:49.347495: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:48:49.363059: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:49:29.363564: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:49:59.387727: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:50:29.409403: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:50:29.545916: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:50:49.442798: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:50:49.442798: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:50:49.475700: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:51:29.456582: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:51:39.640620: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 08:51:39.674668: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 08:52:01.649495: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 08:52:08.638991: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 08:52:08.663392: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 08:52:08.914969: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 08:52:08.944665: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 08:52:11.013345: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 08:52:11.028893: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 08:52:19.116723: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:52:21.162539: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 08:52:21.276697: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 08:52:21.371584: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 08:52:34.584964: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 08:52:35.707940: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 08:52:35.741051: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:52:40.108168: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:52:50.810930: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 08:52:57.934501: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:52:57.934501: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:52:57.955232: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:53:05.715315: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:53:18.771006: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:53:18.771006: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:53:48.617887: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:53:48.630902: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:54:18.638487: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:54:18.648900: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:54:18.648900: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 08:54:18.671821: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 08:54:18.671821: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:54:48.716726: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 08:55:01.218009: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:55:01.218009: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:55:01.231692: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:55:27.770642: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:55:27.789770: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:55:38.523148: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 08:55:57.729820: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:56:27.749655: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:57:01.997819: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:57:01.997819: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:57:01.997819: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:57:02.017397: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:57:27.795897: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:57:27.847571: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:57:57.814874: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:58:27.830881: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:58:57.846385: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:59:17.807455: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 08:59:17.807455: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 08:59:17.824985: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 08:59:27.865625: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 08:59:57.887994: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:00:27.909199: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:00:39.676448: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:00:57.928444: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:01:08.947661: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:01:11.030741: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:01:17.834995: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:01:17.834995: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:01:17.851167: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:01:27.946676: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:01:57.963564: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:02:27.986163: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:02:58.007067: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:03:18.673351: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:03:19.080952: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:03:19.080952: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:03:19.080952: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:03:19.104770: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:03:48.983713: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:04:19.007300: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:04:49.024963: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:05:19.044731: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:05:39.063959: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:05:39.063959: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:05:39.080349: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:06:19.082975: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:06:49.100712: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:06:59.751237: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:07:19.119570: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:07:39.137388: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:07:39.137388: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:07:39.155812: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:08:19.160647: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:08:49.175216: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:09:19.197550: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:09:39.217055: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:09:39.217055: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:09:39.235390: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:10:19.231642: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:10:49.258101: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:11:19.281592: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:11:34.783818: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 09:11:34.801558: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 09:11:34.835014: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 09:11:34.859413: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 09:11:35.873074: [TUN] [SCJ] Binding v6 socket to interface 0 (blackhole=false) 2021-04-22 09:11:35.877610: [TUN] [SCJ] Binding v4 socket to interface 0 (blackhole=false) 2021-04-22 09:29:36.767277: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:29:36.767277: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 09:29:36.767277: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 09:29:36.767277: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:29:36.768340: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 09:29:36.768340: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 09:29:36.768340: [TUN] [SCJ] peer(1hMF?tqBw) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:29:36.768340: [TUN] [SCJ] peer(1hMF?tqBw) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 09:29:36.768340: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 09:29:38.756962: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 09:29:38.813454: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 09:29:39.295766: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 09:29:39.334085: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 09:29:39.334385: [TUN] [SCJ] Binding v4 socket to interface 26 (blackhole=false) 2021-04-22 09:29:39.334914: [TUN] [SCJ] Binding v6 socket to interface 26 (blackhole=false) 2021-04-22 09:29:42.010667: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 09:29:42.011212: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 09:29:42.011212: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 09:29:42.011212: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 09:29:42.030651: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 09:29:42.037327: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 09:29:42.058032: [TUN] [SCJ] peer(YEM2?4hlk) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 09:29:42.058032: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 09:29:42.071108: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 09:29:52.104188: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 09:29:52.342157: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 09:29:52.499560: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 09:30:06.934478: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 09:30:17.117810: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 09:30:25.077022: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 09:30:28.197404: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:30:43.577568: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:30:49.140655: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 09:31:19.140947: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:31:23.233027: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 09:31:48.860970: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 09:31:48.860970: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 09:31:48.865746: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:31:48.865838: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 09:31:48.883589: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 09:31:48.883589: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 09:31:48.884179: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 09:31:48.884179: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:32:18.878741: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 09:32:18.888092: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:32:34.916072: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:32:53.045008: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 09:33:04.564528: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 09:33:10.257220: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:33:21.008738: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:33:50.826841: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:33:50.826841: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 09:33:50.845074: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 09:33:50.845074: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:35:21.062059: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:37:10.932268: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:37:10.932268: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:37:21.152825: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:38:38.853770: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:38:42.080132: [TUN] [SCJ] peer(heWL?uHXY) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:38:42.112896: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:39:11.019570: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:39:11.019570: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:39:11.039865: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:40:48.941942: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:41:19.517021: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:41:19.517286: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:41:19.517286: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:41:19.532957: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:41:49.316047: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:42:19.335373: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:43:19.620287: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:43:19.620386: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:43:19.620386: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:43:19.635895: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:44:42.646832: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 09:44:42.702810: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 09:44:42.817402: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 09:44:42.840506: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 09:44:52.916617: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 09:44:52.978233: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 09:44:53.237799: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 09:45:03.985337: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 09:45:19.643794: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:45:19.647081: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:45:19.647081: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:45:19.662480: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:46:58.551608: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 09:46:58.584637: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 09:46:58.584637: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 09:47:19.456100: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:49:09.450229: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:49:09.450229: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:49:19.530023: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:51:09.510290: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:51:09.510290: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:51:09.527569: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:51:19.866735: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:51:49.675086: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:52:19.702196: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 09:52:54.543331: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 09:52:54.575333: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 09:53:05.015601: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 09:53:09.717636: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:53:09.717636: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:53:09.741170: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:53:16.535989: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 09:53:36.757059: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 09:53:42.880829: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 09:55:09.745536: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:55:09.745536: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:55:09.766493: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:57:19.807886: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:57:19.807988: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:57:19.807988: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:57:19.821627: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:59:19.900864: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:59:19.900864: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 09:59:19.900864: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 09:59:19.914888: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 09:59:40.923457: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 09:59:40.956570: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 09:59:41.036815: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 09:59:41.063042: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 09:59:41.481622: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 09:59:41.526616: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 09:59:51.853404: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 09:59:51.870724: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:00:02.072863: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:00:02.099287: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 10:00:09.206307: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:00:21.805255: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:00:37.387059: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:00:51.828815: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:01:20.190166: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:01:20.190166: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:01:20.190166: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:01:20.211662: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:01:50.069169: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:01:57.418073: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:01:57.447926: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:01:57.447926: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:02:20.085266: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:03:20.253713: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:03:20.254614: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:03:20.254614: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:03:20.268774: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:03:57.451786: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:03:57.480673: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:03:57.480673: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:04:12.659002: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:05:20.321957: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:05:20.322296: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:05:20.322296: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:05:20.337157: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:05:57.482364: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:05:57.519578: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:05:57.519578: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:06:18.076928: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 10:06:18.098340: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 10:06:18.307367: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 10:06:18.339458: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 10:06:28.349204: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:06:38.833842: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:06:38.916393: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 10:06:47.063625: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:07:06.301273: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:07:08.778833: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:07:09.011796: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:07:26.078755: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:07:26.078755: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:07:26.094412: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:07:39.033197: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:08:06.102041: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:08:09.048713: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:08:28.827344: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:08:28.863545: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:08:28.863545: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:08:29.049460: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 10:08:29.073782: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 10:08:29.073782: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:08:36.123428: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:09:06.142530: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:09:06.367568: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:09:09.080946: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:09:20.149445: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:09:20.189338: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:09:26.261699: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:09:26.261699: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:09:26.284510: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:09:30.913143: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:09:41.949447: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:10:11.742858: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:10:28.867785: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:10:28.897138: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:10:28.897138: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:10:41.791709: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:11:20.508664: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:11:40.393879: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:11:40.393879: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:11:40.410754: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:12:20.417581: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:12:28.924550: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:12:28.971871: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:12:28.971871: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:12:50.433970: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:13:27.996222: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:13:38.235994: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:13:58.151161: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:13:58.151161: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:13:58.167673: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:14:38.188674: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:14:39.091417: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:14:43.135610: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:14:43.170863: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:14:43.170863: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:14:53.449092: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:15:04.182197: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:15:18.340655: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 10:15:38.299990: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:16:54.074157: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:16:54.105264: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:16:54.105264: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:17:28.181195: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:17:28.181195: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:17:29.074705: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 10:17:38.378140: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:19:04.338219: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:19:28.230751: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:19:28.230751: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:19:28.259735: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:20:54.135390: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 10:20:54.135390: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 10:21:04.384305: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:21:16.617225: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:21:20.826910: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:21:40.761696: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:21:40.761696: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:21:40.776849: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:22:20.782038: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:22:54.215230: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 10:22:54.215230: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 10:22:54.243672: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:23:04.417909: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 10:23:04.439625: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 10:23:20.893878: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:23:36.294618: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:24:54.274241: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 10:24:54.274241: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 10:24:54.303399: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:25:10.848317: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:25:10.848317: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:25:20.963932: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:26:02.430659: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 10:26:02.448245: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 10:26:02.523280: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 10:26:02.542858: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 10:26:02.542858: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:26:12.584484: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:26:12.916882: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 10:26:13.186830: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:26:23.956594: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 10:26:34.890543: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 10:26:34.924932: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 10:26:45.329665: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 10:26:48.202085: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:26:54.310362: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 10:26:54.310362: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 10:26:54.339237: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:26:56.705648: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:26:58.094769: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 10:26:58.439144: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:26:58.482270: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 10:27:10.523314: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 10:27:16.422405: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:27:16.422405: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:27:16.436856: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:27:56.441565: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:28:26.469315: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:28:31.108968: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:29:04.386194: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:29:04.392592: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 10:29:04.392592: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 10:29:04.416209: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:29:04.449091: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:29:14.884322: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:29:24.162486: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:29:24.162486: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:29:24.181499: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:29:53.539863: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:29:55.396429: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:30:04.292691: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:30:09.733413: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:30:51.918221: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:31:03.189406: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:31:12.936024: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 10:31:12.936024: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 10:31:12.981347: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:31:21.408980: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:31:41.135859: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:31:41.135859: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:31:41.151411: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:32:21.155098: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:33:21.216461: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:35:02.449762: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 10:35:02.544532: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 10:35:11.201733: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:35:11.201733: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:35:21.536274: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:35:34.925518: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 10:37:11.296579: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:37:11.296579: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:37:11.321563: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:38:10.601917: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:38:10.632760: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:38:20.663213: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:39:11.331114: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:39:11.331114: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:39:11.358458: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:41:11.370413: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:41:11.370413: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:41:11.392516: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:41:21.726776: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:41:51.504392: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:42:21.526451: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:43:11.539383: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:43:11.539383: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:43:11.563962: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:44:43.452675: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:44:43.504757: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:44:53.896121: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:45:04.647101: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:45:11.568838: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:45:11.568838: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:45:11.587450: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:47:11.591051: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:47:11.591051: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:47:11.610780: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:49:21.726527: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:49:21.726527: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:49:21.726527: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:49:21.742195: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:49:39.470264: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:49:39.506628: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:49:39.644481: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 10:49:39.665945: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 10:49:57.261895: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:49:57.510038: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:50:20.290131: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 10:50:20.315819: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 10:50:23.537070: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 10:50:23.550975: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 10:50:30.574781: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 10:50:34.038561: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 10:50:45.575317: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 10:50:45.640199: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:50:45.676681: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 10:50:58.237228: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:51:01.034239: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:51:21.990041: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:51:21.995532: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:51:22.044862: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:51:22.050933: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:51:22.050933: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:51:22.070220: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:51:33.007925: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:51:41.836382: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 10:51:41.869510: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 10:51:41.869510: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:51:41.905610: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:51:41.950485: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:51:41.950485: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:51:51.859838: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:52:21.905061: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 10:52:21.911415: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:52:21.974161: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:52:51.925810: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 10:53:20.009470: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:53:22.123040: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:53:22.123401: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:53:22.123401: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:53:22.141065: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:53:25.386578: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:53:30.761155: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 10:53:35.879089: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 10:55:14.603233: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:55:14.630781: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:55:22.174235: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:55:22.174332: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:55:22.174332: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:55:22.189330: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:55:24.666149: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 10:57:22.235504: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:57:22.235504: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake initiation 2021-04-22 10:57:22.235504: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake response 2021-04-22 10:57:22.250195: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:59:20.316774: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 10:59:22.047492: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 10:59:23.552152: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 10:59:43.700919: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 10:59:43.733723: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 10:59:53.987588: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:00:04.743753: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:00:21.977405: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:00:22.005734: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:00:22.179145: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:00:22.205096: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:00:22.352566: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:00:22.373107: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:00:32.132116: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:00:32.683280: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:00:42.632911: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:00:42.882675: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:00:42.924210: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:00:53.640292: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:00:53.690188: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:01:12.687413: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:01:32.287319: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:01:32.608583: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:01:35.636147: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:01:47.144317: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:01:47.177923: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:01:51.742761: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:01:53.192890: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:01:53.219289: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:01:53.219289: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:02:02.561213: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:02:03.260016: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:02:14.843624: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:02:16.962128: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:02:23.492918: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:02:23.735145: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:02:23.756615: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:02:23.757126: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:02:23.785062: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:02:23.806209: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:02:23.806209: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:02:27.915500: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:02:29.883630: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:02:29.908461: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:02:29.908461: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:02:33.980731: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:02:33.992917: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:02:34.024900: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:02:40.186731: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:02:46.016883: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:02:46.025128: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:02:46.058240: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:02:52.218610: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:03:04.250354: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:03:15.835247: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:03:23.400017: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:03:34.403119: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:03:34.408490: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:03:34.443978: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:03:40.602287: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:03:44.896317: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:03:44.904241: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:03:44.937729: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:03:53.146332: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:04:04.751726: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:04:04.786966: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:04:04.786966: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:04:05.182456: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:04:17.210386: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:04:26.200607: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:04:26.225650: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:04:26.225650: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:04:26.371436: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:04:26.393056: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:04:26.393056: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:04:30.266447: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:04:31.910641: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:04:31.927486: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:04:31.927486: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:04:36.359411: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:04:36.619941: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:04:36.651654: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:04:42.052676: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:04:46.889120: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:04:47.748886: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:04:47.771293: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:04:58.338969: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:05:03.540406: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:05:15.563884: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:05:20.381993: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:05:36.247847: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:05:37.034786: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:05:37.080153: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:05:47.778609: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:05:47.784863: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:05:47.817999: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:05:48.602463: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:06:00.634043: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:06:07.643941: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:06:07.667373: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:06:07.667449: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:06:17.649149: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:06:17.671116: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:06:22.906625: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:06:27.595528: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:06:27.616957: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:06:27.616957: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:06:27.632613: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:06:27.667751: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:06:27.667751: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:06:34.681357: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:06:36.549419: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:06:36.574245: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:06:36.574245: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:06:37.699611: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:06:37.705319: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:06:38.019607: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:06:46.713546: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:06:52.028115: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:06:52.040590: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:06:52.074610: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:06:58.744676: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:07:10.777364: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:07:21.845249: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:07:21.869885: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:07:22.809671: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:07:34.841214: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:07:40.969540: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:07:50.924749: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:07:50.929541: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:07:56.341258: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:07:58.905550: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:08:01.673183: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:08:10.752519: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:08:10.782019: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:08:10.782019: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:08:10.937646: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:08:22.969365: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:08:33.791231: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:08:33.810927: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:08:33.810927: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:08:33.937758: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:08:33.977822: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:08:33.977822: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:08:34.745099: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:08:36.578633: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:08:36.641537: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:08:36.641537: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:08:43.899456: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:08:44.169387: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:08:44.201502: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:08:47.050389: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:08:54.408183: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:08:54.440576: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:08:54.649792: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:08:58.809357: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:09:11.096269: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:09:23.916863: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:09:24.391562: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:09:35.928576: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:09:44.827367: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:09:44.839896: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:09:45.128655: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:09:47.961697: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:09:55.593130: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:09:55.624742: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:09:59.156824: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:09:59.736425: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:10:11.192483: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:10:11.768909: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:10:15.400218: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:10:15.538660: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:10:15.538660: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:10:23.800879: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:10:30.908784: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:10:35.544414: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:10:35.559530: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:10:35.559530: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:10:35.708492: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:10:35.737534: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:10:35.737534: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:10:36.603615: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:10:38.404794: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:10:38.423026: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:10:38.423026: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:10:45.755115: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:10:45.768259: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:10:46.056080: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:10:48.634818: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:10:56.264891: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:10:56.298045: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:10:56.505337: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:11:00.664672: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:11:25.002253: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:11:26.249294: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:11:37.020672: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:11:46.168455: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:11:46.184382: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:11:46.215821: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:11:49.048626: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:11:56.679804: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:11:56.714629: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:11:56.924360: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:12:16.624215: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:12:16.654087: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:12:16.654087: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:12:18.910739: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:12:28.636653: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:12:38.911452: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:12:38.932456: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:12:38.932456: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:12:56.703223: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:13:18.978021: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:13:47.773977: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 11:13:48.994203: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:13:49.118406: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:13:52.898036: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:13:52.918026: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:13:53.038957: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:13:53.060021: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:14:03.131666: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:14:03.151955: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:14:03.433519: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:14:03.450501: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:14:13.642987: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:14:13.673501: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:14:13.881760: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:14:15.487337: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:14:33.625256: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:14:33.659245: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:14:33.659245: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:14:45.282369: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:14:45.282369: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:14:45.311029: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:14:45.311029: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:14:54.334750: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:15:03.103437: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:15:05.087603: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:15:16.676137: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:15:33.564562: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:16:02.909151: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:16:32.927378: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:16:52.928665: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:16:52.944594: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:16:52.944594: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:16:54.893991: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:16:54.935625: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:16:54.935625: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:17:03.167411: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:17:32.962981: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:17:52.044511: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:17:52.064632: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:17:52.203255: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:17:52.221104: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:18:02.243419: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:18:02.254682: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:18:02.545443: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:18:02.561736: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:18:12.784885: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:18:12.987798: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:18:13.009443: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:18:32.429191: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:18:42.759047: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:18:48.894468: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:19:02.759938: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:19:02.790192: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:19:02.790192: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:19:08.777043: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:19:08.797590: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:19:08.797590: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:19:18.798242: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:19:48.817845: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:20:13.055979: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:20:18.845362: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:20:48.870977: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:21:08.869445: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:21:08.894966: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:21:08.894966: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:21:23.267820: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:21:52.961934: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:22:02.853086: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 11:22:02.853086: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 11:22:13.118081: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:22:23.024772: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:22:53.047428: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:23:13.023271: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:23:13.051779: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:23:13.051779: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:23:23.066095: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:23:53.082620: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:24:02.939818: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 11:24:02.939818: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 11:24:02.969604: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:24:23.097971: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:24:53.116682: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:25:13.118377: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:25:13.143624: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:25:13.143624: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:25:53.165423: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:26:13.247259: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:26:13.247259: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake initiation 2021-04-22 11:26:13.247259: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake response 2021-04-22 11:26:13.273545: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:26:23.182081: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:26:52.069085: [TUN] [SCJ] peer(8muY?GdG8) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 11:26:52.225495: [TUN] [SCJ] peer(WBaN?k8hA) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 11:26:53.234082: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:27:13.235386: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:27:13.259172: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:27:13.259172: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:27:53.280908: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:28:13.053552: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:28:23.297146: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:28:53.313538: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:29:13.313754: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:29:13.341900: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:29:13.341900: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:29:22.617261: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:29:22.639815: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:29:32.678440: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:29:53.356561: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:29:54.432467: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:30:05.183882: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:30:23.377547: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:30:53.392517: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:31:04.107311: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:31:04.124718: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:31:04.251512: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:31:04.269025: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:31:13.345003: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:31:13.362340: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:31:13.362340: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:31:24.283603: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:31:29.711228: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:31:30.837881: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:31:30.871317: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:31:30.871317: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:31:41.447052: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:31:54.231359: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:31:55.570541: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:32:14.469805: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:32:14.771860: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:32:17.042585: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:32:23.231809: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:32:28.563029: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:32:28.592129: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:32:36.494597: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:32:36.799744: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:33:05.406799: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:33:06.416120: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:33:06.416257: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:33:06.455806: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:33:06.455806: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:33:06.649206: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:33:26.649668: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:33:26.672545: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:33:26.672545: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:33:28.518172: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:33:36.447589: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:34:06.462860: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:34:06.686829: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:34:18.494273: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:34:18.516212: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:34:18.516212: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:34:28.607095: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:34:37.092848: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:34:47.822004: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:34:47.871550: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:35:04.006707: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:35:33.700680: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:35:33.700802: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:35:33.721430: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:35:33.721430: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:36:03.742678: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:36:18.522993: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:36:18.560517: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:36:18.560517: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:36:33.764687: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:36:36.230185: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:36:36.245658: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:36:46.335361: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:36:50.714706: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:36:50.746835: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:37:00.670750: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:37:00.944145: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:37:01.248363: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:37:11.421006: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:37:11.437130: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:37:11.471832: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:37:31.055820: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:37:41.217493: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:37:51.056920: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:37:51.072115: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:37:51.072115: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:38:11.247188: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:38:31.093382: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:38:56.442459: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:38:56.480104: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:38:56.480104: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:38:56.545067: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:38:56.567573: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:38:56.567573: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:38:56.712616: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:38:56.824292: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:38:56.824292: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:39:06.623768: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:39:07.155644: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:39:07.181847: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:39:09.758796: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:39:17.373717: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:39:17.393978: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:39:17.435973: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:39:20.511108: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:39:33.328917: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:39:45.343023: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:39:47.290651: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:39:47.316965: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:39:59.769509: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:39:59.791814: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:39:59.791814: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:40:09.848275: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:40:09.870912: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:40:09.903659: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:40:09.918285: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:40:21.641697: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:40:21.645336: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:40:21.687996: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:40:39.855041: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:40:51.455393: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:40:51.469449: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:41:00.357037: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:41:00.383888: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:41:00.383888: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:41:00.419777: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:41:00.483531: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:41:00.483531: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:41:09.570256: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:41:10.526353: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:41:10.797232: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:41:23.852929: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:41:23.902309: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:41:25.885643: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:41:55.651674: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:41:57.900453: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:42:03.326014: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:42:08.652968: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:42:23.102526: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:42:23.117609: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:42:23.117609: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:42:25.691585: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:42:33.117801: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:42:44.358335: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:42:44.414265: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:42:54.464288: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:42:54.767848: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:42:56.843422: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:43:04.952756: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:43:04.985046: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:43:05.009644: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:43:09.374533: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:43:19.012907: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:43:19.027502: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:43:19.027502: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:43:24.873947: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:43:24.913621: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:43:24.913621: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:43:29.293267: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:43:29.622372: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:44:01.534188: [TUN] [SCJ] peer(heWL?uHXY) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:01.534188: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:04.218647: [TUN] [SCJ] peer(8muY?GdG8) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:04.218647: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:04.394243: [TUN] [SCJ] peer(1hMF?tqBw) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:04.394243: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:06.521047: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:44:06.534852: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:44:06.602968: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 11:44:06.602968: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:09.380036: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 11:44:09.380036: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:09.569382: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 11:44:09.569382: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:11.639673: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 11:44:11.639673: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:14.683141: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 11:44:14.683141: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:14.872704: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 11:44:14.872704: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:16.573758: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:44:16.672173: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 11:44:16.672173: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:17.022104: [TUN] [SCJ] peer(heWL?uHXY) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:19.807534: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 11:44:19.807534: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:20.005156: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 11:44:20.005156: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:20.778314: [TUN] [SCJ] peer(8muY?GdG8) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:21.323729: [TUN] [SCJ] peer(WBaN?k8hA) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:21.323729: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:21.806098: [TUN] [SCJ] peer(1hMF?tqBw) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:21.856930: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 11:44:21.856930: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:24.930544: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 11:44:24.930608: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:25.191639: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 11:44:25.191639: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:26.431788: [TUN] [SCJ] peer(WBaN?k8hA) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 11:44:26.431788: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:27.108042: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 11:44:27.108042: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:30.247187: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 11:44:30.247187: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:30.250843: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 11:44:30.250843: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:31.549985: [TUN] [SCJ] peer(WBaN?k8hA) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 11:44:31.549985: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:32.312671: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 11:44:32.312671: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:35.150496: [TUN] [SCJ] peer(heWL?uHXY) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:35.350935: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 11:44:35.350935: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:35.450733: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 11:44:35.450733: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:36.712071: [TUN] [SCJ] peer(WBaN?k8hA) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 11:44:36.712071: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:37.568127: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 2) 2021-04-22 11:44:37.568127: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:40.474893: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 11:44:40.474893: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:40.623393: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 11:44:40.623393: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:42.004113: [TUN] [SCJ] peer(WBaN?k8hA) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 11:44:42.004113: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:42.770244: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 3) 2021-04-22 11:44:42.770244: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:45.678152: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 6) 2021-04-22 11:44:45.678152: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:45.851942: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 6) 2021-04-22 11:44:45.851942: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:47.302897: [TUN] [SCJ] peer(WBaN?k8hA) - Handshake did not complete after 5 seconds, retrying (try 6) 2021-04-22 11:44:47.302897: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:48.069509: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 4) 2021-04-22 11:44:48.069509: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:50.698622: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 7) 2021-04-22 11:44:50.698622: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:51.008858: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 7) 2021-04-22 11:44:51.008858: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:52.598219: [TUN] [SCJ] peer(WBaN?k8hA) - Handshake did not complete after 5 seconds, retrying (try 7) 2021-04-22 11:44:52.598219: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:53.345007: [TUN] [SCJ] peer(heWL?uHXY) - Handshake did not complete after 5 seconds, retrying (try 5) 2021-04-22 11:44:53.345007: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:44:55.976691: [TUN] [SCJ] peer(heWL?uHXY) - Retrying handshake because we stopped hearing back after 15 seconds 2021-04-22 11:44:55.993566: [TUN] [SCJ] peer(8muY?GdG8) - Handshake did not complete after 5 seconds, retrying (try 8) 2021-04-22 11:44:55.993566: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:44:56.046978: [TUN] [SCJ] peer(1hMF?tqBw) - Handshake did not complete after 5 seconds, retrying (try 8) 2021-04-22 11:44:56.046978: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:44:57.635923: [TUN] [SCJ] peer(WBaN?k8hA) - Handshake did not complete after 5 seconds, retrying (try 8) 2021-04-22 11:44:57.635923: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:44:57.730751: [TUN] [SCJ] Device closing 2021-04-22 11:44:57.750682: [TUN] [SCJ] Routine: TUN reader - stopped 2021-04-22 11:44:57.878908: [TUN] [SCJ] Routine: event worker - stopped 2021-04-22 11:44:57.878908: [TUN] [SCJ] Routine: receive incoming v4 - stopped 2021-04-22 11:44:57.878908: [TUN] [SCJ] Routine: receive incoming v6 - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(WBaN?k8hA) - Stopping... 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(WBaN?k8hA) - Routine: sequential sender - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(WBaN?k8hA) - Routine: sequential receiver - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(c9ys?npmo) - Stopping... 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(c9ys?npmo) - Routine: sequential sender - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(c9ys?npmo) - Routine: sequential receiver - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(1hMF?tqBw) - Stopping... 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(1hMF?tqBw) - Routine: sequential sender - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(1hMF?tqBw) - Routine: sequential receiver - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(heWL?uHXY) - Stopping... 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(heWL?uHXY) - Routine: sequential sender - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(heWL?uHXY) - Routine: sequential receiver - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(YnSj?521U) - Stopping... 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(YnSj?521U) - Routine: sequential sender - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(YnSj?521U) - Routine: sequential receiver - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(8muY?GdG8) - Stopping... 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(8muY?GdG8) - Routine: sequential sender - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(8muY?GdG8) - Routine: sequential receiver - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(YEM2?4hlk) - Stopping... 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(YEM2?4hlk) - Routine: sequential sender - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] peer(YEM2?4hlk) - Routine: sequential receiver - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Device closed 2021-04-22 11:44:57.880462: [TUN] [SCJ] Shutting down 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: handshake worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: decryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880462: [TUN] [SCJ] Routine: encryption worker - stopped 2021-04-22 11:44:57.880981: [MGR] [SCJ] Tunnel service tracker finished 2021-04-22 11:45:00.201937: [TUN] [SCJ] Starting WireGuard/0.3.11 (Windows 10.0.18363; amd64) 2021-04-22 11:45:00.201937: [TUN] [SCJ] Watching network interfaces 2021-04-22 11:45:00.204528: [TUN] [SCJ] Resolving DNS names 2021-04-22 11:45:01.693957: [TUN] [SCJ] Creating Wintun interface 2021-04-22 11:45:01.763799: [TUN] [SCJ] [Wintun] CreateAdapter: Creating adapter 2021-04-22 11:45:01.901090: [TUN] [SCJ] [Wintun] SelectDriver: Using existing driver 0.10 2021-04-22 11:45:02.242370: [TUN] [SCJ] Using Wintun/0.10 2021-04-22 11:45:02.242370: [TUN] [SCJ] Enabling firewall rules 2021-04-22 11:45:02.264698: [TUN] [SCJ] Dropping privileges 2021-04-22 11:45:02.265214: [TUN] [SCJ] Creating interface instance 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Setting interface configuration 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: handshake worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: decryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: encryption worker - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: TUN reader - started 2021-04-22 11:45:02.265724: [TUN] [SCJ] Routine: event worker - started 2021-04-22 11:45:02.266241: [TUN] [SCJ] UAPI: Updating private key 2021-04-22 11:45:02.266241: [TUN] [SCJ] UAPI: Removing all peers 2021-04-22 11:45:02.266241: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Created 2021-04-22 11:45:02.266241: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Updating endpoint 2021-04-22 11:45:02.266241: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Updating persistent keepalive interval 2021-04-22 11:45:02.266241: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Removing all allowedips 2021-04-22 11:45:02.266241: [TUN] [SCJ] peer(1hMF?tqBw) - UAPI: Adding allowedip 2021-04-22 11:45:02.266241: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Created 2021-04-22 11:45:02.266241: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Updating endpoint 2021-04-22 11:45:02.266744: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Updating persistent keepalive interval 2021-04-22 11:45:02.266744: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Removing all allowedips 2021-04-22 11:45:02.266744: [TUN] [SCJ] peer(heWL?uHXY) - UAPI: Adding allowedip 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Created 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Updating endpoint 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Updating persistent keepalive interval 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Removing all allowedips 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YnSj?521U) - UAPI: Adding allowedip 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Created 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Updating endpoint 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Updating persistent keepalive interval 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Removing all allowedips 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(8muY?GdG8) - UAPI: Adding allowedip 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Created 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Updating endpoint 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Updating persistent keepalive interval 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Removing all allowedips 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(YEM2?4hlk) - UAPI: Adding allowedip 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Created 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Updating endpoint 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Updating persistent keepalive interval 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Removing all allowedips 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(WBaN?k8hA) - UAPI: Adding allowedip 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Created 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Updating endpoint 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Updating persistent keepalive interval 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Removing all allowedips 2021-04-22 11:45:02.266760: [TUN] [SCJ] peer(c9ys?npmo) - UAPI: Adding allowedip 2021-04-22 11:45:02.266760: [TUN] [SCJ] Bringing peers up 2021-04-22 11:45:02.269954: [TUN] [SCJ] UDP bind has been updated 2021-04-22 11:45:02.269954: [TUN] [SCJ] peer(c9ys?npmo) - Starting... 2021-04-22 11:45:02.269954: [TUN] [SCJ] peer(1hMF?tqBw) - Starting... 2021-04-22 11:45:02.269954: [TUN] [SCJ] peer(heWL?uHXY) - Starting... 2021-04-22 11:45:02.269954: [TUN] [SCJ] peer(YnSj?521U) - Starting... 2021-04-22 11:45:02.269954: [TUN] [SCJ] peer(8muY?GdG8) - Starting... 2021-04-22 11:45:02.269954: [TUN] [SCJ] peer(YEM2?4hlk) - Starting... 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(WBaN?k8hA) - Starting... 2021-04-22 11:45:02.270473: [TUN] [SCJ] Interface state was Down, requested Up, now Up 2021-04-22 11:45:02.270473: [TUN] [SCJ] Monitoring default v4 routes 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(1hMF?tqBw) - Routine: sequential sender - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] Routine: receive incoming v4 - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] Binding v4 socket to interface 26 (blackhole=false) 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(c9ys?npmo) - Routine: sequential sender - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(c9ys?npmo) - Routine: sequential receiver - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(YnSj?521U) - Routine: sequential receiver - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(1hMF?tqBw) - Routine: sequential receiver - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(heWL?uHXY) - Routine: sequential sender - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(heWL?uHXY) - Routine: sequential receiver - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(YnSj?521U) - Routine: sequential sender - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(YEM2?4hlk) - Routine: sequential sender - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(8muY?GdG8) - Routine: sequential sender - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(8muY?GdG8) - Routine: sequential receiver - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(YEM2?4hlk) - Routine: sequential receiver - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(WBaN?k8hA) - Routine: sequential sender - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] peer(WBaN?k8hA) - Routine: sequential receiver - started 2021-04-22 11:45:02.270473: [TUN] [SCJ] Routine: receive incoming v6 - started 2021-04-22 11:45:02.271179: [TUN] [SCJ] Setting device v4 addresses 2021-04-22 11:45:02.325192: [TUN] [SCJ] Monitoring default v6 routes 2021-04-22 11:45:02.325192: [TUN] [SCJ] Binding v6 socket to interface 26 (blackhole=false) 2021-04-22 11:45:02.326189: [TUN] [SCJ] Setting device v6 addresses 2021-04-22 11:45:02.359319: [TUN] [SCJ] Listening for UAPI requests 2021-04-22 11:45:02.359319: [TUN] [SCJ] Startup complete 2021-04-22 11:45:05.518795: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:45:05.850367: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:45:07.280890: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 11:45:07.302107: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 11:45:16.110704: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:45:16.127614: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:45:17.488342: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:45:20.239179: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:45:20.255740: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:45:20.350119: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:45:20.372382: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:45:23.948948: [TUN] [SCJ] peer(YEM2?4hlk) - Sending keepalive packet 2021-04-22 11:45:30.419432: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:45:30.667939: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:45:45.477969: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:45:45.511369: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:45:45.551424: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:45:55.520378: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:07.538454: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:15.289380: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:46:20.081598: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:46:20.812493: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:46:31.294211: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:46:44.348172: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:46:44.385104: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:46:45.478855: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:46:56.171859: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:47:08.201551: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:47:14.141008: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:47:20.230660: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:47:21.924869: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:47:21.950841: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:47:21.950841: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:47:22.061468: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:47:22.082101: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:47:22.082101: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:47:22.123782: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:47:22.148413: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:47:22.148413: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:47:32.211291: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:47:32.248280: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:47:32.518394: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:47:34.959705: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:47:34.998926: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:47:34.998926: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:47:42.962653: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:47:42.997606: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:47:44.292153: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:47:45.506874: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:47:56.066125: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:08.863711: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:12.917177: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:48:34.190306: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:48:34.204907: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:36.714736: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:48:47.208109: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:48:47.244624: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:48:47.513735: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:48:59.803365: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:49:11.829920: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:49:25.748890: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:49:25.774266: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:49:25.774266: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:49:25.904698: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:49:25.924340: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:49:25.924340: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:49:26.046513: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:49:26.067717: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:49:26.067717: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:49:35.431228: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:49:35.461713: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:49:35.461713: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:49:36.096964: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:49:36.133280: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:49:36.401472: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:49:46.590121: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:49:46.624383: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:49:47.919265: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:00.717913: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:25.753750: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:50:30.667380: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:50:55.499696: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:51:00.592663: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:51:24.118886: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:51:24.153734: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:51:24.167307: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:51:34.918741: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:51:35.125099: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:51:35.161654: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:51:35.454435: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:51:35.487553: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:51:35.487553: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:51:36.654616: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:51:36.689035: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:51:36.689035: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:51:46.954102: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:51:54.847453: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:51:54.866789: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:51:54.866789: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:51:58.981470: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:52:13.347694: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:52:13.370496: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:52:13.370496: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:52:23.811856: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:52:33.781230: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:52:40.655958: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:52:50.433629: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:01.440980: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:16.757252: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:53:28.014292: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:53:28.050219: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:53:28.062506: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:35.542608: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:53:35.659955: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:53:35.659955: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:53:38.509530: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:53:38.548922: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:53:40.350167: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:53:42.043367: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:53:42.067141: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:53:42.067141: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:53:52.385273: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:54:04.416044: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:54:07.239202: [TUN] [SCJ] peer(YEM2?4hlk) - Removing all keys, since we haven't received a new one in 540 seconds 2021-04-22 11:54:18.920827: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:54:18.940179: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:54:18.940179: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:54:19.112737: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:54:19.130338: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:54:19.130338: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:54:29.448479: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:54:29.483403: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:54:29.497967: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:54:41.273917: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:54:41.771137: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:54:41.992657: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:54:53.305000: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:05.336220: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:28.631409: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:31.639862: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:55:31.910093: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:55:31.944008: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:55:40.663008: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:55:43.570794: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:55:43.595190: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:55:43.595190: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:55:44.453296: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:55:44.487304: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:55:44.687749: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:55:53.718862: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:04.402417: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:56:04.431345: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:56:04.431345: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:56:06.007187: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:22.836204: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:56:22.858502: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:56:22.858502: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:56:22.940693: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:56:22.964123: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:56:22.964123: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:56:30.069469: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:33.075163: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:56:33.089960: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:56:33.125747: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:56:42.101118: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:56:45.929284: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:56:46.134730: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:56:55.617960: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:57:05.651979: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:15.898280: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:57:30.740443: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:33.997937: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:57:34.017438: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:57:34.054166: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:57:42.771039: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:57:44.641228: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:57:44.665382: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:57:44.665382: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 11:57:48.081414: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:57:48.098086: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:57:48.134497: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:57:54.806514: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:06.837067: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:07.956102: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 11:58:07.982687: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 11:58:07.982687: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:58:17.970053: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:58:24.095766: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 11:58:24.116977: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 11:58:24.116977: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:58:24.145089: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 11:58:24.169563: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 11:58:24.169568: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 11:58:31.413971: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:34.411384: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:58:34.431067: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:58:34.467792: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:58:43.185520: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:58:46.955995: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:58:46.974541: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:58:47.010393: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:58:55.217343: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:07.248906: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:16.786270: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 11:59:16.803430: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 11:59:19.280341: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:31.315402: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:37.386173: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:59:37.405913: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:59:37.440780: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:59:51.208482: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 11:59:51.228468: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 11:59:51.264244: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 11:59:53.582750: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 11:59:55.906466: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 11:59:55.971669: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 11:59:55.971669: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:00:01.723710: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:00:06.126737: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:11.004956: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:00:11.036413: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:00:11.036413: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:00:16.878143: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:28.914581: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:30.604790: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 12:00:30.620936: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 12:00:30.620936: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 12:00:30.728969: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:00:30.753242: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:00:30.753242: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:00:40.891602: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:00:40.926300: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:00:44.199743: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:00:52.717986: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:00:54.750907: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:00:54.955679: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:00:54.970527: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:01:04.749643: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:24.744951: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:01:27.279733: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:42.565199: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:01:42.587049: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:01:42.880627: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:01:49.808899: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:01:55.130803: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:01:55.167961: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:01:55.366242: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:02:01.836985: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:02:04.769281: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 12:02:04.799937: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 12:02:04.799937: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:02:15.070336: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:02:15.101328: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:02:15.101328: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:02:15.148864: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:02:27.181108: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:02:35.027046: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 12:02:35.047597: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 12:02:35.047597: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 12:02:35.130033: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:02:35.154739: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:02:35.154739: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:02:39.212531: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:02:45.287507: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:02:45.305522: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:02:45.343731: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:02:52.268544: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:02:55.801305: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:02:55.836915: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:02:56.038409: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:03:03.276193: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:15.307424: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:27.338818: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:40.143123: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:03:46.232389: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:03:46.526380: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:03:58.776018: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:03:58.811501: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:04:04.203130: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:05.995291: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 12:04:06.019982: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 12:04:06.019982: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:04:15.102566: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:04:15.129655: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:04:15.129655: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:04:16.234906: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:28.267556: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:40.298793: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:04:48.101341: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 12:04:48.118558: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 12:04:48.118558: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 12:04:48.277758: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:04:48.302740: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:04:48.302740: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet 2021-04-22 12:04:58.422579: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:04:58.462931: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:04:58.730483: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:13.527159: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:05:13.564965: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:05:22.794237: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:35.337848: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:05:51.432448: [TUN] [SCJ] peer(YEM2?4hlk) - Sending handshake initiation 2021-04-22 12:05:51.446365: [TUN] [SCJ] peer(YEM2?4hlk) - Received handshake response 2021-04-22 12:06:01.814477: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:06:06.033006: [TUN] [SCJ] peer(1hMF?tqBw) - Sending handshake initiation 2021-04-22 12:06:06.055298: [TUN] [SCJ] peer(1hMF?tqBw) - Received handshake response 2021-04-22 12:06:06.055298: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:06:12.566495: [TUN] [SCJ] peer(YEM2?4hlk) - Receiving keepalive packet 2021-04-22 12:06:13.467423: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:06:18.530969: [TUN] [SCJ] peer(heWL?uHXY) - Receiving keepalive packet 2021-04-22 12:06:19.138537: [TUN] [SCJ] peer(heWL?uHXY) - Sending handshake initiation 2021-04-22 12:06:19.171737: [TUN] [SCJ] peer(heWL?uHXY) - Received handshake response 2021-04-22 12:06:19.171737: [TUN] [SCJ] peer(heWL?uHXY) - Sending keepalive packet 2021-04-22 12:06:22.697156: [TUN] [SCJ] peer(1hMF?tqBw) - Receiving keepalive packet 2021-04-22 12:06:23.927374: [TUN] [SCJ] peer(8muY?GdG8) - Receiving keepalive packet 2021-04-22 12:06:23.963462: [TUN] [SCJ] peer(WBaN?k8hA) - Receiving keepalive packet 2021-04-22 12:06:52.658762: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:06:53.823884: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 12:06:53.823976: [TUN] [SCJ] peer(8muY?GdG8) - Sending handshake initiation 2021-04-22 12:06:53.840788: [TUN] [SCJ] peer(8muY?GdG8) - Received handshake response 2021-04-22 12:06:53.840788: [TUN] [SCJ] peer(8muY?GdG8) - Sending keepalive packet 2021-04-22 12:07:22.656281: [TUN] [SCJ] peer(WBaN?k8hA) - Sending handshake initiation 2021-04-22 12:07:22.674391: [TUN] [SCJ] peer(1hMF?tqBw) - Sending keepalive packet 2021-04-22 12:07:22.686329: [TUN] [SCJ] peer(WBaN?k8hA) - Received handshake response 2021-04-22 12:07:22.686329: [TUN] [SCJ] peer(WBaN?k8hA) - Sending keepalive packet From simon at rozman.si Tue Apr 27 09:54:15 2021 From: simon at rozman.si (Simon Rozman) Date: Tue, 27 Apr 2021 09:54:15 +0000 Subject: Error when connecting from windows client In-Reply-To: References: Message-ID: <8720b8df1b0d4226a4c93d056c9b0b97@rozman.si> Hi, > 2021-04-26 14:45:33.382398: [TUN] [Home] Creating Wintun interface > 2021-04-26 14:45:33.519928: [TUN] [Home] [Wintun] CreateAdapter: > Creating adapter > 2021-04-26 14:45:33.828328: [TUN] [Home] [Wintun] SelectDriver: Using > existing driver 0.10 > 2021-04-26 14:45:34.289159: [TUN] [Home] [Wintun] CreateAdapter: > Failed to setup adapter (status: 0x0): The operation completed > successfully. (Code 0x00000000) Your log indicates that the adapter device was created, but has a problem code with a STATUS_SUCCESS problem status. I have reintroduced the problem code check in https://git.zx2c4.com/wintun/commit/?id=2881164bff0e819f6b0b6d5fc5d3a185ecb47457. This should evaluate the Wintun adapter state with better precision. Meanwhile, can you please examine your C:\Windows\INF\setupapi.dev.log file for clues. (Note that a 0x1f/0xc0000495 problem code/status is normal when Wintun adapter is created early at boot. Hence the STATUS_PNP_DEVICE_CONFIGURATION_PENDING check in the code.) Regards, Simon From labawi-wg at matrix-dream.net Tue Apr 27 19:49:00 2021 From: labawi-wg at matrix-dream.net (Ivan =?iso-8859-1?Q?Lab=E1th?=) Date: Tue, 27 Apr 2021 19:49:00 +0000 Subject: wgX iface as slave to a bridge - Linux In-Reply-To: <4eeeaa84-65a9-d53e-972b-c2212babc944@yahoo.co.uk> References: <0c8b4be5-ee9d-4f19-7179-ad08a28d0574.ref@yahoo.co.uk> <0c8b4be5-ee9d-4f19-7179-ad08a28d0574@yahoo.co.uk> <4eeeaa84-65a9-d53e-972b-c2212babc944@yahoo.co.uk> Message-ID: Normally, you would use routing (L3) instead of bridging (L2). Conceptually, the connectivity should work about the same, as long as you configure your routes and enable forwarding. Routes need to be configured on the host, not container-only, but if assign a subnet to a bridge, devices can use addresses from it without intervention on the host. If you want roaming addresses, you could do live route updates on your wireguard links and host routing table for a native L3 solution. For a pre-existing automated solution, you can use a some kind of routing service, usually with multiple additional layers of encapsulation, as others have mentioned. Regards, ivan On Sun, Apr 25, 2021 at 02:13:24PM +0100, lejeczek wrote: > On 25/04/2021 13:21, Chriztoffer Hansen wrote: > > What is your use case behind the question? > > > Containers. Simple (but also can be complex too as scales > easily) case where containers would be glued together and be > able to communicate across nodes/hosts via wireguard > tunnel/link. > I'm looking at it from a 'regular' admin standpoint. > Then it'd be just one wiregurard host-to-host link which all > container could utilize, as oppose to separate wireguard > for/in each container. > > many thanks, L. From wireguard at clodo.it Tue Apr 27 16:36:16 2021 From: wireguard at clodo.it (Fabrizio Carimati) Date: Tue, 27 Apr 2021 18:36:16 +0200 Subject: embeddable-dll-service - c++ - tunnel_proc_t Message-ID: <7ec76c38-be24-2ad1-04dd-0883d46ec39d@clodo.it> I'm trying to embed tunnel.dll in a C++ Windows project, LoadLibrary and GetProcAddress ok, but when i call the proc, simply return 0 and i don't understand why. The docs here: https://git.zx2c4.com/wireguard-windows/about/embeddable-dll-service/README.md what is the exact c++ definition of tunnel_proc_t ? why the docs talk about a go_string (ascii?) when the C# example use a LPWStr? Thanks for any feedback. Fabrizio Carimati From john at dotdigital.digital Tue Apr 27 17:47:05 2021 From: john at dotdigital.digital (John Clendenen) Date: Tue, 27 Apr 2021 13:47:05 -0400 Subject: macOS Client DNS Message-ID: Hi, Looking for the proper place to get help with DNS in the macOS client. If this is not it, please point me in the right direction. I have macOS clients using wireguard to remote into the office. It works great except the DNS server configured in the wg config (DNS = X.X.X.X) is not always honored. The system will use the DNS server configured on the physical interface instead. This of course causes failure resolving records on the private lan and DNS leaks. Is this expected? Do I need to engineer some sort of workaround or is this a bug? I have run into this in previous cases with L2TP/ipsec in which case the solution was to adjust the interface ?service order? in macOS, but the wireguard interface does not appear in that list. From rcmcdonald91 at gmail.com Tue Apr 27 23:36:36 2021 From: rcmcdonald91 at gmail.com (Christian McDonald) Date: Tue, 27 Apr 2021 19:36:36 -0400 Subject: Kernel Panic on FreeBSD 12.2 when downing an tunnel interface Message-ID: Greetings, Here are my versions: wireguard-kmod 0.0.20210424_1 wireguard-tools 1.0.20210424 I'm running the latest snapshot code (see above) on FreeBSD 12.2. I am seeing kernel panics when tearing down tunnels using `wg-quick down` and even `ifconfig wg0 destroy` when the interface has IPv6 addresses assigned to it. Any ideas? All the best -- R. Christian McDonald M: (616) 856-9291 E: rcmcdonald91 at gmail.com From Jason at zx2c4.com Wed Apr 28 01:51:09 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Tue, 27 Apr 2021 21:51:09 -0400 Subject: Kernel Panic on FreeBSD 12.2 when downing an tunnel interface In-Reply-To: References: Message-ID: Fixed here a few days ago: https://git.zx2c4.com/wireguard-freebsd/commit/?id=cb7cd32a7c47151c161603cdc8a1c21f48550a65 I'll have a new snapshot out likely tomorrow. Jason From johnathanclarke at gmail.com Wed Apr 28 21:29:59 2021 From: johnathanclarke at gmail.com (Johnathan Clarke) Date: Thu, 29 Apr 2021 07:29:59 +1000 Subject: Error when connecting from windows client In-Reply-To: <8720b8df1b0d4226a4c93d056c9b0b97@rozman.si> References: <8720b8df1b0d4226a4c93d056c9b0b97@rozman.si> Message-ID: Hi Simon the setupapi.dev.log >>> [Delete Device - ROOT\NET\0000] >>> Section start 2021/04/28 15:52:49.399 cmd: "C:\Program Files\WireGuard\wireguard.exe" /tunnelservice "C:\Program Files\WireGuard\Data\Configurations\Home.conf.dpapi" dvi: Query-and-Remove succeeded <<< Section end 2021/04/28 15:52:49.531 <<< [Exit status: SUCCESS] >>> [Configure Driver Package - c:\windows\system32\driverstore\filerepository\wintun.inf_amd64_65b8959a2d220b06\wintun.inf] >>> Section start 2021/04/29 07:27:04.869 cmd: "C:\Program Files\WireGuard\wireguard.exe" /tunnelservice "C:\Program Files\WireGuard\Data\Configurations\Home.conf.dpapi" sto: Source Filter = Wintun.Install sto: Target Filter = ROOT\NET\0000 inf: Class GUID = {4d36e972-e325-11ce-bfc1-08002be10318} inf: Class Options = Configurable inf: {Configure Driver: Wintun Userspace Tunnel} inf: Section Name = Wintun.Install inf: {Configure Device: ROOT\NET\0000} inf: {Configure Device: exit(0x00000000)} inf: {Configure Driver: exit(0x00000000)} <<< Section end 2021/04/29 07:27:04.917 <<< [Exit status: SUCCESS] >>> [Restart Device - ROOT\NET\0000] >>> Section start 2021/04/29 07:27:04.926 cmd: "C:\Program Files\WireGuard\wireguard.exe" /tunnelservice "C:\Program Files\WireGuard\Data\Configurations\Home.conf.dpapi" dvi: Device Status: 0x01802001 dvi: Install Device: Starting device 'ROOT\NET\0000'. 07:27:04.932 dvi: Install Device: Starting device completed. 07:27:04.946 ! dvi: Device pending start: Device has problem: 0x38 (CM_PROB_NEED_CLASS_CONFIG), problem status: 0x00000000. <<< Section end 2021/04/29 07:27:04.959 <<< [Exit status: SUCCESS] >>> [Delete Device - ROOT\NET\0000] >>> Section start 2021/04/29 07:27:05.018 cmd: "C:\Program Files\WireGuard\wireguard.exe" /tunnelservice "C:\Program Files\WireGuard\Data\Configurations\Home.conf.dpapi" dvi: Query-and-Remove succeeded <<< Section end 2021/04/29 07:27:05.093 <<< [Exit status: SUCCESS] On Tue, Apr 27, 2021 at 7:54 PM Simon Rozman wrote: > > Hi, > > > 2021-04-26 14:45:33.382398: [TUN] [Home] Creating Wintun interface > > 2021-04-26 14:45:33.519928: [TUN] [Home] [Wintun] CreateAdapter: > > Creating adapter > > 2021-04-26 14:45:33.828328: [TUN] [Home] [Wintun] SelectDriver: Using > > existing driver 0.10 > > 2021-04-26 14:45:34.289159: [TUN] [Home] [Wintun] CreateAdapter: > > Failed to setup adapter (status: 0x0): The operation completed > > successfully. (Code 0x00000000) > > Your log indicates that the adapter device was created, but has a problem code with a STATUS_SUCCESS problem status. I have reintroduced the problem code check in https://git.zx2c4.com/wintun/commit/?id=2881164bff0e819f6b0b6d5fc5d3a185ecb47457. This should evaluate the Wintun adapter state with better precision. > > Meanwhile, can you please examine your C:\Windows\INF\setupapi.dev.log file for clues. (Note that a 0x1f/0xc0000495 problem code/status is normal when Wintun adapter is created early at boot. Hence the STATUS_PNP_DEVICE_CONFIGURATION_PENDING check in the code.) > > Regards, Simon -- --Johnathan Clarke -- -- Please consider something when reading this message. It was handwritten and sent from a black computer. No iPhone. No iTypos. No iApologize. DISCLAIMER: This email could contain confidential information, is for the intended recipient only and blah blah blah.. If you are not the intended recipient, sorry. Email transmissions cannot be error-free or guaranteed to be delivered (correctly) and are constantly intercepted, corrupted, destroyed, arrive late or incomplete and often contain viruses. The sender does not accept any liability for damage as a result of the transmission of this e-mail. Any views or opinions expressed in this email are solely those of someone else and do not represent anyone else's. Void where prohibited by law or Common Sense. WARNING: Not following instructions as laid out in this disclaimer is unlikely to result in legal action or otherwise. Thankyou Olger From Jason at zx2c4.com Thu Apr 29 01:51:20 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Wed, 28 Apr 2021 21:51:20 -0400 Subject: [ANNOUNCE] wireguard-freebsd snapshot v0.0.20210428 is available Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, An experimental snapshot, v0.0.20210428, of WireGuard for FreeBSD has been been tagged in the git repository. At this time this code is new, unvetted, possibly buggy, and should be considered "experimental". It might contain security issues. We gladly welcome your testing and bug reports, but do keep in mind that this code is new, so some caution should be exercised at the moment for using it in mission critical environments. == Changes == * wg_noise: compile on 32-bit * if_wg: do not increment error counter when sc is null * if_wg: handle if_transmit and if_output properly * if_wg: do not assume that IP header is pulled up * wg_noise: fix remote refcount leak * if_wg: unify xmit error path * if_wg: pull up packet before checking aip on input * netns: enable debug logging * if_wg: simplify state setting flow * if_wg: use proper bool for is_retry * if_wg: do not block for memory when sending buffer * if_wg: write data header directly * if_wg: enter net epoch for isr dispatch * if_wg: do not double-free after m_pullup * if_wg: allocate entire mbuf all at once After the rather intense set of commits in the last snapshot, this new snapshot has been entirely bug fixes and cleanups, addressing regressions in the last snapshot and simplifying other things. It should be much more stable than last week. This snapshot contains commits from: Jason A. Donenfeld and Matt Dunwoodie. The source repository is available at the usual location: git clone https://git.zx2c4.com/wireguard-freebsd This snapshot is available in compressed tarball form: https://git.zx2c4.com/wireguard-freebsd/snapshot/wireguard-freebsd-0.0.20210428.tar.xz SHA2-256: cceebd8f3f21d522342b3629fa0350e4fbc64a00035d330f82301741e56def46 Thank you, Jason Donenfeld -----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEEq5lC5tSkz8NBJiCnSfxwEqXeA64FAmCKEQIQHGphc29uQHp4 MmM0LmNvbQAKCRBJ/HASpd4DrhlkD/9p/xcF9I5i60Qmv6zLSL+Sd88OHx9LXybv RiLmLjIlKOYq7b5msI7Gxf7UQnHCMiu+UuC8d8ZtsW1SpaPXRx/PFAAAAP/J/RfB Hd8uYD0whosgdzgaxvfZm+p2FPtDssQW6YNnrmkB62sNqZVEZdtWpLQK0W8BSdSa DBcgTJe30g/bhFYKQm5GGf3FCR5wIGlcPSJG+h0uhYnRqIJxcDCJEQ9doFQLTHn/ nygIYE4itONeJnT8acmH9zQZ/zuzz4RAHXkE7ux9Ld9pyvFue7OViCYZXNUInVgz uVbRfL90PUbQz4rcRbRoY2fs+4O5A2HOxegKhf4DqQ6ZGqYYdONnvJ1fZsHhp0zh ldP6uzDsd1fStyoANEyG/IKRDjpNtRPKVPgtlYLoNdStJll8T6DkdKC2mKAqF4Rp iBvEXMk1CgsXucqUESogUASKGnuIFfVYp684uqXSIYdga3M0Nnj6ESBhj1GIqGaR eNkV5DCH3y6MVT0BMs+5UX/qHPLMwwjGYEhzZc4+cqZDjbi8fEMc6+B6SeGdb6I+ +Bl1QXJoD/uzV7OMvXrb+oVGeku59XhjxLe8hf+wilC88R4SKnf0FciiTD0/rAdD 4x+oxW1jRgDk45qN1ryI1d2smPqNaAXRFwbQaL5BpWz6tjEeF4dv9VVCrKVqc1dg eUDt3xFu0A== =a84y -----END PGP SIGNATURE----- From Jean.Cardona at limelogic.be Wed Apr 28 15:24:21 2021 From: Jean.Cardona at limelogic.be (Jean Cardona) Date: Wed, 28 Apr 2021 15:24:21 +0000 Subject: Wireguard for windows: routes are added even if remote server not reachable Message-ID: Hello, When wireguard on windows cannot reach the server, it still sets up the routes defined in allowedIPs, with a very large priority because the windows wireguard virtual interface is configured as a 100GB interface. This is an issue for us, because when one of our user is in the office, the VPN cannot connect but windows still tries to use it to reach some internal subnets and those subnets are thus unreachable. Is there a way to remove the routes if the VPN cannot come up? Best regards, -- Jean Cardona From raoul.bhatia at radarcs.com Thu Apr 29 10:30:04 2021 From: raoul.bhatia at radarcs.com (Raoul Bhatia) Date: Thu, 29 Apr 2021 10:30:04 +0000 Subject: Wireguard connection lost between peers Message-ID: <655D0D0D-4650-4A45-864E-5BDC6C5A76AE@radarcs.com> Dear List, We are experiencing unusual issue where WireGuard connectivity between peers suddenly stops working. The connection itself seem to be up, but the peers cannot communicate to each other (more details below). Any insight would be greatly appreciated. Software versions: - Debian Stretch 4.9.0-11-amd64 (4.9.189-3+deb9u2) - LXC version: 2.0.7 - Wireguard: 1.0.20210124 (from buster-backports) Environment: A Debian host serves as LXC hypervisor for unpriviledged containers. WireGuard is used as a network layer for the containers, which means on the host we create physical WG interface for each container. Inside the containers, we run a distributed cluster which is spanning multiple containers on multiple physical servers interconnected via 10G links (i.e. 6 physical servers w/ 8-10 containers each). So the network load can get comparatively high, on average 500Mbit/s with peaks of ~3Gbit/s. Problem description: The outlined setup works fine in most cases. Occasionally, however, one container completely loses connectivity, and is not reachable _even_ from the underlying host. We cannot distinguish what is the trigger for this to happen, but we observed it happening when the network traffic is high. NOTE: We also had this similar (same?) issue between two physical hosts. So far we identified two ways to restore the service: 1. Restart wg-quick at wg0 service on the host, which is _not_ sustainable because this resets the connectivity of all containers, impacting the cluster. 2. Dump the WG conf, manually remove the unreachable peer public key from the interface, and then re-sync the dumped conf. --- SNIP --- $ wg-quick strip wg0 > wg0_peers $ wg show wg0 dump $ wg set wg0 peer $PEER_PUB_KEY remove $ wg syncconf wg0 wg0_peers --- SNIP --- Additional notes: 1. We didn't manage to reproduce the issue until now in a test environment. 2. We cannot easily upgrade the versions that we run in production. 3. We suspected that time settings on the host could be the issue, so we made sure timesyncd is configured properly. We observe this issue less frequently, but it is not fully gone. 4. The dynamic kernel log doesn't provide much information other than send/receive handshake request, keepalive packets and re-creating keypairs. WireGuard module version --- filename: /lib/modules/4.9.0-11-amd64/updates/dkms/wireguard.ko intree: Y alias: net-pf-16-proto-16-family-wireguard alias: rtnl-link-wireguard version: 1.0.20210124 author: Jason A. Donenfeld description: WireGuard secure network tunnel license: GPL v2 srcversion: 507BE23A7368F016AEBAF94 depends: udp_tunnel,ip6_udp_tunnel retpoline: Y vermagic: 4.9.0-11-amd64 SMP mod_unload modversions --- ** Issue was also observed on (now decomissioned) host Debian 4.9.0-14-amd64 (4.9.246-2) with Wireguard module (1.0.20210124) Any insight would be appreciated. Happy to share more debug information as requested / offline. Thanks, Raoul PS. Please reply to me / reply all, as I am currently not subscribed to the mailing list. -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 6069 bytes Desc: not available URL: From Jason at zx2c4.com Fri Apr 30 13:42:25 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 30 Apr 2021 15:42:25 +0200 Subject: Wireguard connection lost between peers In-Reply-To: <655D0D0D-4650-4A45-864E-5BDC6C5A76AE@radarcs.com> References: <655D0D0D-4650-4A45-864E-5BDC6C5A76AE@radarcs.com> Message-ID: Hi Raoul, That's surprising behavior. Thanks for debugging it. Can you see if you can reproduce with dynamic logging enabled? That'll give some useful information in dmesg: # modprobe wireguard && echo module wireguard +p > /sys/kernel/debug/dynamic_debug/control Thanks, Jason From Jason at zx2c4.com Fri Apr 30 13:45:00 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 30 Apr 2021 15:45:00 +0200 Subject: Wireguard for windows: routes are added even if remote server not reachable In-Reply-To: References: Message-ID: You can adjust the route metric using `PostUp`, if you need: https://git.zx2c4.com/wireguard-windows/about/docs/adminregistry.md But having WireGuard automatically _shutoff_ due to unreachability sounds like something with DoS security implications, so we're unlikely to add that to the client. However you might be able to trigger various rules to enable or disable WireGuard using other OS facilities. https://git.zx2c4.com/wireguard-windows/about/docs/enterprise.md may help. Jason From Jason at zx2c4.com Fri Apr 30 13:48:03 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 30 Apr 2021 15:48:03 +0200 Subject: embeddable-dll-service - c++ - tunnel_proc_t In-Reply-To: <7ec76c38-be24-2ad1-04dd-0883d46ec39d@clodo.it> References: <7ec76c38-be24-2ad1-04dd-0883d46ec39d@clodo.it> Message-ID: Thanks for letting me know. The doc was out of date. Fixed here: https://git.zx2c4.com/wireguard-windows/commit/?id=786bb04d4081e8c9d07eecf27c12a318f24235ed From Jason at zx2c4.com Fri Apr 30 13:49:18 2021 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Fri, 30 Apr 2021 15:49:18 +0200 Subject: Intermittent handshake failures in WireGuard for Windows In-Reply-To: References: Message-ID: Hi Joshua, Is it possible that something nasty is happening with UDP NAT/Conntracking tables on whatever intermediate device? It might help to take some TCP dumps along the way and see where the packets are going and whether they're lost past a certain hop. Jason