Review Wireguard #46
Labels
No labels
bug
deployment
design
feature
maintenance
observability
review
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Deuxfleurs/infrastructure#46
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Wireguard is a kernel-space VPN server.
https://www.wireguard.com/
It might be interesting to see how to interact with it in Rust.
Wireguard uses
ioctl
to be configured from the userspace.Rust can speaks ioctl:
https://docs.rs/nix/0.22.1/nix/sys/ioctl/index.html
The whitepaper:
https://www.wireguard.com/papers/wireguard.pdf
systemd-networkd has native support for wireguard.
https://man.archlinux.org/man/systemd.netdev.5#EXAMPLES
example 17
systemd-networkd has a small dbus API
https://github.com/systemd/systemd/issues/7593#issuecomment-713131716
Review wireguardto Review Wireguard