Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/config/network/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Network

Check failure on line 1 in src/config/network/index.md

View workflow job for this annotation

GitHub Actions / Check formatting

Formatting Lint

File has improper formatting

Network configuration in Void Linux can be done in several ways. The default
installation comes with the [dhcpcd(8)](https://man.voidlinux.org/dhcpcd.8)
Expand Down Expand Up @@ -54,6 +54,10 @@
# 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)

Expand Down
Loading