Linux

如何在 Ubuntu 9.04 上完全禁用 ipv6

  • October 17, 2009

我做了什麼:

/etc/modprobe.d/blacklist.conf

blacklist net-pf-10
blacklist ipv6

/boot/grub/menu.lst

title           Ubuntu 9.04, kernel 2.6.28-15-server
kernel          /boot/vmlinuz-2.6.28-15-server ... ro quiet splash ipv6.disable=1
initrd          /boot/initrd.img-2.6.28-15-server
quiet

但仍然:

root@bubi:~# ip a | grep inet6
   inet6 ::1/128 scope host
   inet6 fe80::a00:27ff:fecf:c12e/64 scope link
root@bubi:~#

任何想法?

我已經閱讀了很多關於它的內容,這似乎是 9.04 發行版中的一個錯誤。您必須在沒有 ipv6 的情況下重新編譯核心才能做到這一點。

我的情況是 Opera 在開啟 ipv6 的情況下無法工作。

sysctl -w net.ipv6.conf.all.disable_ipv6=1 試試這對我有用。

引用自:https://serverfault.com/questions/60481