diff --git a/logic/gateway.go b/logic/gateway.go index 05968247..34264b70 100644 --- a/logic/gateway.go +++ b/logic/gateway.go @@ -176,10 +176,6 @@ func DeleteEgressGateway(network, nodeid string) (models.Node, error) { return node, nil } -func getCidrforExtClients() string { - return "10.10.10.0/24" -} - // CreateIngressGateway - creates an ingress gateway func CreateIngressGateway(netid string, nodeid string, failover bool) (models.Node, error) { @@ -201,7 +197,6 @@ func CreateIngressGateway(netid string, nodeid string, failover bool) (models.No return models.Node{}, err } node.IsIngressGateway = "yes" - node.ExtClientsCidr = getCidrforExtClients() cidrs := []string{} cidrs = append(cidrs, network.AddressRange) cidrs = append(cidrs, network.AddressRange6) diff --git a/models/node.go b/models/node.go index f1ae5112..64a1f305 100644 --- a/models/node.go +++ b/models/node.go @@ -95,7 +95,6 @@ type Node struct { FailoverNode string `json:"failovernode" bson:"failovernode" yaml:"failovernode"` IngressGatewayRange string `json:"ingressgatewayrange" bson:"ingressgatewayrange" yaml:"ingressgatewayrange"` IngressGatewayRange6 string `json:"ingressgatewayrange6" bson:"ingressgatewayrange6" yaml:"ingressgatewayrange6"` - ExtClientsCidr string `json:"extclients_cidr" bson:"extclients_cidr" yaml:"extclients_cidr"` // IsStatic - refers to if the Endpoint is set manually or dynamically IsStatic string `json:"isstatic" bson:"isstatic" yaml:"isstatic" validate:"checkyesorno"` UDPHolePunch string `json:"udpholepunch" bson:"udpholepunch" yaml:"udpholepunch" validate:"checkyesorno"`