Wireguard Forwarding/WeakHostSend enabled Error Fix

wireguard
Share:

About

I started using Wireguard as a VPN to connect into my home network some time ago. In fact, I wrote about it in this post about docker containers I run on my home server. It worked fine on my smartphone, but when I later tried it on a laptop, I got the following errors:

Warning: the “Ethernet3” interface has Forwarding/WeakHostSend enabled, which will cause routing loops

Retrying handshake with pear because we stopped hearing back after 15 seconds

Handshake for peer 1 did not complete after 5 seconds, Retrying

Here's How To Fix It

Open PowerShell as an administrator and run this command to get the index of your network interface:
netsh interface ipv4 show interfaces
Note: You can use the following command to get the information about your network interface:
netsh interface ipv4 show interface PutTheIndexOfYourInterfaceHere
Disable forwarding for the network interface you are currently using with this PowerShell command:
Set-NetIPInterface -ifindex PutTheIndexOfYourInterfaceHere -Forwarding Disabled
Now your VPN connection should be working. Hope this helps.
Share:

Leave a Reply

Your email address will not be published. Required fields are marked *

The following GDPR rules must be read and accepted:
This form collects your name, email and content so that we can keep track of the comments placed on the website. For more info check our privacy policy where you will get more info on where, how and why we store your data.