Advertisement
Guest User

Untitled

a guest
Jan 19th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. [root@compute1 ~(keystone_admin)]# cat /etc/neutron/neutron.conf | grep -v ^# | grep -v ^$
  2. [DEFAULT]
  3. verbose = True
  4. debug = True
  5. state_path = /var/lib/neutron
  6. use_syslog = False
  7. use_stderr = True
  8. log_dir =/var/log/neutron
  9. bind_host = 0.0.0.0
  10. bind_port = 9696
  11. core_plugin =neutron.plugins.ml2.plugin.Ml2Plugin
  12. service_plugins =router
  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. advertise_mtu = False
  23. dhcp_agents_per_network = 1
  24. use_ssl = False
  25. rpc_response_timeout=60
  26. control_exchange=neutron
  27. lock_path=/var/lib/neutron/lock
  28. [matchmaker_redis]
  29. [matchmaker_ring]
  30. [quotas]
  31. [agent]
  32. root_helper = sudo neutron-rootwrap /etc/neutron/rootwrap.conf
  33. report_interval = 30
  34. [keystone_authtoken]
  35. auth_uri = http://127.0.0.1:35357/v2.0/
  36. identity_uri = http://127.0.0.1:5000
  37. admin_tenant_name = %SERVICE_TENANT_NAME%
  38. admin_user = %SERVICE_USER%
  39. admin_password = %SERVICE_PASSWORD%
  40. [database]
  41. [nova]
  42. [oslo_concurrency]
  43. [oslo_policy]
  44. [oslo_messaging_amqp]
  45. [oslo_messaging_qpid]
  46. [oslo_messaging_rabbit]
  47. kombu_reconnect_delay = 1.0
  48. rabbit_host = 10.0.0.1
  49. rabbit_port = 5672
  50. rabbit_hosts = 10.0.0.1:5672
  51. rabbit_use_ssl = False
  52. rabbit_userid = guest
  53. rabbit_password = guest
  54. rabbit_virtual_host = /
  55. rabbit_ha_queues = False
  56. heartbeat_rate=2
  57. heartbeat_timeout_threshold=0
  58. [qos]
  59. [root@compute1 ~(keystone_admin)]# cat /etc/neutron/plugin.ini | grep -v ^# | grep -v ^$
  60. [ml2]
  61. type_drivers = vxlan
  62. tenant_network_types = vxlan
  63. mechanism_drivers =openvswitch
  64. path_mtu = 0
  65. [ml2_type_flat]
  66. [ml2_type_vlan]
  67. [ml2_type_gre]
  68. [ml2_type_vxlan]
  69. vni_ranges = 1001:2000
  70. [ml2_type_geneve]
  71. [securitygroup]
  72. enable_security_group = True
  73. enable_ipset = True
  74. [agent]
  75. l2_population=False
  76. polling_interval=2
  77. arp_responder=False
  78. tunnel_types=vxlan
  79. [ovs]
  80. enable_tunneling=True
  81. integration_bridge=br-int
  82. local_ip=10.0.1.3
  83. tunnel_bridge=br-tun
  84. [root@compute1 ~(keystone_admin)]# cat /etc/neutron/plugins/ml2/openvswitch_agent.ini | grep -v ^# | grep -v ^$
  85. [ovs]
  86. integration_bridge = br-int
  87. tunnel_bridge = br-tun
  88. local_ip = 10.0.1.3
  89. enable_tunneling=True
  90. [agent]
  91. polling_interval = 2
  92. tunnel_types = vxlan
  93. l2_population = False
  94. arp_responder = False
  95. prevent_arp_spoofing = True
  96. enable_distributed_routing = False
  97. drop_flows_on_start=False
  98. [securitygroup]
  99. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  100. enable_security_group = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement