How to bring up an interface at boot with no IP address on Debian

To bring up an interface at boot time with now IP address just add the following to your /etc/networking/interfaces file:

auto eth1
iface eth1 inet manual
        up ifconfig eth1 up
        down ifconfig eth1 down

Replace 'eth1' with your networking device.

Last updated: 19/07/2006