mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-29 23:46:23 +08:00
fixing ipv6 gateway address, adding to installer docs
This commit is contained in:
parent
edce72cf1e
commit
2b1181c9be
3 changed files with 3 additions and 3 deletions
|
|
@ -505,7 +505,7 @@ func GetPeerUpdateForRelayedNode(node *models.Node, udppeers map[string]string)
|
||||||
func getEgressIPs(node, peer *models.Node) []net.IPNet {
|
func getEgressIPs(node, peer *models.Node) []net.IPNet {
|
||||||
//check for internet gateway
|
//check for internet gateway
|
||||||
internetGateway := false
|
internetGateway := false
|
||||||
if slices.Contains(peer.EgressGatewayRanges, "0.0.0.0/0") || slices.Contains(peer.EgressGatewayRanges, "::0") {
|
if slices.Contains(peer.EgressGatewayRanges, "0.0.0.0/0") || slices.Contains(peer.EgressGatewayRanges, "::/0") {
|
||||||
internetGateway = true
|
internetGateway = true
|
||||||
}
|
}
|
||||||
allowedips := []net.IPNet{}
|
allowedips := []net.IPNet{}
|
||||||
|
|
|
||||||
|
|
@ -247,7 +247,7 @@ SERVER_ID=$(jq -r '.[0].id' <<< ${curlresponse})
|
||||||
|
|
||||||
EGRESS_JSON=$( jq -n \
|
EGRESS_JSON=$( jq -n \
|
||||||
--arg gw "$GATEWAY_IFACE" \
|
--arg gw "$GATEWAY_IFACE" \
|
||||||
'{ranges: ["0.0.0.0/5","8.0.0.0/7","11.0.0.0/8","12.0.0.0/6","16.0.0.0/4","32.0.0.0/3","64.0.0.0/2","128.0.0.0/3","160.0.0.0/5","168.0.0.0/6","172.0.0.0/12","172.32.0.0/11","172.64.0.0/10","172.128.0.0/9","173.0.0.0/8","174.0.0.0/7","176.0.0.0/4","192.0.0.0/9","192.128.0.0/11","192.160.0.0/13","192.169.0.0/16","192.170.0.0/15","192.172.0.0/14","192.176.0.0/12","192.192.0.0/10","193.0.0.0/8","194.0.0.0/7","196.0.0.0/6","200.0.0.0/5","208.0.0.0/4"], interface: $gw}' )
|
'{ranges: ["0.0.0.0/0",::/0], interface: $gw}' )
|
||||||
|
|
||||||
echo "Egress json: $EGRESS_JSON"
|
echo "Egress json: $EGRESS_JSON"
|
||||||
curl -s -o /dev/null -X POST -d "$EGRESS_JSON" -H "Authorization: Bearer $MASTER_KEY" -H 'Content-Type: application/json' https://api.${NETMAKER_BASE_DOMAIN}/api/nodes/vpn/$SERVER_ID/creategateway
|
curl -s -o /dev/null -X POST -d "$EGRESS_JSON" -H "Authorization: Bearer $MASTER_KEY" -H 'Content-Type: application/json' https://api.${NETMAKER_BASE_DOMAIN}/api/nodes/vpn/$SERVER_ID/creategateway
|
||||||
|
|
|
||||||
|
|
@ -257,7 +257,7 @@ SERVER_ID=$(jq -r '.[0].id' <<< ${curlresponse})
|
||||||
|
|
||||||
EGRESS_JSON=$( jq -n \
|
EGRESS_JSON=$( jq -n \
|
||||||
--arg gw "$GATEWAY_IFACE" \
|
--arg gw "$GATEWAY_IFACE" \
|
||||||
'{ranges: ["0.0.0.0/5","8.0.0.0/7","11.0.0.0/8","12.0.0.0/6","16.0.0.0/4","32.0.0.0/3","64.0.0.0/2","128.0.0.0/3","160.0.0.0/5","168.0.0.0/6","172.0.0.0/12","172.32.0.0/11","172.64.0.0/10","172.128.0.0/9","173.0.0.0/8","174.0.0.0/7","176.0.0.0/4","192.0.0.0/9","192.128.0.0/11","192.160.0.0/13","192.169.0.0/16","192.170.0.0/15","192.172.0.0/14","192.176.0.0/12","192.192.0.0/10","193.0.0.0/8","194.0.0.0/7","196.0.0.0/6","200.0.0.0/5","208.0.0.0/4"], interface: $gw}' )
|
'{ranges: ["0.0.0.0/0","::/0"], interface: $gw}' )
|
||||||
|
|
||||||
echo "egress json: $EGRESS_JSON"
|
echo "egress json: $EGRESS_JSON"
|
||||||
curl -s -o /dev/null -X POST -d "$EGRESS_JSON" -H "Authorization: Bearer $MASTER_KEY" -H 'Content-Type: application/json' https://api.${NETMAKER_BASE_DOMAIN}/api/nodes/vpn/$SERVER_ID/creategateway
|
curl -s -o /dev/null -X POST -d "$EGRESS_JSON" -H "Authorization: Bearer $MASTER_KEY" -H 'Content-Type: application/json' https://api.${NETMAKER_BASE_DOMAIN}/api/nodes/vpn/$SERVER_ID/creategateway
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue