--- 62-ifup.sh.old 2007-03-05 11:20:07.000000000 +0900 +++ 62-ifup.sh 2007-03-05 11:20:41.000000000 +0900 @@ -2,6 +2,9 @@ # Bring up the interfaces (this should probably be left up to some policy # manager, but at the moment we just bring back whatever we ifdowned) +# Find the currently running network interfaces... +INTERFACES=/sbin/ifconfig | awk '/^[^ ]+/ {print $1}' +# And bring them up for x in $INTERFACES; do ifup $x & done