您的位置:首页 > 运维架构

openstack kilo 配置dvr

2015-08-25 15:52 288 查看
配置neutron-server
编辑/etc/neutron/neutron.conf
[DEFAULT]
router_distributed = True
编辑/etc/neutron/plugins/ml2/ml2_conf.ini,添加l2population
[ml2]
mechanism_drivers = openvswitch,l2population
配置network节点

配置L2,编辑/etc/neutron/plugins/ml2/ml2_conf.ini
[ml2]
mechanism_drivers = openvswitch,l2population
[agent]
...
l2_population = True
enable_distributed_routing = True
arp_responder = True
配置L3,编辑/etc/neutron/l3_agent.ini

agent_mode = dvr_snat
配置计算节点
配置L2 agent
[ml2]
mechanism_drivers = openvswitch,l2population
[agent]
...
l2_population = True
enable_distributed_routing = True
arp_responder = True
配置L3 agent,配置参数除
agent_mode
,其余和网络节点一致
[DEFAULT]
agent_mode = dvr
配置metadata
配置方式和network一致,在我的环境中,由dhcp提供metadata,就没有在计算节点上再配置metadata 服务
参考链接
https://wiki.openstack.org/wiki/Neutron/DVR/HowTo
http://docs.openstack.org/networking-guide/scenario_dvr_ovs.html
/article/4212232.html
http://yeasy.gitbooks.io/openstack_understand_neutron/content/dvr/scenario.html

本文出自 “武陵荒草” 博客,请务必保留此出处http://penguintux.blog.51cto.com/3021117/1688081
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: