10
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

IPv6の無効化/有効化

Last updated at Posted at 2019-11-19

IPv6 無効化

アダプターのプロパティとインターフェースの両方からIPv6の無効化する。

アダプタープロパティの設定

  • 対象NICのアダプターのプロパティを開き、「インターネット・プロトコルバージョン6(TCP/IPv6)」を無効化する。
  • もしくはPowerShell上で以下のコマンドを実行する。
Disable-NetAdapterBinding -Name "イーサネット" -ComponentID ms_tcpip6
Get-NetAdapterBinding -Name "イーサネット" -ComponentID ms_tcpip6

各インターフェースの無効化

以下のコマンドはコマンドプロンプトで実行する。

ISATAP インタフェース無効化

netsh interface ipv6 isatap set state disabled

6to4 インタフェース無効化

netsh interface ipv6 6to4 set state disabled

Teredo インタフェース無効化

netsh interface ipv6 set teredo disabled

IPv6 有効化

アダプターのプロパティとインターフェースの両方からIPv6の有効化する。

アダプタープロパティの設定

  • 対象NICのアダプターのプロパティを開き、「インターネット・プロトコルバージョン6(TCP/IPv6)」を有効化する。
  • もしくはPowerShell上で以下のコマンドを実行する。
Enable-NetAdapterBinding -Name "イーサネット" -ComponentID ms_tcpip6
Get-NetAdapterBinding -Name "イーサネット" -ComponentID ms_tcpip6

各インターフェースの有効化

以下のコマンドはコマンドプロンプトで実行する。

ISATAP インタフェース有効化

netsh interface ipv6 isatap set state enable

6to4 インタフェース有効化

netsh interface ipv6 6to4 set state enable

Teredo インタフェース有効化

netsh interface teredo set state enterpriseclient

IPv6インターフェースのステータス確認

ISATAP インタフェース

netsh interface ipv6 isatap show state

6to4 インタフェース

netsh interface ipv6 6to4 show state

Teredo インタフェース

netsh interface teredo show state
10
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?