hi, im trying to disable IPv6 on my Fedora 8.
I followed some tuts for Fedora 7, but without success.
I often use wget and it takes so much time to resolve ip from DNS...i have dual boot (Windows XP) where i use wget and it goes really quick.
I used Wireshark to detect problem and it goes like this:
there is AAAA query on DNS and the response is always No such name...
after that there is A query (ipv4) to DNS that is fast.
So when i use wget -4
www.google.com it goes so fast as on Windows, but
im looking for solution where i do not need to pass and -4 argument.
Code:
# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=mmx.pc
# from tutorial for FC7
NETWORKING_IPV6=no
# system-config-network
I have disabled IPv6 for interface eth0
In Firefox
about
:config
network.dns.disableIPv6 -> true (speeds up surfing through firefox)
Code:
cat /etc/modprobe.conf
alias eth0 sis900
alias scsi_hostadapter pata_sis
options snd-emu10k1 index=0
options snd-intel8x0 index=0
alias snd-card-2 snd-mpu401
options snd-mpu401 index=2
options snd-intel8x0 index=0
alias snd-card-0 snd-emu10k1
options snd-card-0 index=0
alias net-pf-10 off
alias ipv6 off
But still wget -4
www.google.com is 10 times faster than wget
www.google.com
I didnt disabled AAAA DNS queries...How can i do that?