openstack stein部署手册 9. neutron

# 安装程序包
yum -y install openstack-neutron-linuxbridge ebtables ipset


# 变更配置文件
cd /etc/neutron
mv neutron.conf neutron.conf.org

cat > /etc/neutron/neutron.conf << EOF
[DEFAULT]
transport_url = rabbit://openstack:Abc@123@controller
auth_strategy = keystone

[keystone_authtoken]
www_authenticate_uri = http://controller:5000
auth_url = http://controller/v3
memcached_servers = controller:11211
auth_type = password
project_domain_name = default
user_domain_name = default
project _name = service
username = neutron
password = Abc@123

[oslo_concurrency]
lock_path = /var/lib/neutron/tmp
EOF

chmod 640 /etc/neutron/neutron.conf
chown root:neutron /etc/neutron/neutron.conf

/etc/neutron/plugins/ml2/linuxbridge_agent.ini
未尾部分增加
[linux_bridge]
physical_interface_mappings = provider:eth1

[vxlan]
enable_vxlan = true
local_ip = 192.168.123.202
l2_population = true

[securitygroup]
enable_security_group = true
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver


# 开启服务
systemctl restart openstack-nova-compute && systemctl enable openstack-nova-compute
systemctl restart neutron-linuxbridge-agent && systemctl enable neutron-linuxbridge-agent


# 验证
在controller上执行
source ~/.openstack_admin
openstack network agent list

猜你喜欢

转载自www.cnblogs.com/liujitao79/p/11870877.html