-
Dhcpcd can configure network interfaces with information provided by In my actual situation I want to use a single statically configured
Now, at boot time, dhcpcd is started with the following command line: dhcpcd -b -q What happens is the following:
I have the following questions:
Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you don't need a DHCP client because you're statically configuring all of your interfaces, then running |
Beta Was this translation helpful? Give feedback.
If you don't need a DHCP client because you're statically configuring all of your interfaces, then running
dhcpcd
is probably not necessary in the first place, and you should investigate what other network configuration tools your OS/distro provides. You're just usingdhcpcd
as a wrapper toip addr
/ifconfig
on startup here if I understood you correctly. (If you're on Linux and your distro usessystemd
, you can configure interfaces statically throughsystemd
as well, for example.). Hope this helps, reopen if you have further questions.