Added network namespacing support#10
Draft
Manouchehri wants to merge 1 commit intoWireGuard:masterfrom
Draft
Conversation
Author
|
@endreszabo Is this the latest version of the patch you have? |
|
Hi,
Yes, this is. I'd be happy to finish it sometimes, which is not likely to happen in the forecoming months.
I did not have much time to proceed on with this, especially because I found to use a workaround that works for me perfectly:
```
# cat hubud0_v4.conf
#
# Ansible managed -- source at: ***@***.***:wg_s2s_ipv4.conf' last modified on 2021-09-09 14:56:58
#
[Interface]
PrivateKey = [REDACTED]
#PublicKey = [REDACTED]
ListenPort = 27184
Table = off
PostUp = ip link set hubud0_v4 netns s2s
PostUp = ip netns exec s2s ip -4 addr add 44.128.251.181/30 dev hubud0_v4
PostUp = ip netns exec s2s ip -6 addr add fd4d:4045:e5e8:fbed::1/64 dev hubud0_v4
PostUp = ip netns exec s2s ip link set hubud0_v4 up
[Peer] # vsh01.hubud0.y7.local
PublicKey = [REDACTED]
Endpoint = [REDACTED]
AllowedIPs = 0.0.0.0/0,::/0
```
…On Sat, Sep 18, 2021 at 23:45:07-0700, David Manouchehri wrote:
@endreszabo Is this the latest version of the patch you have?
--
You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub:
#10 (comment)
|
4574b8e to
0b7d982
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Originally from https://lists.zx2c4.com/pipermail/wireguard/2020-March/005140.html.