<?xml version="1.0" encoding="utf-16"?><html><head>

<style><!--body
{font-family: 'Segoe UI'; font-size: 12pt;}
--></style>
</head>
<body>Hi,<div><br /></div><div>I compiled version 20170421 for my turris omnia running a modified OpenWRT OS. I was really happy to see, how well wireguard performed between my 2 routers compared to OpenVPN. But i consistently could reproduce a relevant error: after transferring about 280Mbyte over the wireguard VPN over a samba share, both my routers crash and restart. As far as i can tell, there is no memory leak (1 router has 1Gbyte of RAM, the other 2 Gbyte and they don't fill up during the process).  Im not sure what information i could post, as no logs are written or how to debug this, but i'm  more than happy to help out. I opened the respective Ports on the firewall.</div><div>Configuration is pretty basic:</div><div>Router 1:</div><div><span style="font-size: 12pt;">Interface]</span></div><div>ListenPort = 443<br />PrivateKey = xxx<br />[Peer]<br />PublicKey =  xxx<br />Endpoint = xxx:443<br />AllowedIPs = 0.0.0.0/0,::/0</div><div><br /></div><div>Router 2:</div><div>[Interface]<br />ListenPort = 443<br />PrivateKey = xx<br /><br />[Peer]PublicKey =  xxx<br />Endpoint = xxx:443<br />AllowedIPs = 0.0.0.0/0,::/0</div><div><br /></div><div>I start the tunnel by these two scripts:</div><div><br /></div><div>#!/bin/sh<br />ip link add dev tun1 type wireguard<br />ip addr add 10.1.3.1/32 peer 10.2.3.1 dev tun1<br />wg setconf tun1 /etc/wireguard/staticfmf/conf<br />ip link set tun1 up<br />route add -net 10.2.0.0 netmask 255.255.0.0 gw 10.1.3.1<br /></div><div><br /></div><div><br /></div><div>#!/bin/sh<br />ip link add dev tun0 type wireguard<br />ip addr add 10.2.3.1/32 peer 10.1.3.1 dev tun0<br />wg setconf tun0 /etc/wireguard/staticheim/conf<br />ip link set tun0 up<br />route add -net 10.0.0.0 netmask 255.240.0.0 gw 10.2.3.1</div><div><br /></div><div>Anyone able to help?</div></body></html>