Check out my first novel, midnight's simulacra!

Wireguard: Difference between revisions

From dankwiki
No edit summary
No edit summary
Line 3: Line 3:


output will now show up in the journal. Disable with <tt>-p</tt>.
output will now show up in the journal. Disable with <tt>-p</tt>.
==[[systemd]]==
WireGuard is supported by <tt>systemd-networkd</tt>:
<pre>
[NetDev]
Name=xxx
Kind=wireguard
Description=WireGuard tunnel xxx
[WireGuard]
ListenPort=localport
PrivateKey=xxx
[WireGuardPeer]
PublicKey=xxx
PresharedKey=xxx
AllowedIPs=remoteaddr-internal
Endpoint=remoteaddr-external:remoteport
</pre>

Revision as of 10:00, 6 January 2021

Debugging

echo module wireguard +p |sudo tee /sys/kernel/debug/dynamic_debug/control

output will now show up in the journal. Disable with -p.

systemd

WireGuard is supported by systemd-networkd:

[NetDev]
Name=xxx
Kind=wireguard
Description=WireGuard tunnel xxx

[WireGuard]
ListenPort=localport
PrivateKey=xxx

[WireGuardPeer]
PublicKey=xxx
PresharedKey=xxx
AllowedIPs=remoteaddr-internal
Endpoint=remoteaddr-external:remoteport