Windows7 Autoconfiguration IPv4 Address 导致无法上

(2010-03-30 16:44:57)

标签:

杂谈

分类: 电脑软件问题

Windows7 Autoconfiguration IPv4 Address 导致无法上网

打开电脑,发现本地连接无法识别,ping网关失败。 执行ipconfig /all 发现,地址信息里多了Autoconfiguration IPv4 Address Ethernet adapter 本地连接: Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Realtek PCIe GBE Family C

打开电脑,发现本地连接无法识别,ping网关失败。

执行ipconfig /all 发现,地址信息里多了Autoconfiguration IPv4 Address

Ethernet adapter 本地连接:

Connection-specific DNS Suffix  . :
  
Description . . . . . . . . . . . : Realtek PCIe GBE Family
Controller
   Physical Address. . . . . . . . . :
00-23-5A-54-AC-66
   DHCP Enabled. . . . . . . . . . . :
No
   Autoconfiguration Enabled . . . . : Yes
  
Link-local IPv6 Address . . . . . :
fe80::954:8a7d:7c76:1548%11(Preferred)
   IPv4 Address. . . . . . . . . . . : 100.4.31.144(Duplicate)
   Subnet Mask . . . . . .
. . . . . : 255.255.255.0
   Autoconfiguration IPv4 Address. . :
169.254.21.72(Preferred)
  
Subnet Mask . . . . . . . . . . . : 255.255.0.0
   Default
Gateway . . . . . . . . . : 100.4.31.254
   DHCPv6 IAID . . . . . .
. . . . . : 184558426
   DHCPv6 Client DUID. . . . . . . . :
00-01-00-01-12-9F-AE-5E-00-23-5A-54-AC-66
   DNS Servers . . . . .
. . . . . . :
8.8.4.4
                                      
202.106.0.20
   NetBIOS over Tcpip. . . . . . . . :
Enabled

发现不管怎么配置,都会有Autoconfiguration IPv4 Address 是Preferred的,这个autoconfig的地址是无法与网络连接的。

解决办法:

开始-> 运行  cmd

然后执行下面的命令:

netsh winsock reset
catalog

netsh ini ip reset

重启计算机,Autoconfiguration IPv4 Address 消失,本地连接正常。

Ethernet adapter 本地连接:

Connection-specific DNS Suffix  . :
  
Description . . . . . . . . . . . : Realtek PCIe GBE Family
Controller
   Physical Address. . . . . . . . . :
00-23-5A-54-AC-66
   DHCP Enabled. . . . . . . . . . . :
No
   Autoconfiguration Enabled . . . . : Yes
  
Link-local IPv6 Address . . . . . :
fe80::954:8a7d:7c76:1548%11(Preferred)
   IPv4 Address. . . . . . .
. . . . : 100.4.31.129(Preferred)
   Subnet Mask . . . . . . . . .
. . : 255.255.255.0
   Default Gateway . . . . . . . . . :
100.4.31.254
   DHCPv6 IAID . . . . . . . . . . . :
184558426
   DHCPv6 Client DUID. . . . . . . . :
00-01-00-01-12-9F-AE-5E-00-23-5A-54-AC-66
   DNS Servers . . . . .
. . . . . . :
8.8.4.4
                                      
202.106.0.20
   NetBIOS over Tcpip. . . . . . . . :
Enabled

Windows7 Autoconfiguration IPv4 Address 导致无法上网的更多相关文章

  1. 如何解决分配到Autoconfiguration IPV4 地址

    配置完服务器静态IP后,在CMD窗口中查看ip地址,发现是Autoconfiguration IPV4. 上网搜索了,是关于虚拟服务器的,但是我没有配置虚拟服务器,有点奇怪. 使用下面的教程,可以解决 ...

  2. 【解决】could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network

    在同一套环境中跑了很多个项目都是用 docker-compose的方式启动的,导致创建的自定义网络过多出现下面的报错 Error response from daemon: could not fin ...

  3. scala get ipv4 address

    scala 用 isInstanceOf 会报错(instanceof 这个函数就没有),java 下使用  instanceof 来判断是否是 Inet4Address test("get ...

  4. I.MX6 MAC Address 导致的系统崩溃

    /**************************************************************************** * I.MX6 MAC Address 导致 ...

  5. How to convert an IPv4 address into a integer in C#?

    仅仅针对于IPv4的处理方法 从string转换为int 以及从int转换为string // IPv4 int intAddress = BitConverter.ToInt32(IPAddress ...

  6. 无线路由器wan口和lan口ip同网段导致无法上网解决办法

    环境 本地网段为192.168.0.0/24 路由器默认网段也是192.168.0.0/24 设置好路由器wan口DHCP自动获取ip以后无法上网 解决办法 把路由器是lan口地址设置为192.168 ...

  7. docker could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network

    原因: 无法进行网络分配了 解决方法: // 所有的网络 docker network ls // 删除不用的,腾出多余的 docker network rm <networkname> ...

  8. linux命令行模式下实现代理上网(转)

    有些公司的局域网环境,例如我们公司的只允许使用代理上网,图形界面的很好解决就设置一下浏览器的代理就好了,但是linux纯命令行的界面就....下面简单几步就可以实现了! 一.命令行界面的一般代理设置方 ...

  9. ------- 当前全球最新的 IPv4 地址池使用报告 -------

    -------------------------------------------------------------- 对于互联网行业相关的从业人员而言,时刻关注 IPv4 地址池的状态此类&q ...

随机推荐

  1. oracle入门之对表数据查询(二)

    oracle表复杂查询 在实际应用中经常需要执行复杂的数据统计,经常需要显示多张表的数据,现在我们给大家介绍较为复杂的select语句 数据分组-max,min,avg,sum,count 如何显示所 ...

  2. springboot - websocket实现及原理

    本文章包括websocket面试相关问题以及spring boot如何整合webSocket. 参考文档 https://blog.csdn.net/prayallforyou/article/det ...

  3. day02 while循环 运算符 格式化输出 编码

     今日主要内容 while循环:判断条件是否成立. 如果成立执行循环体.然后再次判断条件,.....直到条件不成立的时候跳出循环 语法: while 条件: 循环体 else: 当条件不成立的时候执行 ...

  4. 字符串a-b

    #include<iostream> #include<stdio.h> #include<algorithm> #include<cmath> #in ...

  5. golang中的mutex锁

    mutex锁中一种互斥锁,如果有多个goroutine需要对同一变量进行修改则需要对该变量施加mutex锁以实现安全读写.

  6. 集合和format

    昨天没来及整理博客,有点小累.休息了一下,今天的内容比较多 集合还是按照之前的方法,整理了一边所有的方法,其次在看了下format的方法 还有一些函数,暂时学了一点 还不知道怎么整理 s = {,,, ...

  7. Holer实现手机APP应用外网访问本地WEB应用

    手机APP应用公网访问内网WEB应用 本地安装了WEB服务端,手机APP应用只能在局域网内访问本地WEB,怎样使手机APP应用从公网也能访问本地WEB? 本文将介绍使用holer实现的具体步骤. 1. ...

  8. 微信小程序自定义TabBar

    项目中需要根据用户角色控制TabBar中各Item的显示和隐藏,然而小程序自带TabBar没有提供隐藏某个item的功能,只好自己动手写了一个. 1.wxml文件 <view class=&qu ...

  9. contos7 go 环境搭建

    安装包下载地址为:https://golang.org/dl/.(网址打不开请FQ) 根据不同系统,选择对应的安装包: 解压安装 1.下载源码包:go1.10 linux/amd64 2.将下载的源码 ...

  10. <html> ---- position

    position 固定的属性,是全局的.和DIV层次无关. <!DOCTYPE html> <html lang="en"> <head> &l ...