Post a copy of both your '/etc/sysconfig/network-sc
Main Topics
Browse All TopicsWhen I add a second ip address to an interface as suggested on the internet, so the ip address will be there right after boot time, I get the following with Fedora 11:
see code
it shouldbe see code part II
I use the method suggested on
http://blog.taragana.com/i
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
# Networking Interface
DEVICE=eth0
HWADDR
IP
BOO
NETMASK=2
TYPE=Eth
#GATE
NM_
IPV6IN
ONBOO
USERC
PREFI
NAME="
UUID=5fb06bd0-0bb0-7f
DNS2=192.1
DNS
#GATEWA
and:
#
DEVICE=eth0:0
IPAD
BOOTP
NETMASK=2
ONBOOT=y
NAME="Sy
Ok I have disabled NM_CONTROLLED
When I do a restart of the network with service network restart
I get:
RTNETLINK answers: File exists
RTNETLINK answers: File exists
RTNETLINK answers: File exists
RTNETLINK answers: File exists
RTNETLINK answers: File exists
RTNETLINK answers: File exists
RTNETLINK answers: File exists
RTNETLINK answers: File exists
RTNETLINK answers: File exists
Comment to the network start-up script:
With
interfaces=$(ls ifcfg* | \
LANG=C sed -e "$__sed_discard_ignored_fi
-e '/\(ifcfg-lo\|:\|ifcfg-.*-
-e '/ifcfg-[A-Za-z0-9\._-]\+$
LANG=C sort -k 1,1 -k 2n | \
LANG=C sed 's/ //')
ifcfg-lo and ifcfg-ethx:x are excluded from the filter list and not started.
In Fedora 11 things seem to be different then that we were used to with Linux.
NM_CONTROLLED is handled by the NetworkManager.
Having it set to 'NM_CONTROLLED=no' disallows the NetworkManager from handling these interfaces.
I recommend disabling the NetworkManager completely:
- chkconfig NetworkManager off
- /etc/init.d/NetworkManager
---
Through some quick trial and error, I utilized the 'system-config-network' command and then used the GUI interface to setup the Ethernet/IP alias. Once it creates the IP alias, you then active it and then save it. It will most likely prompt you to restart the network services -- '/etc/init.d/network restart'
Correction:
They are not started at the same time and in the same location as "standard" eth devices (and with good reason - the hardware interface does NOT need to be initialized & drivers do NOT need to be loaded).
I suggest you test your theory that your ifcfg-eth0:0 is correct and that it's just not running at boot-time:
- After a fresh boot, check your ifconfig -a output to see if device eth0:0 is there.
- Assuming not, run the command "ifup eth0:0" and re-check.
- If the "ifup" command did NOT create & configure eth0:0 then you KNOW that your file has an error (perhaps a permissions problem, or a spelling issue -- either way, you'll know it's in that file.
- If the command DOES create the interface, rather than attempting to fix the system startup files for RedHat, just add the ifup command to your /etc/rc.d/rc.local file -- it's the REASON for the local file to begin with (To make local modifications not "covered" by the system startup scripts), and will run at the end of your system startup via the S99local entry in /etc/rc?.d
Good Luck!
Dan
IT4SOHO
OH... and an explanation of what happens when you disable network management and when you restart the network you get a "file exists" error:
- When you reconfigure the network without the network management and perform the "stop" part of a restart, it doesn't think network management needs to be stopped because it is not configured! Thus, when you attempt to restart, since it didn't stop correctly, it won't start correctly.
Try stopping the network services, editing the configuration files to remove network management, then restarting the network services (or, reconfigure & reboot instead of just restarting the network).
Just my thoughts...
Dan
IT4SOHO
Business Accounts
Answer for Membership
by: howartPosted on 2009-10-29 at 06:05:27ID: 25693143
What goes wrong?
How can I make the system boot to the desired situation?