1
ewpratten.com/content/blog/2023-02-15-wireguard-options.md
Evan Pratten 66528d6284 Revert "The great migration"
This reverts commit f184e610368cedc50f9dd557953c83f70b55f329.
2024-11-14 12:45:30 -05:00

2.5 KiB

title description date tags draft extra aliases
Some lesser known WireGuard settings Things I will probably forget in an important moment 2023-02-15
random
networking
false
auto_center_images excerpt discuss
true This post covers some lesser known WireGuard configuration options that I have found useful
reddit
https://www.reddit.com/r/ewpratten/comments/12xzvun/some_lesser_known_wireguard_settings/
/blog/wireguard-options

I extensively use WireGuard to keep various devices connected across foreign and unstable networks. Over the past few years of doing this, I've discovered a few handy configuration tricks that can help in weirdly specific situations. The following is a short overview to be used as reference in the future.

DNS

When configuring a client, you can specify DNS servers to use. This is useful for sending people config files that automatically point to your own DNS server.

[Interface]
# ...
DNS = 2606:4700:4700::1111, 1.1.1.1

While manually setting DNS servers may not be a huge deal, it is important to note that this also works for search domains.

Thus, if you had records for the clients on your network in example.com (like phone.example.com and laptop.example.com) and added the following to your Interface block:

DNS = example.com

The devices would become resolvable by just their hostname. For example, ping phone would do the same as ping phone.example.com.

Disabling the routing table

Anyone who has tried using a dynamic routing protocol over WireGuard knows that it is a pain to get traffic to go where you want. Luckily, you can force WireGuard to not touch the routing table at all, allowing you to use your own routing protocol instead.

[Interface]
# ...
Table = off

[Peer]
# ...
AllowedIPs = ::/0, 0.0.0.0/0

Note: The AllowedIPs line is still required for WireGuard to send traffic to the peer.

Playing nice with the firewalld

In my own experimentation, I've noticed that WireGuard interfaces on Fedora will by default take the most lax firewall policy on the device. This is sub-optimal for many reasons.

To fix this, you can make wg-quick also configure the firewall for you during interface setup.

[Interface]
# ...
PostUp = firewall-cmd --zone public --add-interface %i
PostDown = firewall-cmd --zone public --remove-interface %i

Now, the interface will be governed by the public zone, which is generally the strictest zone on the system.