Are the following statements in /etc/network/interfaces
equivalent?
allow-hotplug eth0
and..
auto eth0
allow-hotplug eth0
That is, does allow-hotplug
do everything that auto
does and more?
Are the following statements in /etc/network/interfaces
equivalent?
allow-hotplug eth0
and..
auto eth0
allow-hotplug eth0
That is, does allow-hotplug
do everything that auto
does and more?
allow-hotplug
alone and in addition toauto
. The main practical difference according to my experience: The additionalauto
will add a timeout if the connection can't be established at boot time, which sometimes may be desired, but most of the time you don't want that. For example, for wlan connections, I strongly recommend to avoidauto
. – Philippos Jul 12 '17 at 13:40