美文网首页
Win7 配置Ipv6地址

Win7 配置Ipv6地址

作者: _凌浩雨 | 来源:发表于2019-01-02 18:54 被阅读30次
1. 进入控制面板,选择网络和Internet -> 查看网络状态和任务
图1.png
2. 更改适配器设置
图2.png
3. 选择正在使用的无线,右键属性
图3.png
图4.png
4. 设置IPv4和IPv6
图5.png 图6.png
5. 一键开启IPv6
@echo off

net start "ip helper"

netsh int ipv6 reset

netsh int teredo set state default

netsh int 6to4 set state default

netsh int isatap set state default

netsh int teredo set state server=teredo.remlab.net

netsh int ipv6 set teredo enterpriseclient

netsh int ter set state enterpriseclient

route DELETE ::/0

netsh int ipv6 add route ::/0 "Teredo Tunneling Pseudo-Interface"

netsh int ipv6 set prefix 2002::/16 30 1

netsh int ipv6 set prefix 2001::/32 5 1

Reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Dnscache\Parameters /v AddrConfigControl /t REG_DWORD /d 0 /f

netsh int teredo set state default

netsh int 6to4 set state default

netsh int isatap set state default

netsh int teredo set state server=teredo.remlab.net

netsh int ipv6 set teredo enterpriseclient

netsh int ter set state enterpriseclient

route DELETE ::/0

netsh int ipv6 add route ::/0 "Teredo Tunneling Pseudo-Interface"

netsh int ipv6 set prefix 2002::/16 30 1

netsh int ipv6 set prefix 2001::/32 5 1

Reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Dnscache\Parameters /v AddrConfigControl /t REG_DWORD /d 0 /f

ipconfig /all

ipconfig /flushdns

netsh int ipv6 show teredo

netsh int ipv6 show route

netsh int ipv6 show int

netsh int ipv6 show prefix

netsh int ipv6 show address

route print

cmd

将以上内容保存在IPv6.bat文件,使用管理员运行

6. 查看状态

打开命令提示符窗口,输入netsh int ipv6 show teredo state,如果状态为qualified,则说明开启成功。

图7.png
7. 测试

浏览器打开http://test-ipv6.com/网址,显示如下图则说明开启成功。

图8.png

原文地址

相关文章

  • IPv6配置

    IPv6有静态和自动配置两种: 静态配置Windowswindows下静态配置IPv6地址很简单,所点即所得,打开...

  • Win7 配置Ipv6地址

    1. 进入控制面板,选择网络和Internet -> 查看网络状态和任务 2. 更改适配器设置 3. 选择正在使用...

  • uos linux网络管理

    实验-修该网卡默认命名规则 实验-临时配置IP地址 实验-IP地址的配置 实验-ipv6地址添加 实验-多配置文件...

  • IPV6相关实验

    目录 IPv6基础实验 IPv6无状态配置实验 IPv6组网实验 IPv6地址解析实验 OSPFv3协议分析实验 ...

  • ping

    Centos 下ping ipv6 地址: windows下 ping ipv6 地址:

  • Maven安装与配制环境【win7/win10】

    win7【配置】 1. 下载Maven官方地址:http://maven.apache.org/download....

  • Maven安装与配制环境【win7/win10】

    win7【配置】 1. 下载Maven官方地址:http://maven.apache.org/download....

  • nginx--代理ipv6地址

    容器里的地址都是ipv6的 想转成ipv4访问 可以通过以下配置文件

  • iOS ipv6相关

    [基础常识]为阿里云ECS(CentOS7)配置IPv6隧道地址https://bbs.aliyun.com/re...

  • (转)ipv6地址格式

    IPv6 地址大小为 128 位。首选的 IPv6 地址表示为:xxxx:xxxx:xxxx:xxxx:xxxx:...

网友评论

      本文标题:Win7 配置Ipv6地址

      本文链接:https://www.haomeiwen.com/subject/tkktrqtx.html