You are not logged in.
I frankly don't see the need for X to use IPv6 on my machine, and therefore would prefer that it didn't load the ipv6 module, but I am clueless as to how to make it stop doing thing. I know IPv6 support is optional for XOrg, so surely there's some option for turning off IPv6 in /etc/profile or xorg.conf or something?
(Or perhaps a way of turning it off system-wide, since I really don't need it...)
Offline
I frankly don't see the need for X to use IPv6 on my machine, and therefore would prefer that it didn't load the ipv6 module, but I am clueless as to how to make it stop doing thing. I know IPv6 support is optional for XOrg, so surely there's some option for turning off IPv6 in /etc/profile or xorg.conf or something?
(Or perhaps a way of turning it off system-wide, since I really don't need it...)
Can't you do the following:
nano /etc/modprobe.d/aliases
Change this line:
alias net-pf-10 ipv6
To this:
#alias net-pf-10 ipv6
Basically just comment it out.
I believe theres also something like:
startx --disable-ipv6
Oh another thing I remember:
echo "alias net-pf-10 off" >> /etc/modprobe.conf
Offline
Gullible Jones wrote:I frankly don't see the need for X to use IPv6 on my machine, and therefore would prefer that it didn't load the ipv6 module, but I am clueless as to how to make it stop doing thing. I know IPv6 support is optional for XOrg, so surely there's some option for turning off IPv6 in /etc/profile or xorg.conf or something?
(Or perhaps a way of turning it off system-wide, since I really don't need it...)
Can't you do the following:
nano /etc/modprobe.d/aliasesChange this line:
alias net-pf-10 ipv6To this:
#alias net-pf-10 ipv6Basically just comment it out.
Arch Linux has no modprobe.d directory.
I believe theres also something like:
startx --disable-ipv6Oh another thing I remember:
echo "alias net-pf-10 off" >> /etc/modprobe.conf
Okay, I'll try those.
Offline
Thanks, the modprobe.conf modification worked. 8)
Offline
Thanks, the modprobe.conf modification worked. 8)
The first way I remember when using Fedora, didn't check if it was the same on Arch, so sorry about that And glad to provide help
Offline
You're welcome, and no need to apologize. 8)
(On second thought though, I was stupid not to google it though. :? )
Offline
You're welcome, and no need to apologize. 8)
(On second thought though, I was stupid not to google it though. :? )
Hehe, rather than googling, I just tend to search around other linux forums . but glad you got it worked out, I disabled ipv6 right after I installed Arch, Just couldn't remember what way I did it xD
Offline
I know I've seen it discussed in some of your other threads, but is there any actual performance gain to disabling it, or is it merely to keep unnecessary modules from loading?
Offline
In both archlinux and Ubuntu, disabling Ipv6 made websites noticably snappier. I don't have any numbers to prove that, and direct download isn't faster, but it seems like browsers find and connect to websites faster.
Offline
None that I know, but as I said I don't have any use for IPv6, so I figured it would better to disable it.
Offline
Basically, Alot of servers don't have great support for ipv6, but do have awesome support for ipv4, With ipv6 enabled you get more packets failed than actually being sent / recieved. With ipv6 disabled you'll have a more stable connection. It won't make you download any faster though, just a more stable ping.
Offline
The advantage of disabling ipv6 is that your system shouldn't make ipv6 DNS requests anymore then. When your system is ipv6-aware, programs like firefox will ask for AAA records, which is one extra query per DNS request. Also, many old broken DNS servers get confused with these queries and give a timeout. Since not everyone is running the last version of bind9, a fully patched up version of djbdns or the latest version of PowerDNS, a lot of these servers are still used on the internet.
Offline
Thanks for the info guys...I'll probably disable it too then.
Offline