65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
package dsnet
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/vishvananda/netlink"
|
|
"golang.zx2c4.com/wireguard/wgctrl"
|
|
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
)
|
|
|
|
func Up() {
|
|
conf := MustLoadDsnetConfig()
|
|
CreateInterface(conf)
|
|
}
|
|
|
|
func CreateInterface(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)", linkAttrs.Name, 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)
|
|
}
|
|
|
|
wgConfig := wgtypes.Config{
|
|
PrivateKey: &conf.PrivateKey.Key,
|
|
ListenPort: &conf.ListenPort,
|
|
ReplacePeers: true,
|
|
Peers: conf.GetWgPeerConfigs(),
|
|
}
|
|
|
|
wg, err := wgctrl.New()
|
|
check(err)
|
|
|
|
err = wg.ConfigureDevice(linkAttrs.Name, wgConfig)
|
|
|
|
if err != nil {
|
|
ExitFail("Could not configure device '%s' (%v)", linkAttrs.Name, err)
|
|
}
|
|
|
|
// bring up interface (needs conf first)
|
|
//err = netlink.LinkSetUp(link)
|
|
//
|
|
//if err != nil {
|
|
// ExitFail("Could not bring up device '%s' (%v)", linkAttrs.Name, err)
|
|
//}
|
|
}
|