Advertisement
adhioutlined

NETWORK-CONFIG_myLiberty_XSNEUTRON

Sep 20th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.87 KB | None | 0 0
  1. Network Node
  2. ================================================
  3. neutron.conf
  4. ================================================
  5. [DEFAULT]
  6. verbose = False
  7. debug = False
  8. core_plugin = ml2
  9. service_plugins = router
  10. auth_strategy = keystone
  11. allow_overlapping_ips = True
  12. rpc_backend = rabbit
  13. [matchmaker_redis]
  14. [matchmaker_ring]
  15. [quotas]
  16. [agent]
  17. [database]
  18. [nova]
  19. [oslo_concurrency]
  20. [oslo_policy]
  21. [oslo_messaging_amqp]
  22. [oslo_messaging_qpid]
  23. [oslo_messaging_rabbit]
  24. rabbit_host = 192.168.26.42
  25. rabbit_userid = openstack
  26. rabbit_password = MY_PASSWORD
  27. [qos]
  28. [keystone_authtoken]
  29. auth_uri = http://192.168.26.42:5000
  30. auth_url = http://192.168.26.42:35357
  31. auth_plugin = password
  32. project_domain_id = default
  33. user_domain_id = default
  34. project_name = service
  35. username = neutron
  36. password = MY_PASSWORD
  37.  
  38. ================================================
  39.  
  40. ================================================
  41. ml2_conf.ini
  42. ================================================
  43. [ml2]
  44. type_drivers = flat,gre
  45. tenant_network_types = gre
  46. mechanism_drivers = openvswitch
  47. [ml2_type_flat]
  48. flat_networks = physnet0
  49. [ml2_type_vlan]
  50. [ml2_type_gre]
  51. tunnel_id_ranges = 100:1000
  52. [ml2_type_vxlan]
  53. [ml2_type_geneve]
  54. [securitygroup]
  55. enable_security_group = True
  56. enable_ipset = True
  57. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  58.  
  59. ================================================
  60.  
  61.  
  62. ================================================
  63. openvswitch_agent.ini
  64. ================================================
  65. [ovs]
  66. integration_bridge = br-int
  67. tunnel_bridge = br-data
  68. local_ip = 10.26.0.43
  69. bridge_mappings = physnet0:br-ex
  70. [agent]
  71. tunnel_types = gre
  72. [securitygroup]
  73. enable_security_group = True
  74. enable_ipset = True
  75. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  76.  
  77. ================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement