Guest User

Untitled

a guest
Dec 17th, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. **** controller nova.conf file ***
  2. [root@controller nova]# cat /etc/nova/nova.conf | grep -v ^$ | grep -v ^#
  3. [DEFAULT]
  4. network_api_class = nova.network.api.API
  5. security_group_api = nova
  6. vncserver_listen = 10.0.0.11
  7. vncserver_proxyclient_address = 10.0.0.11
  8. my_ip = 10.0.0.11
  9. verbose = True
  10. rpc_backend = rabbit
  11. auth_strategy = keystone
  12. notify_nova_on_port_status_changes = True
  13. notify_nova_on_port_data_changes = True
  14. nova_url = http://controller:8774/v2
  15. network_api_class = nova.network.neutronv2.api.API
  16. security_group_api = neutron
  17. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  18. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  19. [api_database]
  20. [barbican]
  21. [cells]
  22. [cinder]
  23. [conductor]
  24. [database]
  25. connection = mysql://nova:manurnsdc@controller/nova
  26. [ephemeral_storage_encryption]
  27. [glance]
  28. host = controller
  29. [guestfs]
  30. [hyperv]
  31. [image_file_url]
  32. [ironic]
  33. [keymgr]
  34. [keystone_authtoken]
  35. auth_uri = http://controller:5000
  36. auth_url = http://controller:35357
  37. auth_plugin = password
  38. project_domain_id = default
  39. user_domain_id = default
  40. project_name = service
  41. username = nova
  42. password = manurnsdc
  43. [libvirt]
  44. [metrics]
  45. [neutron]
  46. service_metadata_proxy = True
  47. metadata_proxy_shared_secret = manurnsdc
  48. url = http://controller:9696
  49. auth_strategy = keystone
  50. admin_auth_url = http://controller:35357/v2.0
  51. admin_tenant_name = service
  52. admin_username = neutron
  53. admin_password = manurnsdc
  54. [osapi_v3]
  55. [rdp]
  56. [serial_console]
  57. [spice]
  58. [ssl]
  59. [trusted_computing]
  60. [upgrade_levels]
  61. [vmware]
  62. [workarounds]
  63. [xenserver]
  64. [zookeeper]
  65. [matchmaker_redis]
  66. [matchmaker_ring]
  67. [oslo_concurrency]
  68. lock_path = /var/lib/nova/tmp
  69. [oslo_messaging_amqp]
  70. rabbit_host = controller
  71. rabbit_userid = openstack
  72. rabbit_password = manurnsdc
  73. [oslo_messaging_qpid]
  74.  
  75.  
  76. [root@controller ml2]# cat ml2_conf.ini | grep -v ^$ | grep -v ^#
  77. [ml2]
  78. type_drivers = flat,vlan,gre,vxlan
  79. tenant_network_types = gre
  80. mechanism_drivers = openvswitch
  81. [ml2_type_flat]
  82. [ml2_type_vlan]
  83. [ml2_type_gre]
  84. tunnel_id_ranges = 1:1000
  85. [ml2_type_vxlan]
  86. [securitygroup]
  87. enable_security_group = True
  88. enable_ipset = True
  89. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  90.  
  91.  
  92. [root@network neutron]# cd /etc/neutron/plugins/ml2/
  93. [root@network ml2]# cat ml2_conf.ini | grep -v ^$ | grep -v ^#
  94. [ml2]
  95. type_drivers = flat,vlan,gre,vxlan
  96. tenant_network_types = gre
  97. mechanism_drivers = openvswitch
  98. [ml2_type_flat]
  99. flat_networks = external
  100. [ml2_type_vlan]
  101. [ml2_type_gre]
  102. tunnel_id_ranges = 1:1000
  103. [ml2_type_vxlan]
  104. [securitygroup]
  105. enable_security_group = True
  106. enable_ipset = True
  107. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  108. [ovs]
  109. local_ip = 10.0.1.21
  110. bridge_mappings = external:br-ex
  111. [agent]
  112. tunnel_types = gre
Add Comment
Please, Sign In to add comment