Advertisement
Guest User

config

a guest
Oct 31st, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.07 KB | None | 0 0
  1. [root@controller ~]# cat /etc/neutron/neutron.conf | egrep -v "(^#.*|^$)"
  2. [DEFAULT]
  3. auth_strategy = keystone
  4. core_plugin = ml2
  5. service_plugins = router
  6. allow_overlapping_ips = true
  7. notify_nova_on_port_status_changes = true
  8. notify_nova_on_port_data_changes = true
  9. dhcp_agents_per_network = 2
  10. transport_url = rabbit://openstack:rabbitmq@controller
  11. [agent]
  12. [cors]
  13. [database]
  14. connection = mysql+pymysql://neutron:neutrondb@controller/neutron
  15. [keystone_authtoken]
  16. www_authenticate_uri = http://controller:5000
  17. auth_url = http://controller:5000
  18. memcached_servers = controller:11211
  19. auth_type = password
  20. project_domain_name = default
  21. user_domain_name = default
  22. project_name = service
  23. username = neutron
  24. password = neutron
  25. [matchmaker_redis]
  26. [nova]
  27. auth_url = http://controller:5000
  28. auth_type = password
  29. project_domain_name = default
  30. user_domain_name = default
  31. region_name = RegionOne
  32. project_name = service
  33. username = nova
  34. password = nova
  35. [oslo_concurrency]
  36. lock_path = /var/lib/neutron/tmp
  37. [oslo_messaging_amqp]
  38. [oslo_messaging_kafka]
  39. [oslo_messaging_notifications]
  40. [oslo_messaging_rabbit]
  41. [oslo_messaging_zmq]
  42. [oslo_middleware]
  43. [oslo_policy]
  44. [quotas]
  45. [ssl]
  46.  
  47. [root@controller ~]# cat /etc/neutron/ | egrep -v "(^#.*|^$)"
  48. conf.d/ l3_agent.ini neutron.conf plugins/ rootwrap.conf
  49. dhcp_agent.ini metadata_agent.ini plugin.ini policy.json
  50. [root@controller ~]# cat /etc/neutron/metadata_agent.ini | egrep -v "(^#.*|^$)"
  51. [DEFAULT]
  52. nova_metadata_host = controller
  53. metadata_proxy_shared_secret = xxx
  54. [agent]
  55. [cache]
  56. [root@controller ~]# cat /etc/neutron/plugins/ml2/ | egrep -v "(^#.*|^$)"
  57. ml2_conf.ini openvswitch_agent.ini sriov_agent.ini
  58. [root@controller ~]# cat /etc/neutron/plugins/ml2/openvswitch_agent.ini | egrep -v "(^#.*|^$)"
  59. [DEFAULT]
  60. [agent]
  61. tunnel_types = vxlan
  62. l2_population = true
  63. [network_log]
  64. [ovs]
  65. local_ip = 192.168.1.200
  66. bridge_mappings = provider:br-provider
  67. [securitygroup]
  68. firewall_driver = iptables_hybrid
  69. [xenapi]
  70.  
  71.  
  72. [root@compute1 ~]# cat /etc/neutron/neutron.conf | egrep -v "(^#.*|^$)"
  73. [DEFAULT]
  74. auth_strategy = keystone
  75. transport_url = rabbit://openstack:rabbitmq@controller
  76. [agent]
  77. [cors]
  78. [database]
  79. [keystone_authtoken]
  80. www_authenticate_uri = http://controller:5000
  81. auth_url = http://controller:5000
  82. memcached_servers = controller:11211
  83. auth_type = password
  84. project_domain_name = default
  85. user_domain_name = default
  86. project_name = service
  87. username = neutron
  88. password = neutron
  89. [matchmaker_redis]
  90. [nova]
  91. [oslo_concurrency]
  92. lock_path = /var/lib/neutron/tmp
  93. [oslo_messaging_amqp]
  94. [oslo_messaging_kafka]
  95. [oslo_messaging_notifications]
  96. [oslo_messaging_rabbit]
  97. [oslo_messaging_zmq]
  98. [oslo_middleware]
  99. [oslo_policy]
  100. [quotas]
  101. [ssl]
  102.  
  103.  
  104. [root@compute1 ~]# cat /etc/neutron/plugins/ml2/openvswitch_agent.ini | egrep -v "(^#.*|^$)"
  105. [DEFAULT]
  106. [agent]
  107. tunnel_types = vxlan
  108. l2_population = true
  109. [network_log]
  110. [ovs]
  111. local_ip = 192.168.3.202
  112. bridge_mappings = provider:br-provider
  113. [securitygroup]
  114. firewall_driver = iptables_hybrid
  115. [xenapi]
  116.  
  117.  
  118.  
  119. [root@compute1 ~]# cat /etc/nova/nova.conf | egrep -v "(^#.*|^$)"
  120. [DEFAULT]
  121. my_ip = 192.168.2.202
  122. use_neutron=true
  123. firewall_driver=nova.virt.firewall.NoopFirewallDriver
  124. enabled_apis=osapi_compute,metadata
  125. transport_url = rabbit://openstack:rabbitmq@controller
  126. [api]
  127. auth_strategy=keystone
  128. [api_database]
  129. [barbican]
  130. [cache]
  131. [cells]
  132. [cinder]
  133. [compute]
  134. [conductor]
  135. [console]
  136. [consoleauth]
  137. [cors]
  138. [database]
  139. [devices]
  140. [ephemeral_storage_encryption]
  141. [filter_scheduler]
  142. [glance]
  143. api_servers = http://controller:9292
  144. [guestfs]
  145. [healthcheck]
  146. [hyperv]
  147. [ironic]
  148. [key_manager]
  149. [keystone]
  150. [keystone_authtoken]
  151. auth_url = http://controller:5000/v3
  152. memcached_servers = controller:11211
  153. auth_type = password
  154. project_domain_name = default
  155. user_domain_name = default
  156. project_name = service
  157. username = nova
  158. password = nova
  159. [libvirt]
  160. [matchmaker_redis]
  161. [metrics]
  162. [mks]
  163. [neutron]
  164. url = http://controller:9696
  165. auth_url = http://controller:5000
  166. auth_type = password
  167. project_domain_name = default
  168. user_domain_name = default
  169. region_name = RegionOne
  170. project_name = service
  171. username = neutron
  172. password = neutron
  173. metadata_proxy_shared_secret = xxx
  174. [notifications]
  175. [osapi_v21]
  176. [oslo_concurrency]
  177. lock_path = /var/lib/nova/tmp
  178. [oslo_messaging_amqp]
  179. [oslo_messaging_kafka]
  180. [oslo_messaging_notifications]
  181. [oslo_messaging_rabbit]
  182. [oslo_messaging_zmq]
  183. [oslo_middleware]
  184. [oslo_policy]
  185. [pci]
  186. [placement]
  187. region_name = RegionOne
  188. project_domain_name = Default
  189. project_name = service
  190. auth_type = password
  191. user_domain_name = Default
  192. auth_url = http://controller:5000/v3
  193. username = placement
  194. password = placement
  195. [placement_database]
  196. [powervm]
  197. [profiler]
  198. [quota]
  199. [rdp]
  200. [remote_debug]
  201. [scheduler]
  202. [serial_console]
  203. [service_user]
  204. [spice]
  205. [upgrade_levels]
  206. [vault]
  207. [vendordata_dynamic_auth]
  208. [vmware]
  209. [vnc]
  210. enabled=true
  211. server_listen=0.0.0.0
  212. server_proxyclient_address=$my_ip
  213. novncproxy_base_url = http://192.168.2.200:6080/vnc_auto.html
  214. [workarounds]
  215. [wsgi]
  216. [xenserver]
  217. [xvp]
  218. [zvm]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement