Blame README

Packit cac203
# SUBMITTING PATCHES / PULL REQUESTS - README!!! #
Packit cac203
Packit cac203
All github pull requests will be ignored! Please send the patches to the libteam mailing list, according to "SubmittingPatches" file.
Packit cac203
Packit cac203
# libteam - Library for controlling team network device #
Packit cac203
Packit cac203
The purpose of the Team driver is to provide a mechanism to team multiple NICs (ports) into one logical one (teamdev) at L2 layer. The process is called "channel bonding", "Ethernet bonding", "channel teaming", "link aggregation", etc. This is already implemented in the Linux kernel by the bonding driver.
Packit cac203
Packit cac203
One thing to note is that Team driver project does try to provide the similar functionality as the bonding driver, however architecturally it is quite different from bonding driver. Team driver is modular, userspace driven, very lean and efficient, and it does have some distinct advantages over bonding. The way Team is configured differs dramatically from the way bonding is.
Packit cac203
Packit cac203
## Install
Packit cac203
Packit cac203
    $ ./autogen.sh
Packit cac203
    $ ./configure
Packit cac203
    $ make
Packit cac203
    $ sudo make install
Packit cac203
Packit cac203
## Authors
Packit cac203
Packit cac203
* Jiri Pirko <jiri@resnulli.us>
Packit cac203
Packit cac203
## Internet Resources
Packit cac203
Packit cac203
* Project Home:     http://www.libteam.org/
Packit cac203
* Git Source Tree:  https://github.com/jpirko/libteam/
Packit cac203
* Wiki:             https://github.com/jpirko/libteam/wiki
Packit cac203
* Tutorial:         https://github.com/jpirko/libteam/wiki/Tutorial
Packit cac203
* Documentation:    https://github.com/jpirko/libteam/wiki/Infrastructure-Specification
Packit cac203
Packit cac203
## License
Packit cac203
Packit cac203
Copyright (C) 2011-2015 Jiri Pirko <jiri@resnulli.us>
Packit cac203
Packit cac203
libteam is distributed under GNU Lesser General Public License version 2.1.
Packit cac203
See the file "COPYING" in the source distribution for information on terms & conditions for accessing and otherwise using libteam.