Kernel module sends infinite netlink messages on v0.0.20180802
Jason A. Donenfeld
Jason at zx2c4.com
Thu Aug 9 02:11:23 CEST 2018
Thanks for letting me know. I've got a simpler reproducer now:
#!/bin/bash
a=( )
for i in {1..197}; do
a+=( abcd::$i )
done
s="$IFS"
IFS=,
a="${a[*]}"
IFS="$s"
ip link del wg0
ip link add wg0 type wireguard
wg set wg0 peer "$(wg genkey)" allowed-ips "$a"
wg set wg0 peer "$(wg genkey)" allowed-ips "$a"
wg
I'll have this fixed shortly and will ping back on this thread.
Jason
More information about the WireGuard
mailing list