-
Notifications
You must be signed in to change notification settings - Fork 799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dummy: Create a Dummy CNI plugin that creates a virtual interface. #743
Conversation
8a07ded
to
441c4ad
Compare
441c4ad
to
20bfbef
Compare
20bfbef
to
9d1d168
Compare
Hi, any updates on this PR? |
This PR has been untouched for too long without an update. It will be closed in 7 days. |
Still waiting on replies for remaining threads of this PR. |
Leverages the Linux dummy interface type to create network interfaces that permists routing packets through the Linux kernel without them being transmitted. This solution allows use of arbitrary non-loopback IP addresses within the container. Related to containernetworking#466 Signed-off-by: Mircea Iordache-Sica <mircea@arista.com>
9d1d168
to
7fcf8e4
Compare
LGTM |
@@ -0,0 +1,39 @@ | |||
--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, this can go in, but will need to be a separate pr on https://github.com/containernetworking/cni.dev
Leverages the Linux dummy interface type to create network interfaces
that permit routing packets through the Linux kernel without
them being transmitted.
This solution allows use of arbitrary non-loopback IP addresses within
the container, and leverages existing CNI IPAM plugins.
Related to #466