If you're having trouble with your internet connection after reinstalling Windows 8, particularly with IPv6, there are a few steps you can take to troubleshoot the issue:
- Check Driver Installation: Ensure that all necessary drivers, especially network drivers, are installed. You can do this by checking Device Manager. If any drivers are missing or have a warning icon, you may need to download and install them from the manufacturer's website.
- Restart IPv6 Protocol: You can use the
net.execommand to restart the IPv6 protocol. Open a command prompt with administrative privileges and run the following commands:- To stop the IPv6 protocol:
net stop tcpip6 - To start the IPv6 protocol again:
net start tcpip6
- To stop the IPv6 protocol:
- Registry Settings: If IPv6 is still not functioning, you may need to check the registry settings. You can modify the
DisabledComponentsentry in the registry to ensure that IPv6 is enabled. Here’s how:- Open the Registry Editor by typing
regeditin the Start menu. - Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\. - Look for the
DisabledComponentsentry. If it exists and is set to disable IPv6, you can change its value or delete it to enable IPv6.
- Open the Registry Editor by typing
- Firewall Settings: Ensure that your firewall settings are not blocking IPv6 traffic. You may need to disable the "Core Networking - Router Advertisement (ICMPv6-In)" inbound firewall rule if it's enabled.
- You can run the following command in an elevated command prompt:
netsh advfirewall firewall set rule name="Core Networking - Router Advertisement (ICMPv6-In)" dir=in new enable=No
- You can run the following command in an elevated command prompt:
After making these changes, restart your computer and check if your internet connection is restored.