Por que eu tenho 55 conexões de área local no ipconfig?

5

Windows Vista Home Premium. Devo mencionar que não estou tendo nenhum problema, seja qual for a conexão com a Internet.

Quando eu digito "ipconfig" no console, recebo (55!) mensagens de 3 linhas cada, listando uma tonelada de conexões de rede desconectadas. Meu PC tem apenas uma placa de rede. Cada mensagem se parece com isso:

Tunnel adapter Local Area Connection* 55:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :

Isso não causa um grande problema; eles fazem uma dor, porém, para subir e encontrar o meu endereço IP. Como posso me livrar deles?

Editar:

Na verdade, alguns números de conexão estão faltando aleatoriamente na sequência; então, é mais como 30 ou 40 mensagens de conexão, ao invés de todas as 55. Não tenho certeza do porquê.

    
por RMorrisey 22.05.2011 / 07:18

3 respostas

2

Eu olhei para a sua pergunta e de repente notei algo incomum  esse foi o * com o nome. Pesquisei um pouco e encontrei esta resposta  no fórum da MSFT.

Windows makes several "simulated" network adapters for various purposes. For example, if you're on an IPv4-only network, but you want to connect to an IPv6 computer on the internet, Windows can create a simulated network adapter that tunnels the IPv6 traffic through your IPv4 network.

There are actually quite a few of these simulated network adapters. Since they usually quietly take care of themselves, and they don't correspond to any actual network hardware that you (the end-user) can see or touch, Windows will hide them by default, to avoid clutter.

Now suppose Windows just started numbering all the adapters with the same naming scheme ("Ethernet 1", "Ethernet 2", "Ethernet 3", . . ., etc.). Then by the time you actually install your actual NIC, it would probably get a name like "Ethernet 7". But since Windows hides the first 6 network interfaces, you'd see a listing that only includes one NIC: "Ethernet 7". And you'd probably say "stupid Windows doesn't know how to count."

So instead, we have two numbering schemes. Real, physical NICs get numbered "Ethernet ###" (or "Wi-Fi ###", etc.) while all the hidden network adapters get "Local Area Connection* ###". That way, the NICs that you see will be numbered starting from 1, even though there are a big pile of hidden network interfaces that were installed first.

What does the asterisk mean? The asterisk used to be the signal that the NIC was a hidden NIC. Older versions of Windows named all visible NICs "Local Area Connection ###", and hidden ones were distinguished by adding an extra asterisk. These days, we try to avoid using nerdy jargon like "Local Area Connection" when talking to you, so we changed the naming pattern to "Ethernet". But since hidden NICs don't matter, we kept their old naming pattern with the asterisk.

If you're curious, you can see all the network interfaces on your system with this PowerShell command:

Get-NetAdapter -IncludeHidden

( source )

Isso não explica apenas o * , mas também explica suas 55 conexões. As conexões * são simuladas.

    
por 29.03.2014 / 08:45
0

Estes são provavelmente adaptadores de túnel IPv6. Embora eu mesmo não tenha visto, ouvi falar de outras pessoas que parecem ter uma nova para cada nova rede à qual se conectam. Se você não precisar do IPv6, poderá desativá-lo e remover os adaptadores de túnel redundantes. Há um post aqui sobre isso:

link

    
por 22.05.2011 / 09:06
0

Em um prompt de comando, digite o seguinte comando e pressione ENTER:

set devmgr_show_nonpresent_devices=1

Em seguida, vá para o Painel de controle > Sistema > Gerenciador de dispositivos > Ver > Mostrar dispositivos ocultos > Adaptador de rede >

Remova todos os dispositivos ISATAP e adaptadores Microsoft 6TO4.

Desligue o IPV6 no seu adaptador:

    
por 19.11.2013 / 07:56