Le 30/04/2024 à 19:42, al3xu5 via Dng a écrit : > auto eth0
> allow-hotplug eth0
> iface eth0 inet dhcp
> Don't think you need both auto and allow-hotplug.
"auto" means interface should be started when 'ifup -a' is run
(during init); "allow-hotplug" means it should be started when a new
interface is connected to the system (in relation with the system's
hotplugger, udev/eudev).
Since there is no udev event for the loopback inerface, "auto" is
necessary for this one.