60 lines
1.1 KiB
Go
60 lines
1.1 KiB
Go
package dsnet
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/vishvananda/netlink"
|
|
)
|
|
|
|
func Up() {
|
|
conf := MustLoadDsnetConfig()
|
|
CreateLink(conf)
|
|
ConfigureDevice(conf)
|
|
}
|
|
|
|
func CreateLink(conf *DsnetConfig) {
|
|
linkAttrs := netlink.NewLinkAttrs()
|
|
linkAttrs.Name = conf.InterfaceName
|
|
|
|
link := &netlink.GenericLink{
|
|
LinkAttrs: linkAttrs,
|
|
LinkType: "wireguard",
|
|
}
|
|
|
|
err := netlink.LinkAdd(link)
|
|
if err != nil {
|
|
ExitFail("Could not add interface '%s' (%v)", conf.InterfaceName, err)
|
|
}
|
|
|
|
addr := &netlink.Addr{
|
|
IPNet: &net.IPNet{
|
|
IP: conf.IP,
|
|
Mask: conf.Network.IPNet.Mask,
|
|
},
|
|
}
|
|
|
|
err = netlink.AddrAdd(link, addr)
|
|
if err != nil {
|
|
ExitFail("Could not add addr %s to interface %s", addr.IP, err)
|
|
}
|
|
|
|
addr6 := &netlink.Addr{
|
|
IPNet: &net.IPNet{
|
|
IP: conf.IP6,
|
|
Mask: conf.Network6.IPNet.Mask,
|
|
},
|
|
}
|
|
|
|
err = netlink.AddrAdd(link, addr6)
|
|
if err != nil {
|
|
ExitFail("Could not add addr %s to interface %s", addr.IP, err)
|
|
}
|
|
|
|
// bring up interface (UNKNOWN state instead of UP, a wireguard quirk)
|
|
err = netlink.LinkSetUp(link)
|
|
|
|
if err != nil {
|
|
ExitFail("Could not bring up device '%s' (%v)", conf.InterfaceName, err)
|
|
}
|
|
}
|