윈도우 ipv6 끄기

2013. 12. 10. 23:46 | 윈도우 일반
윈도우에서 ipv6 끄는 방법

아래와 같이 제어판을 통해 Internet Protocol Version 6 (TCP/IPv6) 부분을 체크 풀어줘도 되지만
NIC가 여러개인 경우, 대량으로 작업해야 하는 경우(자동화)에는 적합하지 않다.


따라서 아래와 같이 레지스트리 변경 방법을 활용해보자.

관리자 권한으로 명령 프롬프트를 띄운 후 아래 커맨드 입력

reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 0xFFFFFFFF /f


리부팅 해야 적용된다.

※ 적용 전


※ 적용 후


DisabledComponents 의 값 데이터 의미는 아래를 참조

Type 0 to enable all IPv6 components. (Windows default setting)
Type 0xffffffff to disable all IPv6 components except the IPv6 loopback interface. This value also configures Windows to prefer using IPv4 over IPv6 by changing entries in the prefix policy table. For more information, see Source and Destination Address Selection.
Type 0x20 to prefer IPv4 over IPv6 by changing entries in the prefix policy table.
Type 0x10 to disable IPv6 on all nontunnel interfaces (both LAN and Point-to-Point Protocol [PPP] interfaces).
Type 0x01 to disable IPv6 on all tunnel interfaces. These include Intra-Site Automatic Tunnel Addressing Protocol (ISATAP), 6to4, and Teredo.
Type 0x11 to disable all IPv6 interfaces except for the IPv6 loopback interface.