You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reopening #154 as it was auto closed after restructuring my fork.
This PR adds support for a proxying a UDP server through WireGuard. It can listen on IPv4 while tunneling to an IPv6 address or vice versa.
When sending, it goes through BindAddress -> Wireguard -> Target and the opposite when receiving.
For example, if you wanted to proxy Cloudflare's DNS server, an example config would be:
[Interface]
...
[Peer]
...
[UDPProxyTunnel]BindAddress = 127.0.0.1:53
#Target = [2606:4700:4700::1111]:53Target = 1.1.1.1:53
# If its set to 0, it will never timeoutInactivityTimeout = 30
Reopening #154 as it was auto closed after restructuring my fork.
This PR adds support for a proxying a UDP server through WireGuard. It can listen on IPv4 while tunneling to an IPv6 address or vice versa.
When sending, it goes through BindAddress -> Wireguard -> Target and the opposite when receiving.
For example, if you wanted to proxy Cloudflare's DNS server, an example config would be:
[Interface]
...
[Peer]
...
[UDPProxyTunnel]BindAddress = 127.0.0.1:53
#Target = [2606:4700:4700::1111]:53Target = 1.1.1.1:53
# If its set to 0, it will never timeoutInactivityTimeout = 30
@VastBlast Thanks!
Does your solution allow UDP traffic through Wireproxy's SOCKS or HTTP proxies? If so, how should it be configured in the .conf file? If not, could this capability be implemented?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reopening #154 as it was auto closed after restructuring my fork.
This PR adds support for a proxying a UDP server through WireGuard. It can listen on IPv4 while tunneling to an IPv6 address or vice versa.
When sending, it goes through BindAddress -> Wireguard -> Target and the opposite when receiving.
For example, if you wanted to proxy Cloudflare's DNS server, an example config would be: