Do
ls /etc/sysconfig/network-scripts/ifcfg*
see what devices you have as ifcfg-eth0,1,2 etc.
edit the relevant files, you should have something like
DEVICE=eth0
BOOTPROTO=static
BROADCAST=10.32.24.255
IPADDR=10.32.24.14
NETMASK=255.255.255.0
NETWORK=10.32.24.0
ONBOOT=yes
TYPE=Ethernet
in your case, the most relevant thing I'm guessing will have to do with ONBOOT=yes
|