2018-12-27 15:39:57 +08:00

22 lines
284 B
Markdown

# open vswitch
## install
```bash
git clone https://github.com/openvswitch/ovs.git
cd ovs
git checkout v2.7.0
sudo apt-get install git autoconf automake libtool openssl libssl-dev make python-six -y
./boot.sh
./configure
make
sudo make install
sudo modprobe openvswitch
```