summaryrefslogtreecommitdiff
path: root/dhcpd.conf
diff options
context:
space:
mode:
authorkaa <kaa@disroot.org>2025-06-09 04:05:40 -0700
committerkaa <kaa@disroot.org>2025-06-09 04:05:40 -0700
commit135d511aa98ea481736660a888383787bef881b9 (patch)
tree9b34915d48862d15fba1f41908c3326017fd1491 /dhcpd.conf
InitialHEADmaster
Diffstat (limited to 'dhcpd.conf')
-rw-r--r--dhcpd.conf15
1 files changed, 15 insertions, 0 deletions
diff --git a/dhcpd.conf b/dhcpd.conf
new file mode 100644
index 0000000..c609176
--- /dev/null
+++ b/dhcpd.conf
@@ -0,0 +1,15 @@
+subnet 10.0.0.0 netmask 255.255.255.0 {
+ range 10.0.0.2 10.0.0.254;
+ option routers 10.0.0.1;
+ option domain-name-servers 1.1.1.1;
+}
+subnet 192.168.2.0 netmask 255.255.255.0 {
+ range 192.168.2.100 192.168.2.254;
+ option routers 192.168.2.1;
+ option domain-name-servers 1.1.1.1;
+}
+subnet 172.16.0.0 netmask 255.255.0.0 {
+ range 172.16.0.2 172.16.0.254;
+ option routers 172.16.0.1;
+ option domain-name-servers 1.1.1.1,8.8.8.8;
+}