How can I use WireGuard as a proxy?force router to use proxy server / VPNHow to know if an application is...
Exit shell with shortcut (not typing exit) that closes session properly
Does convergence of polynomials imply that of its coefficients?
Why is "la Gestapo" feminine?
Gauss brackets with double vertical lines
is this saw blade faulty?
Homology of the fiber
When did hardware antialiasing start being available?
When should a starting writer get his own webpage?
What is it called when someone votes for an option that's not their first choice?
How old is Nick Fury?
What happens when the centripetal force is equal and opposite to the centrifugal force?
Why I don't get the wanted width of tcbox?
Output visual diagram of picture
Hackerrank All Women's Codesprint 2019: Name the Product
How to test the sharpness of a knife?
Help with identifying unique aircraft over NE Pennsylvania
How do researchers send unsolicited emails asking for feedback on their works?
Emojional cryptic crossword
How to read string as hex number in bash?
Air travel with refrigerated insulin
Determine voltage drop over 10G resistors with cheap multimeter
label a part of commutative diagram
Print last inputted byte
Do I need to convey a moral for each of my blog post?
How can I use WireGuard as a proxy?
force router to use proxy server / VPNHow to know if an application is using system proxy and tor network?Windows 7 VPN connection issue by proxyTunnel Tor traffic through a VPNConnect to a home VPN with a restricted proxy-server in between (macOS)Local proxy solution to circumvent my VPNCreate VPN server to tunnel traffic thru external proxy serverHow can I make the guest OS use the hosts connection setup? (SSH-tunneled VPN + Proxy)Routing a VPN connection to a socks proxy on the same serverWireguard server and openvpn client - Forward traffic from wg0 to tun0 (openvpn tunnel)
I want to make my WireGuard client connect to the peer server behind a SOCKS5 proxy and only apply it to my browser, just like Tor Browser. But since WireGuard is a VPN implementation, it will create a virtual network connection, thus routing the whole system to the VPN.
networking vpn proxy wireguard
add a comment |
I want to make my WireGuard client connect to the peer server behind a SOCKS5 proxy and only apply it to my browser, just like Tor Browser. But since WireGuard is a VPN implementation, it will create a virtual network connection, thus routing the whole system to the VPN.
networking vpn proxy wireguard
Please edit this question to specify what operating system and browser you are considering and what implementation of wireguard you have in mind.
– Caleb
5 mins ago
add a comment |
I want to make my WireGuard client connect to the peer server behind a SOCKS5 proxy and only apply it to my browser, just like Tor Browser. But since WireGuard is a VPN implementation, it will create a virtual network connection, thus routing the whole system to the VPN.
networking vpn proxy wireguard
I want to make my WireGuard client connect to the peer server behind a SOCKS5 proxy and only apply it to my browser, just like Tor Browser. But since WireGuard is a VPN implementation, it will create a virtual network connection, thus routing the whole system to the VPN.
networking vpn proxy wireguard
networking vpn proxy wireguard
asked Sep 8 '18 at 7:29
skygateskygate
266
266
Please edit this question to specify what operating system and browser you are considering and what implementation of wireguard you have in mind.
– Caleb
5 mins ago
add a comment |
Please edit this question to specify what operating system and browser you are considering and what implementation of wireguard you have in mind.
– Caleb
5 mins ago
Please edit this question to specify what operating system and browser you are considering and what implementation of wireguard you have in mind.
– Caleb
5 mins ago
Please edit this question to specify what operating system and browser you are considering and what implementation of wireguard you have in mind.
– Caleb
5 mins ago
add a comment |
1 Answer
1
active
oldest
votes
You will need to place your browser inside something that provides it's own network stack thus controllable via networking rules. Usually this would be done by running your browser inside a virtual machine or container system (e.g. docker).
Android does this automatically by sand boxing every app inside it's own container and giving it a network stack. This allows system level IP routing to manage traffic from each app separately.
Some destkop app packaging systems are starting to do this as well, so you might be able to find a containerized browser that has it's own internal IP routing and could be manipulated to do this.
Otherwise your best bet is to setup a virtual machine (e.g. Virtual Box) and separate your VPN apps from the system networking that way.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1356355%2fhow-can-i-use-wireguard-as-a-proxy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You will need to place your browser inside something that provides it's own network stack thus controllable via networking rules. Usually this would be done by running your browser inside a virtual machine or container system (e.g. docker).
Android does this automatically by sand boxing every app inside it's own container and giving it a network stack. This allows system level IP routing to manage traffic from each app separately.
Some destkop app packaging systems are starting to do this as well, so you might be able to find a containerized browser that has it's own internal IP routing and could be manipulated to do this.
Otherwise your best bet is to setup a virtual machine (e.g. Virtual Box) and separate your VPN apps from the system networking that way.
add a comment |
You will need to place your browser inside something that provides it's own network stack thus controllable via networking rules. Usually this would be done by running your browser inside a virtual machine or container system (e.g. docker).
Android does this automatically by sand boxing every app inside it's own container and giving it a network stack. This allows system level IP routing to manage traffic from each app separately.
Some destkop app packaging systems are starting to do this as well, so you might be able to find a containerized browser that has it's own internal IP routing and could be manipulated to do this.
Otherwise your best bet is to setup a virtual machine (e.g. Virtual Box) and separate your VPN apps from the system networking that way.
add a comment |
You will need to place your browser inside something that provides it's own network stack thus controllable via networking rules. Usually this would be done by running your browser inside a virtual machine or container system (e.g. docker).
Android does this automatically by sand boxing every app inside it's own container and giving it a network stack. This allows system level IP routing to manage traffic from each app separately.
Some destkop app packaging systems are starting to do this as well, so you might be able to find a containerized browser that has it's own internal IP routing and could be manipulated to do this.
Otherwise your best bet is to setup a virtual machine (e.g. Virtual Box) and separate your VPN apps from the system networking that way.
You will need to place your browser inside something that provides it's own network stack thus controllable via networking rules. Usually this would be done by running your browser inside a virtual machine or container system (e.g. docker).
Android does this automatically by sand boxing every app inside it's own container and giving it a network stack. This allows system level IP routing to manage traffic from each app separately.
Some destkop app packaging systems are starting to do this as well, so you might be able to find a containerized browser that has it's own internal IP routing and could be manipulated to do this.
Otherwise your best bet is to setup a virtual machine (e.g. Virtual Box) and separate your VPN apps from the system networking that way.
answered 5 mins ago
CalebCaleb
3,61522132
3,61522132
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1356355%2fhow-can-i-use-wireguard-as-a-proxy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please edit this question to specify what operating system and browser you are considering and what implementation of wireguard you have in mind.
– Caleb
5 mins ago