Advertisement
Guest User

Untitled

a guest
Feb 10th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. [DEFAULT]
  2. verbose = True
  3. debug = True
  4. core_plugin = ml2
  5. service_plugins = router
  6. auth_strategy = keystone
  7. notify_nova_on_port_status_changes = True
  8. notify_nova_on_port_data_changes = True
  9. nova_url = http://keystone:8774/v2
  10. rpc_backend=rabbit
  11.  
  12. [oslo_messaging_rabbit]
  13. rabbit_host=rabbitmq
  14. rabbit_userid=openstack
  15. rabbit_password=[redacted]
  16.  
  17. [matchmaker_redis]
  18. [matchmaker_ring]
  19. [quotas]
  20. [agent]
  21.  
  22. [keystone_authtoken]
  23. auth_uri = http://keystone:5000
  24. auth_url = http://keystone:35357
  25. auth_type = password
  26. project_domain_id = default
  27. user_domain_id = default
  28. project_name = service
  29. username = neutron
  30. password = [redacted]
  31. memcached_servers = keystone:11211
  32.  
  33. [database]
  34. connection = mysql://neutron:[redacted]@keystone/neutron
  35. [service_providers]
  36. #service_provider=LOADBALANCER:Haproxy:neutron.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
  37. #service_provider=VPN:openswan:neutron.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default
  38.  
  39. [nova]
  40. auth_url = http://keystone:35357
  41. auth_type = password
  42. project_domain_id = default
  43. user_domain_id = default
  44. region_name = RegionOne
  45. project_name = service
  46. username = nova
  47. password = [redacted]
  48.  
  49. [oslo_concurrency]
  50. lock_path = /var/lib/neutron/tmp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement