moby--moby/vendor/github.com/docker/libnetwork
Sebastiaan van Stijn 9fb324f00b
vendor: docker/libnetwork d0951081b35fa4216fc4f0064bf065beeb55a74b
full diff: 9e99af28df...d0951081b3

- docker/libnetwork#2560 types: remove some dead code
- docker/libnetwork#2562 client/mflag: remove use of docker/docker/pkg/homedir
- docker/libnetwork#2576 Skip redundant kernel version checks
- docker/libnetwork#2583 vendor: update docker to 7ca355652f and reduce dependency graph

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-09-18 01:08:20 +02:00
..
bitseq
cluster
config Bump libnetwork to latest refpoint 2020-01-16 16:28:23 -08:00
datastore
diagnostic
discoverapi
driverapi bump libnetwork to 96bcc0dae898308ed659c5095526788a602f4726 2019-09-20 19:48:49 +02:00
drivers vendor: docker/libnetwork d0951081b35fa4216fc4f0064bf065beeb55a74b 2020-09-18 01:08:20 +02:00
drvregistry
etchosts
hostdiscovery
idm
internal
ipam
ipamapi
ipams vendor: update libnetwork 1a17fb36132631a95fe6bb055b91e24a516ad81d 2020-04-21 13:00:22 +02:00
ipamutils
iptables vendor: libnetwork 9e99af28df21367340c95a3863e31808d689c92a 2020-07-08 16:12:22 +02:00
netlabel Update DNS library 2020-02-25 17:05:57 -05:00
netutils Vendor Libnetwork 48f8463 2019-04-07 13:06:53 -07:00
networkdb vendor: bump libnetwork bf2bd42abc0a3734f12b5ec724e571434e42c669 2020-03-07 00:35:47 +01:00
ns bump libnetwork to 09cdcc8c0eab3946c2d70e8f6225b05baf1e90d1 2019-07-30 10:37:48 -07:00
options
osl Update DNS library 2020-02-25 17:05:57 -05:00
portallocator Bump libnetwork to latest refpoint 2020-01-16 16:28:23 -08:00
portmapper Update modules to support riscv64 2019-06-29 18:45:42 +00:00
resolvconf build: buildkit now also uses systemd's resolv.conf 2019-06-04 16:04:10 +00:00
types vendor: docker/libnetwork d0951081b35fa4216fc4f0064bf065beeb55a74b 2020-09-18 01:08:20 +02:00
LICENSE
README.md Update modules to support riscv64 2019-06-29 18:45:42 +00:00
agent.go vendor: update libnetwork 1a17fb36132631a95fe6bb055b91e24a516ad81d 2020-04-21 13:00:22 +02:00
agent.pb.go
agent.proto
controller.go vendor: docker/libnetwork d0951081b35fa4216fc4f0064bf065beeb55a74b 2020-09-18 01:08:20 +02:00
default_gateway.go
default_gateway_freebsd.go
default_gateway_linux.go
default_gateway_windows.go
drivers_freebsd.go
drivers_ipam.go
drivers_linux.go
drivers_windows.go Update modules to support riscv64 2019-06-29 18:45:42 +00:00
endpoint.go Bump libnetwork to latest refpoint 2020-01-16 16:28:23 -08:00
endpoint_cnt.go
endpoint_info.go
endpoint_info_unix.go
endpoint_info_windows.go
error.go
firewall_linux.go vendor: update libnetwork 1a17fb36132631a95fe6bb055b91e24a516ad81d 2020-04-21 13:00:22 +02:00
firewall_others.go vendor: update libnetwork 1a17fb36132631a95fe6bb055b91e24a516ad81d 2020-04-21 13:00:22 +02:00
network.go vendor: libnetwork 9e99af28df21367340c95a3863e31808d689c92a 2020-07-08 16:12:22 +02:00
network_unix.go
network_windows.go
resolver.go vendor libnetwork to 2e24aed516bd5c836e11378bb457dd612aa868ed 2020-05-28 03:28:51 +00:00
resolver_unix.go
resolver_windows.go
sandbox.go
sandbox_dns_unix.go Bump libnetwork to latest refpoint 2020-01-16 16:28:23 -08:00
sandbox_dns_windows.go Bump libnetwork to latest refpoint 2020-01-16 16:28:23 -08:00
sandbox_externalkey.go
sandbox_externalkey_unix.go daemon: Use short libnetwork ID in exec-root & update libnetwork 2019-10-15 11:40:24 +01:00
sandbox_externalkey_windows.go
sandbox_store.go
service.go
service_common.go vendor: bump libnetwork bf2bd42abc0a3734f12b5ec724e571434e42c669 2020-03-07 00:35:47 +01:00
service_linux.go vendor: vishvananda/netlink v1.1.0 2020-03-12 22:57:23 +01:00
service_unsupported.go
service_windows.go vendor: docker/libnetwork d0951081b35fa4216fc4f0064bf065beeb55a74b 2020-09-18 01:08:20 +02:00
store.go vendor: libnetwork 9e99af28df21367340c95a3863e31808d689c92a 2020-07-08 16:12:22 +02:00
vendor.conf vendor: docker/libnetwork d0951081b35fa4216fc4f0064bf065beeb55a74b 2020-09-18 01:08:20 +02:00

README.md

libnetwork - networking for containers

Circle CI Coverage Status GoDoc Go Report Card

Libnetwork provides a native Go implementation for connecting containers

The goal of libnetwork is to deliver a robust Container Network Model that provides a consistent programming interface and the required network abstractions for applications.

Design

Please refer to the design for more information.

Using libnetwork

There are many networking solutions available to suit a broad range of use-cases. libnetwork uses a driver / plugin model to support all of these solutions while abstracting the complexity of the driver implementations by exposing a simple and consistent Network Model to users.

import (
	"fmt"
	"log"

	"github.com/docker/docker/pkg/reexec"
	"github.com/docker/libnetwork"
	"github.com/docker/libnetwork/config"
	"github.com/docker/libnetwork/netlabel"
	"github.com/docker/libnetwork/options"
)

func main() {
	if reexec.Init() {
		return
	}

	// Select and configure the network driver
	networkType := "bridge"

	// Create a new controller instance
	driverOptions := options.Generic{}
	genericOption := make(map[string]interface{})
	genericOption[netlabel.GenericData] = driverOptions
	controller, err := libnetwork.New(config.OptionDriverConfig(networkType, genericOption))
	if err != nil {
		log.Fatalf("libnetwork.New: %s", err)
	}

	// Create a network for containers to join.
	// NewNetwork accepts Variadic optional arguments that libnetwork and Drivers can use.
	network, err := controller.NewNetwork(networkType, "network1", "")
	if err != nil {
		log.Fatalf("controller.NewNetwork: %s", err)
	}

	// For each new container: allocate IP and interfaces. The returned network
	// settings will be used for container infos (inspect and such), as well as
	// iptables rules for port publishing. This info is contained or accessible
	// from the returned endpoint.
	ep, err := network.CreateEndpoint("Endpoint1")
	if err != nil {
		log.Fatalf("network.CreateEndpoint: %s", err)
	}

	// Create the sandbox for the container.
	// NewSandbox accepts Variadic optional arguments which libnetwork can use.
	sbx, err := controller.NewSandbox("container1",
		libnetwork.OptionHostname("test"),
		libnetwork.OptionDomainname("docker.io"))
	if err != nil {
		log.Fatalf("controller.NewSandbox: %s", err)
	}

	// A sandbox can join the endpoint via the join api.
	err = ep.Join(sbx)
	if err != nil {
		log.Fatalf("ep.Join: %s", err)
	}

	// libnetwork client can check the endpoint's operational data via the Info() API
	epInfo, err := ep.DriverInfo()
	if err != nil {
		log.Fatalf("ep.DriverInfo: %s", err)
	}

	macAddress, ok := epInfo[netlabel.MacAddress]
	if !ok {
		log.Fatalf("failed to get mac address from endpoint info")
	}

	fmt.Printf("Joined endpoint %s (%s) to sandbox %s (%s)\n", ep.Name(), macAddress, sbx.ContainerID(), sbx.Key())
}

Contributing

Want to hack on libnetwork? Docker's contributions guidelines apply.

Code and documentation copyright 2015 Docker, inc. Code released under the Apache 2.0 license. Docs released under Creative commons.