I am trying to get the IPv6 loopback completely disabled/disconnected. Searching the posts here I see everything that I have done so far.

1)Un-check the IPv6 on the adapter which will disable IPv6 for that LAN interface.

2)Add the DisabledComponents DWORD 000000ff

The Pre/Post reboot >netsh interface ipv6 show interface

PRE:

Idx     Met         MTU          State                Name
---  ----------  ----------  ------------  ---------------------------
  1          50  4294967295  connected     Loopback Pseudo-Interface 1
 12          50        1280  disconnected  isatap.{08551F83-B9DE-4FF1-8A21-5B988
00BEC66}
 13          10        1280  connected     6TO4 Adapter
 14          50        1280  connected     Teredo Tunneling Pseudo-Interface

POST:

Idx     Met         MTU          State                Name
---  ----------  ----------  ------------  ---------------------------
  1          50  4294967295  connected     Loopback Pseudo-Interface 1

3)Edited the hosts file to look like:

# localhost name resolution is handled within DNS itself.
    127.0.0.1       localhost
#   ::1             localhost

So is there anything else I can do to disable/disconnect the IPv6 loopback? Netsh still shows the loopback interface connected.

link|improve this question

2  
Out of curiousity, why? Are you just trying to disable IPv6 for the machine? Removing the capability from the NICs in question should mean that they don't talk IPv6 anywhere. – growse Jul 14 '11 at 15:23
feedback

1 Answer

up vote 1 down vote accepted

just unchecking the box doesn't completely disable ipv6.

c:>reg add hklm\system\currentcontrolset\services\tcpip6\parameters /v DisabledComponents /t REG_DWORD /d 255

and unless you need ipv6, you should do this because it causes problems and muddies up your dns with all the entries

link|improve this answer
Item #2 that I listed does this. 255 = Dword of 000000ff – Chadddada Jul 15 '11 at 0:15
Accepting this. 1/2 of the story. – Chadddada Feb 16 at 14:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.