mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-12 12:39:47 +08:00
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package ncutils
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os/exec"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
)
|
|
|
|
// RunCmd - runs a local command
|
|
func RunCmd(command string, printerr bool) (string, error) {
|
|
args := strings.Fields(command)
|
|
cmd := exec.Command(args[0], args[1:]...)
|
|
cmd.Wait()
|
|
out, err := cmd.CombinedOutput()
|
|
if err != nil && printerr {
|
|
log.Println("error running command:", command)
|
|
log.Println(strings.TrimSuffix(string(out), "\n"))
|
|
}
|
|
return string(out), err
|
|
}
|
|
|
|
func RunCmdFormatted(command string, printerr bool) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
// CreateUserSpaceConf - creates a user space WireGuard conf
|
|
func CreateUserSpaceConf(address string, privatekey string, listenPort string, mtu int32, perskeepalive int32, peers []wgtypes.PeerConfig) (string, error) {
|
|
peersString, err := parsePeers(perskeepalive, peers)
|
|
var listenPortString string
|
|
if mtu <= 0 {
|
|
mtu = 1280
|
|
}
|
|
if listenPort != "" {
|
|
listenPortString += "ListenPort = " + listenPort
|
|
}
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
config := fmt.Sprintf(`[Interface]
|
|
Address = %s
|
|
PrivateKey = %s
|
|
MTU = %s
|
|
%s
|
|
|
|
%s
|
|
|
|
`,
|
|
address+"/32",
|
|
privatekey,
|
|
strconv.Itoa(int(mtu)),
|
|
listenPortString,
|
|
peersString)
|
|
return config, nil
|
|
}
|