Ok, you don't have both your wireless and your wired connection on together do you?
If you're using wireless on Fedora, I strongly suggest you use NetworkManager to handle your connection. This means ticking the box 'Managed by NetworkManager' in the device's page in the network configuration tool and making sure NetworkManager is running. (You may, of course, find that the conflict is arising because NetworkManager is already running and has already connected you...)
Do this as root (capitalisation of NetworkManager is important here): Code: service NetworkManager start
if that says unknown service, connect via wire to the internet and do: Code: yum install NetworkManager
and repeat the first command
To make sure that this service always starts, do this as root: Code: chkconfig NetworkManager on
|