"윈도우 IPv6 비활성화, 활성화"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(사용자 3명의 중간 판 16개는 보이지 않습니다)
1번째 줄: 1번째 줄:
{{개요}}
==개요==
;윈도우 IPv6 비활성화, 활성화
;윈도우 IPv6 비활성화, 활성화
==확인==
{{참고|윈도우 IPv6 상태 확인}}
*기본적으로 IPv6가 활성화되어 있다.
*기본적으로 IPv6가 활성화되어 있다.
<source lang='dos'>
<syntaxhighlight lang='console'>
C:\Users\jmnote>reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents
C:\Users\zetawiki>reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents




오류: 오류: 시스템이 지정된 레지스트리 키 또는 값을 찾을 수 없습니다.
오류: 오류: 시스템이 지정된 레지스트리 키 또는 값을 찾을 수 없습니다.
</source>
</syntaxhighlight>
:→ DisabledComponents 가 설정되지 않음. 즉 IPv6 활성화 상태
:→ DisabledComponents 가 설정되지 않음. 즉 IPv6 활성화 상태
*비활성화해보고 다시 활성화해보자.
*변경 적용을 위해서는 재부팅이 필요하다.


==비활성화==
==비활성화==
<source lang='dos'>
<syntaxhighlight lang='console'>
C:\Users\jmnote>reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 0xFFFFFFFF /f
C:\Users\zetawiki>ipconfig | findstr IPv6
  링크-로컬 IPv6 주소 . . . . : fb80::d519:3021:ac9e:9b37%11
  링크-로컬 IPv6 주소 . . . . : fb80::2169:826d:7fce:3d07%14
  링크-로컬 IPv6 주소 . . . . : fb80::9d9:12a0:5c21:ebd%15
</syntaxhighlight>
<syntaxhighlight lang='console'>
C:\Users\zetawiki>reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 0xFFFFFFFF /f
작업을 완료했습니다.
작업을 완료했습니다.
 
</syntaxhighlight>
C:\Users\jmnote>reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents
<syntaxhighlight lang='console'>
C:\Users\zetawiki>reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents


HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters
     DisabledComponents    REG_DWORD    0xffffffff
     DisabledComponents    REG_DWORD    0xffffffff
</source>
</syntaxhighlight>
:→ DisabledComponents 가 설정되었다.
:→ DisabledComponents 가 설정되었다.
<source lang='dos'>
<syntaxhighlight lang='console'>
C:\Users\jmnote>ipconfig | findstr IPv6
C:\Users\zetawiki>ipconfig | findstr IPv6
   링크-로컬 IPv6 주소 . . . . : fb80::d519:3021:ac9e:9b37%11
   링크-로컬 IPv6 주소 . . . . : fb80::d519:3021:ac9e:9b37%11
   링크-로컬 IPv6 주소 . . . . : fb80::2169:826d:7fce:3d07%14
   링크-로컬 IPv6 주소 . . . . : fb80::2169:826d:7fce:3d07%14
   링크-로컬 IPv6 주소 . . . . : fb80::9d9:12a0:5c21:ebd%15
   링크-로컬 IPv6 주소 . . . . : fb80::9d9:12a0:5c21:ebd%15
</source>
</syntaxhighlight>
:→ 그런데 아직 IPv6 주소가 남아 있다. 실제로 적용되기 위해서는 재부팅해야 한다.
:→ 그런데 아직 IPv6 주소가 남아 있다. 실제로 적용되기 위해서는 재부팅해야 한다.
{{참고|윈도우 재부팅}}
{{참고|윈도우 재부팅}}
<source lang='dos'>
<syntaxhighlight lang='console'>
C:\Users\jmnote>shutdown /r /t 0
C:\Users\zetawiki>shutdown /r /t 0
</source>
</syntaxhighlight>
<source lang='dos'>
<syntaxhighlight lang='console'>
C:\Users\jmnote>ipconfig | findstr IPv6
C:\Users\zetawiki>ipconfig | findstr IPv6


C:\Users\jmnote>
C:\Users\zetawiki>
</source>
</syntaxhighlight>
:→ 재부팅 후에는 IPv6가 사라졌다.
:→ 재부팅 후에는 IPv6가 사라졌다.


==활성화==
==활성화==
<source lang='dos'>
<syntaxhighlight lang='console'>
C:\Users\jmnote>reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 0 /f
C:\Users\zetawiki>ipconfig | findstr IPv6
 
C:\Users\zetawiki>
</syntaxhighlight>
<syntaxhighlight lang='console'>
C:\Users\zetawiki>reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 0 /f
작업을 완료했습니다.
작업을 완료했습니다.
</source>
</syntaxhighlight>
<syntaxhighlight lang='console'>
C:\Users\zetawiki>reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents
 
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters
    DisabledComponents    REG_DWORD    0x0
</syntaxhighlight>
<syntaxhighlight lang='console'>
C:\Users\zetawiki>shutdown /r /t 0
</syntaxhighlight>
<syntaxhighlight lang='console'>
C:\Users\zetawiki>ipconfig | findstr IPv6
  링크-로컬 IPv6 주소 . . . . : fb80::d519:3021:ac9e:9b37%11
  링크-로컬 IPv6 주소 . . . . : fb80::2169:826d:7fce:3d07%14
  링크-로컬 IPv6 주소 . . . . : fb80::9d9:12a0:5c21:ebd%15
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[윈도우 IPv6 상태 확인]]
*[[윈도우 IPv6 상태 확인]]
*[[리눅스 IPv6 비활성화]]


==참고 자료==
==참고==
*http://support.microsoft.com/kb/929852
*http://support.microsoft.com/kb/929852
*http://snoopybox.co.kr/1717
*http://snoopybox.co.kr/1717


[[분류: 윈도우]]
[[분류: 윈도우]]

2021년 6월 2일 (수) 07:45 기준 최신판

1 개요[ | ]

윈도우 IPv6 비활성화, 활성화
  • 기본적으로 IPv6가 활성화되어 있다.
C:\Users\zetawiki>reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents


오류: 오류: 시스템이 지정된 레지스트리 키 또는 값을 찾을 수 없습니다.
→ DisabledComponents 가 설정되지 않음. 즉 IPv6 활성화 상태
  • 비활성화해보고 다시 활성화해보자.
  • 변경 적용을 위해서는 재부팅이 필요하다.

2 비활성화[ | ]

C:\Users\zetawiki>ipconfig | findstr IPv6
   링크-로컬 IPv6 주소 . . . . : fb80::d519:3021:ac9e:9b37%11
   링크-로컬 IPv6 주소 . . . . : fb80::2169:826d:7fce:3d07%14
   링크-로컬 IPv6 주소 . . . . : fb80::9d9:12a0:5c21:ebd%15
C:\Users\zetawiki>reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 0xFFFFFFFF /f
작업을 완료했습니다.
C:\Users\zetawiki>reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters
    DisabledComponents    REG_DWORD    0xffffffff
→ DisabledComponents 가 설정되었다.
C:\Users\zetawiki>ipconfig | findstr IPv6
   링크-로컬 IPv6 주소 . . . . : fb80::d519:3021:ac9e:9b37%11
   링크-로컬 IPv6 주소 . . . . : fb80::2169:826d:7fce:3d07%14
   링크-로컬 IPv6 주소 . . . . : fb80::9d9:12a0:5c21:ebd%15
→ 그런데 아직 IPv6 주소가 남아 있다. 실제로 적용되기 위해서는 재부팅해야 한다.
C:\Users\zetawiki>shutdown /r /t 0
C:\Users\zetawiki>ipconfig | findstr IPv6

C:\Users\zetawiki>
→ 재부팅 후에는 IPv6가 사라졌다.

3 활성화[ | ]

C:\Users\zetawiki>ipconfig | findstr IPv6

C:\Users\zetawiki>
C:\Users\zetawiki>reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 0 /f
작업을 완료했습니다.
C:\Users\zetawiki>reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters /v DisabledComponents

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters
    DisabledComponents    REG_DWORD    0x0
C:\Users\zetawiki>shutdown /r /t 0
C:\Users\zetawiki>ipconfig | findstr IPv6
   링크-로컬 IPv6 주소 . . . . : fb80::d519:3021:ac9e:9b37%11
   링크-로컬 IPv6 주소 . . . . : fb80::2169:826d:7fce:3d07%14
   링크-로컬 IPv6 주소 . . . . : fb80::9d9:12a0:5c21:ebd%15

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}