dsnet/up.go

48 lines
906 B
Go
Raw Normal View History

2020-03-04 20:38:48 +01:00
package dsnet
import (
"net"
"github.com/vishvananda/netlink"
)
func Up() {
conf := MustLoadDsnetConfig()
CreateLink(conf)
ConfigureDevice(conf)
2020-03-04 20:38:48 +01:00
}
func CreateLink(conf *DsnetConfig) {
2020-03-04 20:38:48 +01:00
linkAttrs := netlink.NewLinkAttrs()
linkAttrs.Name = conf.InterfaceName
2020-03-04 20:56:57 +01:00
link := &netlink.GenericLink{
2020-03-04 20:38:48 +01:00
LinkAttrs: linkAttrs,
LinkType: "wireguard",
}
2020-03-04 20:56:57 +01:00
err := netlink.LinkAdd(link)
2020-03-04 20:38:48 +01:00
if err != nil {
2020-03-04 22:09:12 +01:00
ExitFail("Could not add interface '%s' (%v)", conf.InterfaceName, err)
2020-03-04 20:38:48 +01:00
}
addr := &netlink.Addr{
IPNet: &net.IPNet{
IP: conf.IP,
Mask: conf.Network.IPNet.Mask,
},
}
2020-03-04 20:56:57 +01:00
err = netlink.AddrAdd(link, addr)
2020-03-04 20:38:48 +01:00
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)
2020-03-04 23:04:13 +01:00
if err != nil {
ExitFail("Could not bring up device '%s' (%v)", conf.InterfaceName, err)
}
}