Advertisement
Guest User

Untitled

a guest
Oct 16th, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. [DEFAULT]
  2. verbose = True
  3. router_distributed = False
  4. debug = False
  5. state_path = /var/lib/neutron
  6. use_syslog = False
  7. log_dir =/var/log/neutron
  8. bind_host = 0.0.0.0
  9. bind_port = 9696
  10. core_plugin = ml2
  11. service_plugins =
  12. service_plugins =
  13. auth_strategy = keystone
  14. base_mac = fa:16:3e:00:00:00
  15. mac_generation_retries = 16
  16. dhcp_lease_duration = 86400
  17. dhcp_agent_notification = True
  18. allow_bulk = True
  19. allow_pagination = False
  20. allow_sorting = False
  21. allow_overlapping_ips = True
  22. agent_down_time = 75
  23. router_scheduler_driver = neutron.scheduler.l3_agent_scheduler.ChanceScheduler
  24. allow_automatic_l3agent_failover = False
  25. dhcp_agents_per_network = 1
  26. l3_ha = False
  27. api_workers = 40
  28. rpc_workers = 40
  29. use_ssl = False
  30. notify_nova_on_port_status_changes = True
  31. notify_nova_on_port_data_changes = True
  32. nova_url = http://controllerIP:8774/v2
  33. nova_region_name =RegionOne
  34. nova_admin_username =nova
  35. nova_admin_tenant_id =<tannet uid>
  36. nova_admin_password =<admin pass>
  37. nova_admin_auth_url =http://controllerIP:5000/v2.0
  38. send_events_interval = 2
  39. rpc_backend=neutron.openstack.common.rpc.impl_kombu
  40. control_exchange=neutron
  41. lock_path=/var/lib/neutron/lock
  42. [matchmaker_redis]
  43. [matchmaker_ring]
  44. [quotas]
  45. [agent]
  46. root_helper = sudo neutron-rootwrap /etc/neutron/rootwrap.conf
  47. report_interval = 30
  48. [keystone_authtoken]
  49. auth_uri = http://controllerIP:5000/v2.0
  50. identity_uri = http://controllerIP:35357
  51. admin_tenant_name = services
  52. admin_user = neutron
  53. admin_password = <admin pass>
  54. [database]
  55. connection = mysql://neutron:<pass>@controllerIP/neutron
  56. max_retries = 10
  57. retry_interval = 10
  58. min_pool_size = 1
  59. max_pool_size = 10
  60. idle_timeout = 3600
  61. max_overflow = 20
  62. [nova]
  63. [oslo_concurrency]
  64. lock_path = $state_path/lock
  65. [oslo_policy]
  66. [oslo_messaging_amqp]
  67. [oslo_messaging_qpid]
  68. [oslo_messaging_rabbit]
  69. kombu_reconnect_delay = 1.0
  70. rabbit_host = controllerIP
  71. rabbit_port = 5672
  72. rabbit_hosts = controllerIP:5672
  73. rabbit_use_ssl = False
  74. rabbit_userid = guest
  75. rabbit_password = guest
  76. rabbit_virtual_host = /
  77. rabbit_ha_queues = False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement