Advertisement
diegolima

Neutron.conf

Aug 19th, 2014
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [DEFAULT]
  2. debug = False
  3. verbose = False
  4. state_path = /var/lib/neutron
  5. lock_path = $state_path/lock
  6.  
  7. core_plugin = ml2
  8. auth_strategy = keystone
  9.  
  10. service_plugins = router,lbaas
  11. allow_overlapping_ips = True
  12.  
  13. notify_nova_on_port_status_changes = True
  14. notify_nova_on_port_data_changes = True
  15.  
  16. nova_url = http://api.company.com:8774/v2
  17. nova_admin_username = nova
  18. nova_admin_tenant_id = dac6c7cad9f542b790d838fe68b8dd6b
  19. nova_admin_password = password
  20. nova_admin_auth_url = http://api.company.com:35357/v2.0
  21.  
  22. notification_driver = neutron.openstack.common.notifier.rpc_notifier
  23. rpc_backend = neutron.openstack.common.rpc.impl_kombu
  24. rabbit_hosts = mgt-5.company.com:5672, mgt-6.company.com:5672
  25. rabbit_retry_interval = 1
  26. rabbit_retry_backoff = 2
  27. rabbit_max_retries = 0
  28. rabbit_ha_queues = true
  29. rabbit_durable_queues = false
  30. rabbit_password = password
  31.  
  32. memcached_servers = mgt-5.company.com:11211, mgt-6.company.com:11211
  33.  
  34. [quotas]
  35.  
  36. [agent]
  37. root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
  38.  
  39. [keystone_authtoken]
  40. auth_uri = http://api.company.com:5000
  41. auth_host = api.company.com
  42. auth_port = 35357
  43. auth_protocol = http
  44. admin_tenant_name = service
  45. admin_user = neutron
  46. admin_password = password
  47. signing_dir = $state_path/keystone-signing
  48. memcached_servers = mgt-5.company.com,mgt-6.company.com
  49.  
  50. [database]
  51. connection = postgresql://neutron:password@db.company.com/neutron
  52.  
  53. [service_providers]
  54. service_provider=LOADBALANCER:Haproxy:neutron.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
  55. service_provider=VPN:openswan:neutron.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement