ubuntu14.04 源码安装OVS2.3.0

前端之家收集整理的这篇文章主要介绍了ubuntu14.04 源码安装OVS2.3.0前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这是我安装ovs2.3.0的命令记录

# 前提条件
sudo apt-get update
sudo apt-get install -y build-essential

wget http://openvswitch.org/releases/openvswitch-2.3.0.tar.gz #使用curl下载软件是直接把程序输出到终端了。
tar -xzf openvswitch-2.3.0.tar.gz

#安装
cd openvswitch-2.3.0
make clean
./configure
sudo make
sudo make install
sudo mkdir -p /usr/local/etc/openswitch

sudo ovsdb-tool create /usr/local/etc/openvswitch/conf.db  vswitchd/vswitch.ovsschema
sudo mkdir -p /usr/local/var/run/openvswitch
sudo ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
    --remote=db:Open_vSwitch,Open_vSwitch,manager_options \
    --private-key=db:Open_vSwitch,SSL,private_key \
    --certificate=db:Open_vSwitch,certificate \
    --bootstrap-ca-cert=db:Open_vSwitch,ca_cert \
    --pidfile --detach --log-file

sudo ovs-vsctl --no-wait init
sudo ovs-vswitchd --pidfile --detach
ps -ef |grep ovs
ovs-vsctl --version
原文链接:https://www.f2er.com/ubuntu/353849.html

猜你在找的Ubuntu相关文章