Description of Problem: The /sbin/ifup script which activates and configures network devices in RedHat Linux is forcing the 'scope' property of addresses added to devices to 'host' for the loopback device and to default (global) for all other devices. It would be useful to be able to customize the scope field, since this allow a finer selection of source addresses of network connection from the machine (among others). Version-Release number of selected component (if applicable): ALL Simple diff -u: --- ifup.orig 2002-11-01 00:09:49.000000000 +0200 +++ ifup 2002-11-01 00:14:29.000000000 +0200 @@ -235,7 +235,7 @@ if [ "${DEVICE}" = "lo" ]; then SCOPE="scope host" else - SCOPE= + SCOPE=${SCOPE:-} fi if [ -n "$SRCADDR" ]; then
Added in CVS, will be in 6.96-1 or later.