<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
On 08/10/2009 03:23 PM, <a class="moz-txt-link-abbreviated" href="mailto:sam.sharpe+lists.redhat@gmail.com">sam.sharpe+lists.redhat@gmail.com</a> wrote:
<blockquote cite="mid:20090810202343.2dde56ed@samlap.fireburst.co.uk"
 type="cite">
  <pre wrap="">Jim wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Ran preupgrade from F10 >F11 and everything works perfect , EXCEPT ,
I had a conf file in etc that had to do with the NO IPV6 and dns
problem in F10, F11 and preupgrade eliminated that conf file, why
don't they set it up that it will leave the conf file the user makes
alone. ? During upgrade.

    </pre>
  </blockquote>
  <pre wrap=""><!---->
please name the config file - otherwise we don't know what you are
talking about...

... however, if you are asking what the file was so you can recreate it,
then my best guess is /etc/sysconfig/network - because it can have:
NETWORKING_IPV6=no
SEARCH="blah.domain.com blah2.domain.com domain.com"

Which fits your criteria of DNS problems and stopping IPV6

The reason RPM won't persist it is because:
[sam@samlap ~]$ rpm -qif /etc/sysconfig/network
file /etc/sysconfig/network is not owned by any package

So... I'm guessing that Anaconda "updated" it as part of the upgrade
and wasn't intelligent enough to save your customisations - file a bug
against anaconda if that's the case and maybe you can save someone else
some trouble later on ;o)

  </pre>
</blockquote>
I have my box setup as per these instructions, below. Is there a easier
way to over come this IPV6=no problem.<br>
<br>
1.  Q: Networking (or DNS) seems really slow and fails often (Updated 2
January 2009)<br>
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.<br>
<br>
Here's how you can work around it:<br>
<br>
   1. Open a Terminal.<br>
   2. Become root:<br>
<br>
      su -<br>
   3. Make sure that the "dnsmasq" program is installed (it usually is,
by default, in Fedora 10):<br>
<br>
      rpm -q dnsmasq<br>
<br>
      If that says "package dnsmasq is not installed", then you need to
install dnsmasq, by running the following command:<br>
<br>
      yum install dnsmasq<br>
   4. Now, you have to find out which network interface your machine is
using:<br>
<br>
      route -n<br>
<br>
      You'll see some output that looks like this:<br>
<br>
      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<br>
<br>
      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.<br>
   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.<br>
<br>
      You can create the file with this command (assuming your network
interface is eth0):<br>
<br>
      nano /etc/dhclient-eth0.conf<br>
<br>
      Then make this the only line in the file:<br>
<br>
      prepend domain-name-servers 127.0.0.1;<br>
<br>
      And then save the file and close it (Ctrl-X then Y).<br>
<br>
      If you have both a wireless and a wired network connection, you
will have to do this step once for each of them.<br>
   6. Now start dnsmasq:<br>
<br>
      service dnsmasq start<br>
<br>
      And make sure that it will start every time your computer starts:<br>
<br>
      chkconfig dnsmasq on<br>
   7. Now restart your network connection:<br>
<br>
      service NetworkManager restart<br>
<br>
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.<br>
<br>
<br>
<br>
2.  * IPv6<br>
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:<br>
<br>
<a class="moz-txt-link-freetext" href="about:config">about:config</a><br>
<br>
<br>
and in Filter box type:<br>
<br>
network.dns.disableIPv6<br>
<br>
<br>
Right click on it, select Toggle and change its value to true. Restart
Firefox and you are ready! <br>
<br>
<br>
</body>
</html>