Generic network plugin is designed to handle networking use cases in clustered multi-host systems. It is specifically designed to handle:
Full, comprehensive documentation is available on the website:
Getting-started videos are available on YouTube.
This will provide you with a minimal experience of uploading the intent and seeing the netplugin system act on it. It will create a network on your host that lives behind an OVS bridge and has its own unique interfaces.
Note: if you have $GOPATH set, then please ensure either you unset GOPATH,
or clone the tree in $GOPATH/src/github.com/contiv/
location
$ git clone https://github.com/contiv/netplugin
$ cd netplugin; make demo
$ vagrant ssh netplugin-node1
Optionally, variables can be passed to Makefile if needed. For example, to use 4 GB memory and 2 CPUs for the vagrant VMs, run:
CONTIV_MEMORY=4096 CONTIV_CPUS=2 make demo
CONTIV_MEMORY and CONTIV_CPUS are set to 2048 and 4 as the default values respectively.
$ netctl net create contiv-net --subnet=20.1.1.0/24
or
netctl net create contiv-net --subnet=20.1.1.0/24 --subnetv6=2001::/100
$ docker run -itd --name=web --net=contiv-net alpine /bin/sh
$ docker run -itd --name=db --net=contiv-net alpine /bin/sh
$ docker exec -it web /bin/sh
< inside the container >
root@f90e7fd409c4:/# ping db
PING db (20.1.1.3) 56(84) bytes of data.
64 bytes from db (20.1.1.3): icmp_seq=1 ttl=64 time=0.658 ms
64 bytes from db (20.1.1.3): icmp_seq=2 ttl=64 time=0.103 ms
Note: Vagrant 1.7.4 and VirtualBox 5.0+ are required to build and test netplugin.
High level make
targets:
demo
: start three VM demo cluster for development or testing.build
: build the binary in a VM and download it to the host.unit-test
: run the unit tests. Specify CONTIV_NODE_OS=centos
to test on centos instead of ubuntu.system-test
: run the networking/"sanity" tests. Specify CONTIV_NODE_OS=centos
to test on centos instead of ubuntu.Patches and contributions are welcome, please hit the GitHub page to open an issue or to submit patches send pull requests. Please sign your commits, and read CONTRIBUTING.md