Support IPv6 GRE Tun and Tap#317
Merged
aboch merged 1 commit intovishvananda:masterfrom Jan 19, 2018
aboch:grev6
Merged
Conversation
Collaborator
Author
|
ping @KireinaHoro Please give it a try too. |
Signed-off-by: Alessandro Boch <[email protected]>
|
The link-add part works now. I'm trying to find a way to add an address to the link and bring it up though... |
|
Seems like it's working fine. I've tested with the following: package main
import (
"github.com/aboch/netlink"
"log"
"net"
"fmt"
)
func main() {
la := netlink.NewLinkAttrs()
la.Name = "foobar"
l, err := netlink.LinkByName(la.Name)
if err == nil {
log.Fatalf("Link with name \"%s\" already exists", la.Name)
}
myGretun := &netlink.Gretun{LinkAttrs: la}
myGretun.Remote = net.ParseIP("2001:da8::1")
myGretun.Local = net.ParseIP("2001:da8::2")
err = netlink.LinkAdd(myGretun)
if err != nil {
log.Fatalf("Could not add %s: %v", la.Name, err)
}
l = myGretun
addr, err := netlink.ParseAddr("172.16.0.1/32")
if err != nil {
netlink.LinkDel(myGretun)
log.Fatalf("Failed to parse address: %v", err)
}
netlink.AddrAdd(l, addr)
netlink.LinkSetUp(l)
fmt.Printf("Information about the created link: %v", l)
} |
Collaborator
Author
|
Thanks @KireinaHoro |
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.
Fixes #316
Also the changes allow to re-enable
TestLinkAddDelGretapFlowBased