zoukankan      html  css  js  c++  java
  • 安装networking-sfc

    申明:
    主参考:https://docs.openstack.org/networking-sfc/queens/
    辅参考:
    https://blog.csdn.net/linshenyuan1213/article/details/78195061
    https://blog.csdn.net/wuliangtianzu/article/details/78422951

    在控制节点上安装

    1.安装networking-sfc组件


    pip install -c https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/queens networking-sfc==4.0.0
    或者
    yum -y install python-networking-sfc

    2.配置neutron加载networking-sfc服务插件


    SERVICE_PLUGINS_OLD=`openstack-config --get /etc/neutron/neutron.conf DEFAULT service_plugins`
    openstack-config --set /etc/neutron/neutron.conf DEFAULT service_plugins ${SERVICE_PLUGINS_OLD},flow_classifier,sfc

    3.配置networking-sfc服务使能OVS网桥驱动


    openstack-config --set /etc/neutron/neutron.conf sfc drivers ovs
    openstack-config --set /etc/neutron/neutron.conf flowclassifier drivers ovs

    4.同步数据库


    neutron-db-manage --subproject networking-sfc upgrade head

    5.重启neutron服务


    systemctl restart neutron-server
    systemctl status neutron-server


    在计算节点上安装

    1.安装networking-sfc组件


    pip install -c https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/queens networking-sfc==4.0.0
    或者
    yum -y install python-networking-sfc

    2.配置OVS服务使能networking-sfc扩展功能


    openstack-config --set /etc/neutron/plugins/ml2/openvswitch_agent.ini agent extensions sfc

    3.重启neutron服务


    systemctl restart neutron-openvswitch-agent
    systemctl status neutron-openvswitch-agent

  • 相关阅读:
    [网络流24题]骑士共存问题
    [网络流24题]魔术球问题
    [网络流24题]飞行员配对方案问题
    bzoj2741【FOTILE模拟赛】L(可持久化trie树+分块)
    bzoj4103[Thu Summer Camp 2015]异或运算(可持久化trie树)
    bzoj[3881]Divljak(dfs序+树状数组+fail树)
    bzoj1444 有趣的游戏(AC自动机+矩阵乘法)
    bzoj1195 最短母串
    bzoj2938 病毒
    poj 3134 Power Calculus (IDA*)
  • 原文地址:https://www.cnblogs.com/jipinglong/p/11223212.html
Copyright © 2011-2022 走看看