Micah Morrison
Micah Morrison
I'm not sure you'll find what you want. Windows NAT routing is pretty simple. It creates a local network adapter with its own IP range. However, once packets come in,...
Hi @Mduque10, thanks for the kind words, I'm glad you have found success with this tool! > can I have the clients resolve the server's hosts file first and then...
Hi @gbtech-org, Just to make sure I understand the problem, are you using NAT Routing? And are you saying that the IP address assigned to the `wg_server` interface is not...
Can you run these commands in PowerShell to see if it helps? ``` powershell Remove-NetIPAddress -Confirm:$false -InterfaceIndex (Get-NetIPInterface -InterfaceAlias wg_server)[0].ifIndex New-NetIPAddress -IPAddress 10.253.0.1 -PrefixLength 24 -InterfaceIndex (Get-NetIPInterface -InterfaceAlias wg_server)[0].ifIndex ```...
You're welcome. Those should be the exact commands that WS4W runs. You can see the code. https://github.com/micahmo/WgServerforWindows/blob/913f6a298f5d285a5bc62ec728a18116c987c648/WgServerforWindows/Models/NewNetNatPrerequisite.cs#L88 https://github.com/micahmo/WgServerforWindows/blob/913f6a298f5d285a5bc62ec728a18116c987c648/WgServerforWindows/Models/NewNetNatPrerequisite.cs#L94
Hi @haririan, Unfortunately, I'm not aware of any such functionality in WireGuard. While its authentication mechanism is very secure (with public, private, and preshared keys), it is not very sophisticated...
Hey @vmatt, I'm really sorry this happened, and I'm glad you were able to recover the files with Recuva. As you found, there is an option to change the config...
Hey @comsyspro I'll admit I don't know a ton about Windows Firewall. or how custom network adapters interact (although I would think it's just the WireGuard server application listening on...
I agree, it absolutely feels like a security hole. It shouldn't matter if a application to can bind to a port directly if it's blocked by the firewall. Is there...
Hi @brandonros, good question! The difference is related to how WireGuard stores data vs. how WS4W stores data. In WireGuard, each peer's config file contains info about itself as well...