How to remove unwanted tunnel adapter connections?

I did "ipconfig" today and found about 10 network interfaces, most of them disconnected.

How can I diagnose this? Where can I remove them?

Edit:

The extra network appear like this:

Tunnel adapter Local Area Connection* 16

Tunnel adapter Local Area Connection* 17

Tunnel adapter Local Area Connection* 18

...


Solution 1:

How to remove the unwanted Tunnel Adapters via Device Manager:

(This solution has been tested and confirmed to work)

  • Open Start Menu
  • Type In: Device Manager
  • Select Device Manager
  • Click the View menu from the top
  • Select Show Hidden Devices (Must be check before continuing)
  • Scroll down and expand Network Adapters
  • Right-Click a duplicated Microsoft 6to4 Adapter or Microsoft ISATAP Adapter
  • Select Uninstall
  • Click OK for the pop-up warning message
  • Repeat and repeat for each of the unwanted duplicated adapter
  • Close Device Manager when finish

Credit: Microsoft Answer's Moderator Nicholas Li per this post.

Warning: It's always a good idea to create system restore point before making any systems changes.


So what is tunnel adapter?

Tunneling is how to do secure communications across an untrusted network such as the internet. If you look at "description" of each connection, via ipconfig /all, it will probably the contain either ISATAP or 6over4. Find information about Tunnel Adapters at Wikipedia.

Solution 2:

These adapters are part of the Microsoft implementation of the iPv6 TCP/IP address protocol. You will find you have quite a lot of them, at least one per each defined network adapter. You also probably have VMware player installed, which adds several network adapters potentially used by virtual machines.

These dummy adapters are called "Automatic Tunneling Pseudo-Interface" for encapsulating IPv6 packets with an IPv4 header so that they can be sent across an IPv4 network. This probably means that your local network is at the moment both iPv4 and iPv6, and these adapters are created "just in case".

If you are working on a local network, you have no need of iPv6, since 4-byte TCP/IP addresses are quite sufficient for the number of computers. To get rid of these dummy adapters do:

  1. Open up Control Panel -> Network and Sharing Center.
  2. For each network connection :
    • Click "View status", then Properties.
    • Uncheck the mark next to "Internet protocol version 6 (TCP/IPv6)".
    • Click OK, then Close.
  3. When all adapters are done, reboot.

This will leave only iPv4 interfaces defined on your computer, and will only work if you do not have any pure-iPv6 device on the local network. If you do have such a device, you will need to allow iPv6 at least on the one network adapter on which it communicates.

Solution 3:

From the command line:

netsh interface ipv6 6to4 set state state=disabled undoonstop=disabled
netsh interface ipv6 isatap set state state=disabled
netsh interface teredo set state disabled

If you're running Windows 2012/8 or later, you can do it with powershell:

Set-Net6to4configuration -state disabled
Set-Netisatapconfiguration -state disabled
Set-NetTeredoConfiguration -type disabled

Caveat - if for some reason you want the tunnel adapters on some, but not all, of your interfaces, this isn't the right solution. Probably that's not what you want though.

Credit & more information about what these adapters are: http://www.minasi.com/newsletters/nws1303.htm