moby--moby/libnetwork
Alessandro Boch 1f3f37b2f8 Sync libnetwork code to latest docker/master
- Update: portmapper, portallocator, ipallocator
- Remove stale godep dependencies
- Update pkg/iptables and others godep to latest
- Update bridge code and test after above changes
- Merge with latest changes in libnetwork

The code is updated up to docker/master commit SHA 86d66d6273

Signed-off-by: Alessandro Boch <aboch@docker.com>
2015-04-10 13:50:58 -07:00
..
Godeps Sync libnetwork code to latest docker/master 2015-04-10 13:50:58 -07:00
cmd/test Add network name 2015-03-02 10:17:12 -08:00
drivers/bridge Sync libnetwork code to latest docker/master 2015-04-10 13:50:58 -07:00
ipallocator Sync libnetwork code to latest docker/master 2015-04-10 13:50:58 -07:00
pkg/options Remove golint warnings 2015-03-04 13:29:28 -08:00
portallocator Sync libnetwork code to latest docker/master 2015-04-10 13:50:58 -07:00
portmapper Sync libnetwork code to latest docker/master 2015-04-10 13:50:58 -07:00
.gitignore Initial commit 2015-02-19 17:20:15 -08:00
LICENSE Initial commit 2015-02-19 17:20:15 -08:00
MAINTAINERS Add MAINTAINERS 2015-04-01 14:43:06 +01:00
Makefile Add Makefile 2015-04-08 17:18:17 +01:00
README.md Added initial README and ROADMAP files 2015-04-10 05:14:31 -07:00
ROADMAP.md Added initial README and ROADMAP files 2015-04-10 05:14:31 -07:00
circle.yml Fix Godeps in CI 2015-03-05 00:58:37 -08:00
configure.go - Added support to bridgeNetwork.Link 2015-04-10 16:45:59 +00:00
drivers.go Merge with docker/libnetwork 2015-03-06 16:11:19 +00:00
libnetwork_test.go Run libnetwork test case only when it's specifically enabled 2015-04-09 20:48:13 +00:00
namespace.go Reimplement create namespace and move interafec to ns without reexec 2015-03-12 04:07:34 +00:00
network.go - Added support to bridgeNetwork.Link 2015-04-10 16:45:59 +00:00
system.go Remove golint warnings 2015-03-04 13:29:28 -08:00
testing.go Add tests 2015-02-24 11:19:00 -08:00
utils.go Issue #18: IP Allocator rework 2015-03-24 13:57:59 -07:00
utils_test.go Issue #18: IP Allocator rework 2015-03-24 13:57:59 -07:00

README.md

libnetwork - networking for containers

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.

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.

Please refer to the roadmap 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 network for containers to join.
network, err := libnetwork.NewNetwork("simplebridge", &Options{})
if err != nil {
  return err
}
//
// For a new container: create network namespace (providing the path).
networkPath := "/var/lib/docker/.../4d23e"
networkNamespace, err := libnetwork.NewNetworkNamespace(networkPath)
if err != nil {
  return 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.
interfaces, err := network.Link(containerID)
if err != nil {
  return err
}
//
// Add interfaces to the namespace.
for _, interface := range interfaces {
  if err := networkNamespace.AddInterface(interface); err != nil {
          return err
  }
}
//

Future

See the roadmap.

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.