You are not logged in.
After updating to kmod, my modprobe.conf seems to be ignored contrary to what people say about kmod being a drop in for m-i-t.
I have blacklisted ipv6 in the config file but it keeps being loaded into the kernel anyway. Unless of course NetworkManager is doing this automatically after kmod does it business, but somehow I doubt this.
Anyone else getting this issue or something similar?
Offline
A simple 'blacklist ipv6' will not prevent ipv6 from being inserted. This was absolutely true of module-init-tools as well because blacklist rules are never honored when a module is pulled in as a dependency. If you want to prevent ipv6 from being loaded, you need to use:
alias net-pf-10 offor
options ipv6 disable=1The former is preferred.
Last edited by falconindy (2012-01-26 03:01:15)
Offline
A simple 'blacklist ipv6' will not prevent ipv6 from being inserted.
That's weird because I was having half panics because of ipv6 causing infinite loops and blacklisting helped because it prevented the module from being loaded at boot. Only after updating to kmod do I have this problem. Unless something else was updated that requires ipv6 (not NetworkManager)
Offline
Offline
A simple 'blacklist ipv6' will not prevent ipv6 from being inserted.
It really did, for me at least.
Before kmod I had "blacklist ipv6" in /etc/modprobe.d/blacklist.conf and
that's all I needed, for any module. Believe me, I kept an eye on lsmod ![]()
After kmod, despite blacklist.conf, going to a website with firefox would load the ipv6 module.
So I changed the entry in blacklist.conf to:
blacklist ipv6
install ipv6 /bin/false
That stops it.
Also had other blacklisted modules, they all started ignoring blacklist.conf after kmod.
Offline
What is the difference between
options ipv6 disable=1and
options ipv6 disable_ipv6=1Offline
Where exactly are you blacklisting it? If you previously edited /etc/modprobe.d/modprobe.conf
# disable autoload of ipv6
alias net-pf-10 offthe kmod upgrade had it [removed and] renamed to /etc/modprobe.d/modprobe.conf.pacsave.
Offline
Blacklisting reasoning in my second post and no Kmod is most definitely ignoring modprobe.conf.
[techwiz@archlinux ~]$ lsmod | grep ipv6
ipv6 288511 30
[techwiz@archlinux ~]$ cat /etc/modprobe.d/modprobe.conf
#
# /etc/modprobe.d/modprobe.conf
#
alias net-pf-10 off
[techwiz@archlinux ~]$ I have it "off" yet its still being loaded in. I'm worried about it being loaded because at any moment ipv6 could go off and kill anything I was working on.
Offline
Works for me:
[karol@black ~]$ pacman -Q kmod
kmod 4-1
[karol@black ~]$ cat /etc/modprobe.d/modprobe.conf
#
# /etc/modprobe.d/modprobe.conf
#
options i915 modeset=1
# disable autoload of ipv6
alias net-pf-10 off
blacklist pcspkr
[karol@black ~]$ lsmod | grep ipv6
[karol@black ~]$ Last edited by karol (2012-01-27 22:48:46)
Offline
Then it must be something loading in the module... I'll try smudge's suggestion of installing ipv6 as /bin/false
Offline