Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2015
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. root@controller1:~# grep -v ^# /etc/neutron/neutron.conf | sed '/^$/d'
  2. [DEFAULT]
  3. verbose = True
  4. lock_path = $state_path/lock
  5. core_plugin = ml2
  6. service_plugins = router
  7. allow_overlapping_ips = True
  8. notify_nova_on_port_status_changes = True
  9. notify_nova_on_port_data_changes = True
  10. nova_url = http://controller1:8774/v2
  11. nova_region_name = regionOne
  12. nova_admin_username = nova
  13. nova_admin_tenant_id = 35fa4cc7d92f49a9a5159fcd50c7f99d
  14. nova_admin_password = n0va
  15. nova_admin_auth_url = http://controller1:35357/v2.0
  16. rabbit_hosts = db1,db2
  17. rabbit_userid=guest
  18. rabbit_password=guest
  19. rpc_backend=rabbit
  20. rabbit_hosts = db1,db2
  21. rabbit_password = guest
  22. [matchmaker_redis]
  23. [matchmaker_ring]
  24. [quotas]
  25. [agent]
  26. root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
  27. [keystone_authtoken]
  28. auth_uri = http://controller1:5000/v2.0
  29. identity_uri = http://controller1:35357
  30. admin_tenant_name = service
  31. admin_user = neutron
  32. admin_password = neutr0n
  33. [database]
  34. connection = mysql://neutron:neutr0n@db1/neutron
  35. [service_providers]
  36. service_provider=LOADBALANCER:Haproxy:neutron.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
  37. service_provider=VPN:openswan:neutron.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default
  38.  
  39. root@compute1:~# grep -v ^# /etc/neutron/neutron.conf | sed '/^$/d'
  40. [DEFAULT]
  41. verbose = True
  42. lock_path = $state_path/lock
  43. core_plugin = ml2
  44. service_plugins = router
  45. auth_strategy = keystone
  46. allow_overlapping_ips = True
  47. rpc_backend=rabbit
  48. rabbit_hosts = db1,db2
  49. rabbit_password = guest
  50. [matchmaker_redis]
  51. [matchmaker_ring]
  52. [quotas]
  53. [agent]
  54. root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
  55. [keystone_authtoken]
  56. auth_uri = http://controller1:5000/v2.0
  57. identity_uri = http://controller1:35357
  58. admin_tenant_name = service
  59. admin_user = neutron
  60. admin_password = neutr0n
  61. [database]
  62. [service_providers]
  63. service_provider=LOADBALANCER:Haproxy:neutron.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
  64. service_provider=VPN:openswan:neutron.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default
  65.  
  66.  
  67.  
  68.  
  69. root@controller1:~# grep -v ^# /etc/neutron/plugins/ml2/ml2_conf.ini | sed '/^$/d'
  70. [ml2]
  71. type_drivers = flat,gre
  72. tenant_network_types = gre
  73. mechanism_drivers = openvswitch
  74. [ml2_type_flat]
  75. [ml2_type_vlan]
  76. [ml2_type_gre]
  77. tunnel_id_ranges = 1:1000
  78. [ml2_type_vxlan]
  79. [securitygroup]
  80. enable_security_group = True
  81. enable_ipset = True
  82. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  83.  
  84.  
  85.  
  86. root@compute1:~# grep -v ^# /etc/neutron/plugins/ml2/ml2_conf.ini | sed '/^$/d'
  87. [ml2]
  88. type_drivers = flat,gre
  89. tenant_network_types = gre
  90. mechanism_drivers = openvswitch
  91. [ml2_type_flat]
  92. [ml2_type_vlan]
  93. [ml2_type_gre]
  94. tunnel_id_ranges = 1:1000
  95. [ml2_type_vxlan]
  96. [securitygroup]
  97. enable_security_group = True
  98. enable_ipset = True
  99. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  100. [ovs]
  101. local_ip = 172.172.172.61
  102. enable_tunneling = True
  103. tunnel_type = gre
  104. [agent]
  105. tunnel_types = gre
  106.  
  107.  
  108.  
  109.  
  110. root@neutron1:~# grep -v ^# /etc/neutron/plugins/ml2/ml2_conf.ini | sed '/^$/d'
  111. [ml2]
  112. type_drivers = flat, gre
  113. tenant_network_types = gre
  114. mechanism_drivers = openvswitch
  115. [ml2_type_flat]
  116. flat_networks = external
  117. [ml2_type_vlan]
  118. [ml2_type_gre]
  119. tunnel_id_ranges = 1:1000
  120. [ml2_type_vxlan]
  121. [securitygroup]
  122. enable_security_group = True
  123. enable_ipset = True
  124. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  125. [ovs]
  126. local_ip = 172.172.172.51
  127. enable_tunneling = True
  128. bridge_mappings = external:br-ex
  129. tunnel_type = gre
  130. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  131. [agent]
  132. tunnel_types = gre
  133.  
  134.  
  135.  
  136. root@controller1:~# grep -v ^# /etc/nova/nova.conf | sed '/^$/d'
  137. [DEFAULT]
  138. dhcpbridge_flagfile=/etc/nova/nova.conf
  139. dhcpbridge=/usr/bin/nova-dhcpbridge
  140. logdir=/var/log/nova
  141. state_path=/var/lib/nova
  142. lock_path=/var/lock/nova
  143. force_dhcp_release=True
  144. libvirt_use_virtio_for_bridges=True
  145. verbose=True
  146. ec2_private_dns_show_ip=True
  147. api_paste_config=/etc/nova/api-paste.ini
  148. enabled_apis=ec2,osapi_compute,metadata
  149. my_ip = 10.10.10.41
  150. vncserver_listen = 10.10.10.41
  151. vncserver_proxyclient_address = 10.10.10.41
  152. auth_strategy = keystone
  153. rpc_backend = rabbit
  154. rabbit_hosts = db1,db2
  155. rabbit_password = guest
  156. network_api_class = nova.network.neutronv2.api.API
  157. security_group_api = neutron
  158. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  159. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  160. [database]
  161. connection = mysql://nova:n0va@db1/nova
  162. [keystone_authtoken]
  163. auth_uri = http://controller1:5000/v2.0
  164. identity_uri = http://controller1:35357
  165. admin_tenant_name = service
  166. admin_user = nova
  167. admin_password = n0va
  168. [glance]
  169. host = controller1
  170. [neutron]
  171. url = http://controller1:9696
  172. auth_strategy = keystone
  173. admin_auth_url = http://controller1:35357/v2.0
  174. admin_tenant_name = service
  175. admin_username = neutron
  176. admin_password = neutr0n
  177. service_metadata_proxy = True
  178. metadata_proxy_shared_secret = adm1n0
  179.  
  180.  
  181. root@compute1:~# grep -v ^# /etc/nova/nova.conf | sed '/^$/d'
  182. [DEFAULT]
  183. dhcpbridge_flagfile=/etc/nova/nova.conf
  184. dhcpbridge=/usr/bin/nova-dhcpbridge
  185. logdir=/var/log/nova
  186. state_path=/var/lib/nova
  187. lock_path=/var/lock/nova
  188. force_dhcp_release=True
  189. libvirt_use_virtio_for_bridges=True
  190. verbose=True
  191. debug=True
  192. ec2_private_dns_show_ip=True
  193. api_paste_config=/etc/nova/api-paste.ini
  194. enabled_apis=ec2,osapi_compute,metadata
  195. my_ip = 10.10.10.61
  196. vnc_enabled = True
  197. vncserver_listen = 0.0.0.0
  198. vncserver_proxyclient_address = 10.10.10.61
  199. novncproxy_base_url = http://controller1:6080/vnc_auto.html
  200. rpc_backend = rabbit
  201. rabbit_hosts = db1,db2
  202. rabbit_password = guest
  203. network_api_class = nova.network.neutronv2.api.API
  204. security_group_api = neutron
  205. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  206. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  207. auth_stragegy = keystone
  208. [keystone_authtoken]
  209. auth_uri = http://controller1:5000/v2.0
  210. identity_uri = http://controller1:35357
  211. admin_tenant_name = service
  212. admin_user = nova
  213. admin_password = n0va
  214. [glance]
  215. host = controller1
  216. [neutron]
  217. url = http://controller1:9696
  218. auth_strategy = keystone
  219. admin_auth_url = http://controller1:35357/v2.0
  220. admin_tenant_name = service
  221. admin_username = neutron
  222. admin_password = neutr0n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement