aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2019-04-08 05:13:48 -0700
committerChristine Dodrill <me@christine.website>2019-04-08 05:13:48 -0700
commit6ebf19c95821854b834ae654b1ecabbf14d71c5b (patch)
tree4ca7d984b13b07ae28fe2cff55db4b7edb39712b
parent691ae71cde5400571a1437b963d821457fd803b0 (diff)
downloadxesite-6ebf19c95821854b834ae654b1ecabbf14d71c5b.tar.xz
xesite-6ebf19c95821854b834ae654b1ecabbf14d71c5b.zip
blog/site to site wireguard part 2: dig in Alpine
Thanks https://twitter.com/dne/status/1115182429998858240?s=21
-rw-r--r--blog/site-to-site-wireguard-part-2-2019-04-07.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/blog/site-to-site-wireguard-part-2-2019-04-07.markdown b/blog/site-to-site-wireguard-part-2-2019-04-07.markdown
index 4fb9dad..68bca60 100644
--- a/blog/site-to-site-wireguard-part-2-2019-04-07.markdown
+++ b/blog/site-to-site-wireguard-part-2-2019-04-07.markdown
@@ -22,10 +22,10 @@ A common tool in Linux and macOS to query DNS is [`dig`](https://www.cyberciti.b
$ sudo apt install -y dnsutils
```
-A side note for [Alpine Linux](https://alpinelinux.org) users: for some reason the `dig` tool is not packaged in Alpine. Instead you will need to use the basically identical `drill` tool. You can install it like this:
+A side note for [Alpine Linux](https://alpinelinux.org) users: for some reason the `dig` tool is packaged in `bind-tools` there. You can install it like this:
```console
-$ sudo apk add drill
+$ sudo apk add bind-tools
```
As an example of it in action, let's look up `google.com` with the `dig` tool (edited for clarity):