moby--moby/libnetwork
Jana Radhakrishnan 79556b1ccc Fix issue in ipv6 when a non-default link-local ipv6 address is present.
If the bridge exists and it exists with a different link local ip address
than fe80::1/64 then we waifl to accept that as a valid configuration without
trying to add the default link local ip address. With this fix we always try
to add the default link local address if it doesn't exist.

Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
2015-05-12 23:43:06 +00:00
..
Godeps Updated godeps 2015-05-06 23:52:50 +00:00
client fix some typos 2015-05-07 09:22:06 +00:00
cmd Make driver packages register themselves via DriverCallback 2015-05-11 19:00:06 +01:00
docs Make driver packages register themselves via DriverCallback 2015-05-11 19:00:06 +01:00
driverapi Fixed some convoluted texts in remote.md and fixed a remote driver bug 2015-05-07 11:55:46 -07:00
drivers Fix issue in ipv6 when a non-default link-local ipv6 address is present. 2015-05-12 23:43:06 +00:00
ipallocator Simplify the code in the RegisterSubnet method of ipallocator. 2015-05-12 00:44:34 +00:00
netutils Add some tests 2015-05-08 15:00:59 +08:00
pkg Brought in iptables package into libnetwork. 2015-05-06 23:52:50 +00:00
portmapper Added more test coverage for portmapper package. 2015-05-10 16:53:56 +00:00
sandbox Make endpoint Join and Leave multi-thread safe 2015-05-10 17:36:04 +00:00
test/integration Initial bats based integration tests for testing daemon network configs 2015-04-25 07:33:48 -07:00
types Refactor driverapi, sandbox pkgs 2015-04-21 09:44:39 -07:00
.gitignore Create a build image to avoid install-deps every time 2015-05-11 21:17:12 +01:00
LICENSE Initial commit 2015-02-19 17:20:15 -08:00
MAINTAINERS Add MAINTAINERS 2015-04-01 14:43:06 +01:00
Makefile Create a build image to avoid install-deps every time 2015-05-11 21:17:12 +01:00
README.md Updated Design Document 2015-05-06 13:38:16 -07:00
ROADMAP.md Updated Design Document 2015-05-06 13:38:16 -07:00
circle.yml Report Code Coverage and Add Status Badges 2015-04-14 16:19:55 +01:00
controller.go Merge pull request #143 from squaremo/driver_init_not_new 2015-05-11 22:14:51 -07:00
drivers.go Make driver packages register themselves via DriverCallback 2015-05-11 19:00:06 +01:00
endpoint.go Make endpoint Join and Leave multi-thread safe 2015-05-10 17:36:04 +00:00
error.go By ID and By Name query methods to return error 2015-05-11 16:25:36 -07:00
libnetwork_internal_test.go Make driver packages register themselves via DriverCallback 2015-05-11 19:00:06 +01:00
libnetwork_test.go Merge pull request #143 from squaremo/driver_init_not_new 2015-05-11 22:14:51 -07:00
network.go By ID and By Name query methods to return error 2015-05-11 16:25:36 -07:00
system.go Remove golint warnings 2015-03-04 13:29:28 -08:00

README.md

libnetwork - networking for containers

Circle CI Coverage Status GoDoc

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.

NOTE: libnetwork project is under heavy development and is not ready for general use.

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.

        // Create a new controller instance
        controller := libnetwork.New()

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

        driverOptions := options.Generic{}
        genericOption := make(map[string]interface{})
        genericOption[netlabel.GenericData] = driverOptions
        err := controller.ConfigureNetworkDriver(networkType, genericOption)
        if err != nil {
                return
        }

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

        // 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 {
                return
        }

        // A container can join the endpoint by providing the container ID to the join
        // api which returns the sandbox key which can be used to access the sandbox
        // created for the container during join.
        // Join acceps Variadic arguments which will be made use of by libnetwork and Drivers
        _, err = ep.Join("container1",
                libnetwork.JoinOptionHostname("test"),
                libnetwork.JoinOptionDomainname("docker.io"))
        if err != nil {
                return
        }

		// libentwork client can check the endpoint's operational data via the Info() API
		epInfo, err := ep.Info()
		mapData, ok := epInfo[netlabel.PortMap]
		if ok {
			portMapping, ok := mapData.([]netutils.PortBinding)
			if ok {
				fmt.Printf("Current port mapping for endpoint %s: %v", ep.Name(), portMapping)
			}
		}

Current Status

Please watch this space for updates on the progress.

Currently libnetwork is nothing more than an attempt to modularize the Docker platform's networking subsystem by moving it into libnetwork as a library.

Future

Please refer to roadmap for more information.

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.