Changes between Version 1 and Version 2 of TipAndDoc/network/ipv6


Ignore:
Timestamp:
Oct 13, 2010 2:27:16 PM (14 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/network/ipv6

    v1 v2  
    11[[PageOutline]] 
    22 
    3  == disabling IPv6 == 
     3 = disabling IPv6 = 
     4 == Windows Vista / 7 == 
    45 * [http://hobby.sugio-garden.com/computer-tips/windows-tips/windows-scripting-hosts/tcp-ipv6306e712152b95316 TCP/IPv6の無効化 — Sugio laboratory] 
    56   * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\DisabledComponents 
     
    1920netsh interface ipv6 teredo set state disabled 
    2021}}} 
     22 
     23 == Ubuntu == 
     24 === hardy === 
     25 * 以下の一行を、modprobeの設定ファイルに追加 
     26{{{ 
     27install ipv6 /sbin/modprobe -n -i ipv6 
     28}}} 
     29   * Ubuntu -> /etc/modprobe.d/blacklist (/etc/modprobe.d/* のどれでも可) 
     30   * RedHat -> /etc/modprobe.conf 
     31 
     32 * [http://d.hatena.ne.jp/adsaria/20080525 UbuntuでIPv6を無効化 - adsaria mood] 
     33 * [http://fun.poosan.net/sawa/index.php?UID=1197817541 Fedora で IPv6 をスマートに無効化] 
     34 === lucid === 
     35 * /etc/sysctl.conf 
     36{{{ 
     37#disable ipv6 
     38net.ipv6.conf.all.disable_ipv6 = 1 
     39net.ipv6.conf.default.disable_ipv6 = 1 
     40net.ipv6.conf.lo.disable_ipv6 = 1 
     41}}}