Advertisement
Guest User

neutron

a guest
May 13th, 2017
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. [DEFAULT]
  2. service_plugins = neutron.services.l3_router.l3_router_plugin.L3RouterPlugin
  3. rpc_state_report_workers = 0
  4. api_workers = 2
  5. notify_nova_on_port_data_changes = True
  6. notify_nova_on_port_status_changes = True
  7. auth_strategy = keystone
  8. allow_overlapping_ips = True
  9. debug = True
  10. core_plugin = ml2
  11. transport_url = rabbit://stackrabbit:stackqueue@192.168.0.250:5672/
  12. logging_exception_prefix = ERROR %(name)s %(instance)s
  13. logging_default_format_string = %(levelname)s %(name)s [-] %(instance)s%(color)s%(message)s
  14. logging_context_format_string = %(levelname)s %(name)s [%(request_id)s %(project_name)s %(user_name)s] %(instance)s%(message)s
  15. logging_debug_format_suffix = {{(pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d}}
  16. bind_host = 0.0.0.0
  17. use_syslog = False
  18. state_path = /opt/stack/data/neutron
  19. [agent]
  20. root_helper_daemon = sudo /usr/local/bin/neutron-rootwrap-daemon /etc/neutron/rootwrap.conf
  21. root_helper = sudo /usr/local/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
  22. [cors]
  23. [cors.subdomain]
  24. [database]
  25. connection = mysql+pymysql://root:stackdb@127.0.0.1/neutron?charset=utf8
  26. [keystone_authtoken]
  27. memcached_servers = 192.168.0.250:11211
  28. signing_dir = /var/cache/neutron
  29. cafile = /opt/stack/data/ca-bundle.pem
  30. project_domain_name = Default
  31. project_name = service
  32. user_domain_name = Default
  33. password = XXXXXXXXXXX
  34. username = neutron
  35. auth_url = http://192.168.0.250/identity
  36. auth_type = password
  37. [matchmaker_redis]
  38. [nova]
  39. memcached_servers = 192.168.0.250:11211
  40. signing_dir = /var/cache/neutron
  41. cafile = /opt/stack/data/ca-bundle.pem
  42. project_domain_name = Default
  43. project_name = service
  44. user_domain_name = Default
  45. password = xxxxxxxxx
  46. username = nova
  47. auth_url = http://192.168.0.250/identity
  48. auth_type = password
  49. region_name = RegionOne
  50. [oslo_concurrency]
  51. lock_path = /opt/stack/data/neutron/lock
  52. [oslo_messaging_amqp]
  53. [oslo_messaging_kafka]
  54. [oslo_messaging_notifications]
  55. [oslo_messaging_rabbit]
  56. [oslo_messaging_zmq]
  57. [oslo_middleware]
  58. [oslo_policy]
  59. policy_file = /etc/neutron/policy.json
  60. [quotas]
  61. [ssl]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement