zoukankan      html  css  js  c++  java
  • openstack pike 使用 linuxbridge + vxlan

    #openstack pike 使用 linuxbridge + vxlan

    #openstack pike 集群高可用  安装部署 汇总 http://www.cnblogs.com/elvi/p/7613861.html

    ############################################################
    # openstack pike 使用 linuxbridge + vxlan
    
    #前面已部署的只使用外部网络,在其基础上,修改为xvlan + linuxbridge
    #######################
    
    #控制节点 修改
    
    MyIP=10.2.1.17 #local_ip使用
    
    #开启route 
    openstack-config --set /etc/neutron/neutron.conf DEFAULT service_plugins router
    
    openstack-config --set /etc/neutron/plugins/ml2/ml2_conf.ini ml2 tenant_network_types vxlan
    openstack-config --set /etc/neutron/plugins/ml2/ml2_conf.ini ml2 type_drivers flat,vlan,vxlan
    openstack-config --set /etc/neutron/plugins/ml2/ml2_conf.ini ml2 mechanism_drivers linuxbridge,l2population
    openstack-config --set /etc/neutron/plugins/ml2/ml2_conf.ini ml2_type_vxlan vni_ranges 3001:4000
    
    openstack-config --set /etc/neutron/plugins/ml2/linuxbridge_agent.ini vxlan enable_vxlan true
    openstack-config --set /etc/neutron/plugins/ml2/linuxbridge_agent.ini vxlan l2_population true
    openstack-config --set /etc/neutron/plugins/ml2/linuxbridge_agent.ini vxlan local_ip $MyIP
    
    openstack-config --set /etc/neutron/l3_agent.ini DEFAULT interface_driver linuxbridge
    
    #启用L3
    systemctl enable neutron-l3-agent.service
    systemctl restart neutron-l3-agent.service
    #服务重启
    systemctl restart neutron-server
    systemctl restart neutron-linuxbridge-agent
    
    #######################
    #计算节点
    
    MyIP=10.2.1.17 #local_ip使用
    
    openstack-config --set /etc/neutron/plugins/ml2/linuxbridge_agent.ini vxlan enable_vxlan true
    openstack-config --set /etc/neutron/plugins/ml2/linuxbridge_agent.ini vxlan l2_population true
    openstack-config --set /etc/neutron/plugins/ml2/linuxbridge_agent.ini vxlan local_ip $MyIP
    
    #重启服务
    systemctl restart neutron-linuxbridge-agent
    ############################################################
  • 相关阅读:
    Delphi中 StrToIntDef函数的用法:
    Delphi判断文件夹(目录)是否存在,不存在就创建一个,可以一次创建多级目录
    Delphi中Format的字符串格式化使用说明
    linux下可变参数打印
    c++11 thread
    QMessageBox 使用
    Ubuntu虚拟机配置nfs
    test
    Qt 布局时组建不贴边
    QPainter 居中写字
  • 原文地址:https://www.cnblogs.com/elvi/p/7834787.html
Copyright © 2011-2022 走看看