ipamutils

package
v0.0.0-...-8d193d8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 28, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Overview

Package ipamutils provides utility functions for ipam management

Index

Constants

This section is empty.

Variables

View Source
var (
	// PredefinedLocalScopeDefaultNetworks contains a list of 31 IPv4 private networks with host size 16 and 12
	// (172.17-31.x.x/16, 192.168.x.x/20) which do not overlap with the networks in `PredefinedGlobalScopeDefaultNetworks`
	PredefinedLocalScopeDefaultNetworks []*net.IPNet
	// PredefinedGlobalScopeDefaultNetworks contains a list of 64K IPv4 private networks with host size 8
	// (10.x.x.x/24) which do not overlap with the networks in `PredefinedLocalScopeDefaultNetworks`
	PredefinedGlobalScopeDefaultNetworks []*net.IPNet
)

Functions

func ConfigGlobalScopeDefaultNetworks

func ConfigGlobalScopeDefaultNetworks(defaultAddressPool []*NetworkToSplit) error

ConfigGlobalScopeDefaultNetworks configures global default pool. Ideally this will be called from SwarmKit as part of swarm init

func ConfigLocalScopeDefaultNetworks

func ConfigLocalScopeDefaultNetworks(defaultAddressPool []*NetworkToSplit) error

ConfigLocalScopeDefaultNetworks configures local default pool. Ideally this will be called during libnetwork init

func GetGlobalScopeDefaultNetworks

func GetGlobalScopeDefaultNetworks() []*net.IPNet

GetGlobalScopeDefaultNetworks returns PredefinedGlobalScopeDefaultNetworks

func GetLocalScopeDefaultNetworks

func GetLocalScopeDefaultNetworks() []*net.IPNet

GetLocalScopeDefaultNetworks returns PredefinedLocalScopeDefaultNetworks

Types

type NetworkToSplit

type NetworkToSplit struct {
	Base string `json:"base"`
	Size int    `json:"size"`
}

NetworkToSplit represent a network that has to be split in chunks with mask length Size. Each subnet in the set is derived from the Base pool. Base is to be passed in CIDR format. Example: a Base "10.10.0.0/16 with Size 24 will define the set of 256 10.10.[0-255].0/24 address pools

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL