On 01/12/2010 07:05 PM, Robert Moskowitz wrote:
On 01/12/2010 01:00 PM, Michael Cronenworth wrote:
Robert Moskowitz on 01/12/2010 02:36 PM wrote:
And before I left home I was on my wireless network that DOES have IPv6
and a RA server.
It's possible you've hit a bug with NetworkManager. It may be carrying
over the default gateway for IPv6 if you go from a IPv6 network to
IPv4-only network. I do this all the time though and I have not seen
issues, so it may be certain steps that you are doing that no one else
is.
We think it is a "misconfigure" notebook on the network here.  I
succeeded in deleting the gw route, and 2 minutes later it was back.
And the network guys confirmed it is not coming from them.  Then I
remembered I did not have this problem yesterday.  So the current
thought is someone showed up today and their system is advertising
something (RA?) that I am picking up.

GRRR.


Robert I had the same problem on my Asus eeePC 1000 and I did this; check attached file and follow instructions . My wireless card is setup as ra0 instead of wlan0 . So I had to setup in /etc/
dhclient-ra0.conf
1.  Q: Networking (or DNS) seems really slow and fails often (Updated 2 January 
2009)
A: If Fedora 10's networking seems slow or you get frequent network connection 
failures (when other Fedoras or other OSes were working just fine on your 
machine), then you're probably hitting this bug.

Here's how you can work around it:

   1. Open a Terminal.
   2. Become root:

      su -
   3. Make sure that the "dnsmasq" program is installed (it usually is, by 
default, in Fedora 10):

      rpm -q dnsmasq

      If that says "package dnsmasq is not installed", then you need to install 
dnsmasq, by running the following command:

      yum install dnsmasq
   4. Now, you have to find out which network interface your machine is using:

      route -n

      You'll see some output that looks like this:

      Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.1.0 
0.0.0.0 255.255.255.0 U 1 0 0 eth0 0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0

      The eth0 there (the furthest bottom-right text in the output) is the name 
of the network interface I'm using. Yours might be eth1 or something totally 
different. Just remember it for the next step.
   5. Now create a file called /etc/dhclient-<your network interface>.conf. For 
example, if your network interface is eth0, the file would be called 
/etc/dhclient-eth0.conf.

      You can create the file with this command (assuming your network 
interface is eth0):

      nano /etc/dhclient-eth0.conf

      Then make this the only line in the file:

      prepend domain-name-servers 127.0.0.1;

      And then save the file and close it (Ctrl-X then Y).

      If you have both a wireless and a wired network connection, you will have 
to do this step once for each of them.
   6. Now start dnsmasq:

      service dnsmasq start

      And make sure that it will start every time your computer starts:

      chkconfig dnsmasq on
   7. Now restart your network connection:

      service NetworkManager restart

And now things should be as fast as normal again. You might have to restart the 
programs that you're running for them to pick up the changes that 
NetworkManager made when it restarted.



2.  * IPv6
You might notice that your browsing through Firefox is a little slow on Fedora 
10. This is because Firefox 3 has enabled by default IPv6 which causes Firefox 
to first resolve an IPv6 address and after the connection fails it switches to 
IPv4. To change this setting type:

about:config


and in Filter box type:

network.dns.disableIPv6


Right click on it, select Toggle and change its value to true. Restart Firefox 
and you are ready! 




-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe: https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

Reply via email to