diff options
author | Dante Catalfamo | 2020-07-10 19:00:13 -0400 |
---|---|---|
committer | Dante Catalfamo | 2020-07-10 19:00:13 -0400 |
commit | 16fbf50c6d6e9af2ea6fcc3d16a313aba6aa0b03 (patch) | |
tree | 43abb7193e112af695f0dc6cb20663a01f40d7ee /content | |
parent | efcb847ba525487aea38339eaff9f5a397dedf1b (diff) | |
download | blog-16fbf50c6d6e9af2ea6fcc3d16a313aba6aa0b03.tar.gz blog-16fbf50c6d6e9af2ea6fcc3d16a313aba6aa0b03.tar.bz2 blog-16fbf50c6d6e9af2ea6fcc3d16a313aba6aa0b03.zip |
Better wording
Diffstat (limited to 'content')
-rw-r--r-- | content/posts/WIP-openbsd-dhcp-server/index.org | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/content/posts/WIP-openbsd-dhcp-server/index.org b/content/posts/WIP-openbsd-dhcp-server/index.org index 07296cd..d4c9e72 100644 --- a/content/posts/WIP-openbsd-dhcp-server/index.org +++ b/content/posts/WIP-openbsd-dhcp-server/index.org @@ -9,11 +9,9 @@ [[https://www.openbsd.org/faq/faq4.html#Download][OpenBSD]] makes a great router. It's simplicity and ease of configuration makes it perfect for network infrastructure -applications. On top of that, everything you could possibly need to -build a network of any size is built into the base system, plus its -man pages and examples cover everything you'd need to know. You can -easily configure most everything on the system without having to ever -look it up online. +applications. Everything you need to build a network +of any size is built into the base system, plus its man pages and +examples cover everything you'd need to know. While I've been an OpenBSD user for years, I'm finally in the process of replacing the router provided by my ISP with a [[{{< ref "pcengines-comparison" >}}][PC Engines APU2E4]] @@ -110,7 +108,7 @@ subnet 192.168.0.0 netmask 255.255.255.0 { } #+END_SRC -and put the subnet-specific configuration inside the braces. You may +The subnet-specific configuration goes inside the braces. You may specify as many subnets as you need in the configuration file, although for a home network like this I only need one. @@ -147,12 +145,14 @@ host example-static-client { } #+END_SRC -To run the DHCP server, we first enable, then start it using =rcctl=. +To run the DHCP server, I first enable, then start it using =rcctl=. #+BEGIN_SRC doas rcctl enable dhcpd doas rcctl start dhcpd #+END_SRC -To check the leases the =dhcpd= is currently holding, you can check -out =/var/db/dhcpd.leases=. +To see the leases the =dhcpd= is currently holding, you can check +=/var/db/dhcpd.leases=. + +If you followed along these steps, you not have a running DHCP sever! |