From c1ed9ee89013fc2d13164fc865b8ce8129e1a188 Mon Sep 17 00:00:00 2001 From: Alogani <77880767+Alogani@users.noreply.github.com> Date: Fri, 25 Apr 2025 17:22:18 +0200 Subject: [PATCH] Update index.md Misleading documentation for setting up dhcpcd on specific interfaces --- src/config/network/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/config/network/index.md b/src/config/network/index.md index 31107bc35..e52187f64 100644 --- a/src/config/network/index.md +++ b/src/config/network/index.md @@ -54,6 +54,10 @@ $ ip link show # ln -s /etc/sv/dhcpcd-enp3s0 /var/service/ ``` +**Note**: Simply copying the dhcpcd-eth0 service for additional interfaces may not work as expected. +Internally, dhcpcd may still treat them as the same instance due to shared resources like PID files or control sockets. For multiple interfaces, it's recommended to either let the main dhcpcd service handle all interfaces, +or manage separate configurations carefully to avoid conflicts. + For more information on configuring `dhcpcd`, refer to [dhcpcd.conf(5)](https://man.voidlinux.org/dhcpcd.conf.5)