22 lines
284 B
Markdown
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
|
|
```
|