Sam Varshavchik wrote:
Peter Horst writes:
[snip]
You probably have the BOOTP environment variable set somewhere. Grep for
BOOTP in /etc/sysconfig/network and /etc/sysconfig/network-scripts/*
You'll find several references to the BOOTP environment variables. You're
looking for something that sets it.
Hm. /etc/sysconfig/network-scripts/ifup has:
# Old BOOTP variable
if [ "${BOOTP}" = "yes" ]; then
BOOTPROTO=bootp
fi
if [ "${BOOTPROTO}" = "bootp" -o "${BOOTPROTO}" = "dhcp" ]; then
DYNCONFIG=true
fi
That's about the closest I can find.