Stories
Slash Boxes
Comments

SoylentNews is people

Submission Preview

Link to Story

WireGuard imported into OpenBSD

Accepted submission by t-3 at 2020-06-28 05:26:44
Security

http://undeadly.org/cgi?action=article;sid=20200622052207 [undeadly.org]

The WireGuard VPN protocol has been available on OpenBSD as a port for a while, first as the wireguard-go implementation in Go, but later also as the wiresep port in C, both using tun(4) devices, much like OpenVPN and others, which incurs a slight penalty for crossing the kernel/userspace border for each packet.

WireGuard is a layer3 tunnel that can be run in passive mode, only sending packets when something needs to reach the other side (unless you enable heartbeats). It only allows selected modern crypto algorithms and hashes, chosen to be performant on CPUs which lack crypto accelerators, while still being secure. WireGuard packets are sent over UDP, and can run over and transport both IPv4 and IPv6. It handles NAT/port redirects and endpoints changing IP addresses, which is very nice when changing from wired to wifi or vice versa.

https://man.openbsd.org/wg [openbsd.org]


Original Submission