mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-10 15:14:22 +08:00
83 lines
3.4 KiB
Go
83 lines
3.4 KiB
Go
package network
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/gravitl/netmaker/cli/functions"
|
|
"github.com/gravitl/netmaker/models"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var networkCreateCmd = &cobra.Command{
|
|
Use: "create",
|
|
Short: "Create a Network",
|
|
Long: `Create a Network`,
|
|
Args: cobra.NoArgs,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
network := &models.Network{}
|
|
if networkDefinitionFilePath != "" {
|
|
content, err := os.ReadFile(networkDefinitionFilePath)
|
|
if err != nil {
|
|
log.Fatal("Error when opening file: ", err)
|
|
}
|
|
if err := json.Unmarshal(content, network); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
} else {
|
|
network.NetID = netID
|
|
network.AddressRange = address
|
|
if address6 != "" {
|
|
network.AddressRange6 = address6
|
|
network.IsIPv6 = "yes"
|
|
}
|
|
if udpHolePunch {
|
|
network.DefaultUDPHolePunch = "yes"
|
|
}
|
|
if localNetwork {
|
|
network.IsLocal = "yes"
|
|
}
|
|
if defaultACL {
|
|
network.DefaultACL = "yes"
|
|
}
|
|
if pointToSite {
|
|
network.IsPointToSite = "yes"
|
|
}
|
|
network.DefaultInterface = defaultInterface
|
|
network.DefaultListenPort = int32(defaultListenPort)
|
|
network.NodeLimit = int32(nodeLimit)
|
|
network.DefaultPostUp = defaultPostUp
|
|
network.DefaultPostDown = defaultPostDown
|
|
network.DefaultKeepalive = int32(defaultKeepalive)
|
|
if allowManualSignUp {
|
|
network.AllowManualSignUp = "yes"
|
|
}
|
|
network.DefaultExtClientDNS = defaultExtClientDNS
|
|
network.DefaultMTU = int32(defaultMTU)
|
|
}
|
|
functions.PrettyPrint(functions.CreateNetwork(network))
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
networkCreateCmd.Flags().StringVar(&networkDefinitionFilePath, "file", "", "Path to network_definition.json")
|
|
networkCreateCmd.Flags().StringVar(&netID, "name", "", "Name of the network")
|
|
networkCreateCmd.MarkFlagsMutuallyExclusive("file", "name")
|
|
networkCreateCmd.Flags().StringVar(&address, "ipv4_addr", "", "IPv4 address of the network")
|
|
networkCreateCmd.Flags().StringVar(&address6, "ipv6_addr", "", "IPv6 address of the network")
|
|
networkCreateCmd.Flags().BoolVar(&udpHolePunch, "udp_hole_punch", false, "Enable UDP Hole Punching ?")
|
|
networkCreateCmd.Flags().BoolVar(&localNetwork, "local", false, "Is the network local (LAN) ?")
|
|
networkCreateCmd.Flags().BoolVar(&defaultACL, "default_acl", false, "Enable default Access Control List ?")
|
|
networkCreateCmd.Flags().BoolVar(&pointToSite, "point_to_site", false, "Enforce all clients to have only 1 central peer ?")
|
|
networkCreateCmd.Flags().StringVar(&defaultInterface, "interface", "", "Name of the network interface")
|
|
networkCreateCmd.Flags().StringVar(&defaultPostUp, "post_up", "", "Commands to run after server is up `;` separated")
|
|
networkCreateCmd.Flags().StringVar(&defaultPostDown, "post_down", "", "Commands to run after server is down `;` separated")
|
|
networkCreateCmd.Flags().StringVar(&defaultExtClientDNS, "ext_client_dns", "", "IPv4 address of DNS server to be used by external clients")
|
|
networkCreateCmd.Flags().IntVar(&defaultListenPort, "listen_port", 51821, "Default wireguard port each node will attempt to use")
|
|
networkCreateCmd.Flags().IntVar(&nodeLimit, "node_limit", 999999999, "Maximum number of nodes that can be associated with this network")
|
|
networkCreateCmd.Flags().IntVar(&defaultKeepalive, "keep_alive", 20, "Keep Alive in seconds")
|
|
networkCreateCmd.Flags().IntVar(&defaultMTU, "mtu", 1280, "MTU size")
|
|
networkCreateCmd.Flags().BoolVar(&allowManualSignUp, "manual_signup", false, "Allow manual signup ?")
|
|
rootCmd.AddCommand(networkCreateCmd)
|
|
}
|