Advertisement
aplawson

compute-ml2_conf.ini

Mar 16th, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. [ml2]
  2. # (ListOpt) List of network type driver entrypoints to be loaded from
  3. # the neutron.ml2.type_drivers namespace.
  4. #
  5. type_drivers = vlan
  6. # Example: type_drivers = flat,vlan,gre,vxlan
  7.  
  8. # (ListOpt) Ordered list of network_types to allocate as tenant
  9. # networks. The default value 'local' is useful for single-box testing
  10. # but provides no connectivity between hosts.
  11. #
  12. tenant_network_types = vlan
  13. # Example: tenant_network_types = vlan,gre,vxlan
  14.  
  15. # (ListOpt) Ordered list of networking mechanism driver entrypoints
  16. # to be loaded from the neutron.ml2.mechanism_drivers namespace.
  17. mechanism_drivers = openvswitch,linuxbridge
  18. # Example: mechanism_drivers = openvswitch,mlnx
  19. # Example: mechanism_drivers = arista
  20. # Example: mechanism_drivers = cisco,logger
  21. # Example: mechanism_drivers = openvswitch,brocade
  22. # Example: mechanism_drivers = linuxbridge,brocade
  23.  
  24. [ml2_type_flat]
  25. # (ListOpt) List of physical_network names with which flat networks
  26. # can be created. Use * to allow flat networks with arbitrary
  27. # physical_network names.
  28. #
  29. # flat_networks =
  30. # Example:flat_networks = physnet1,physnet2
  31. # Example:flat_networks = *
  32.  
  33. [ml2_type_vlan]
  34. # (ListOpt) List of <physical_network>[:<vlan_min>:<vlan_max>] tuples
  35. # specifying physical_network names usable for VLAN provider and
  36. # tenant networks, as well as ranges of VLAN tags on each
  37. # physical_network available for allocation as tenant networks.
  38. #
  39. network_vlan_ranges = physnet2
  40. # Example: network_vlan_ranges = physnet1:1000:2999,physnet2
  41.  
  42. [ml2_type_gre]
  43. # (ListOpt) Comma-separated list of <tun_min>:<tun_max> tuples enumerating ranges of GRE tunnel IDs that are available for tenant network allocation
  44. # tunnel_id_ranges =
  45.  
  46. [ml2_type_vxlan]
  47. # (ListOpt) Comma-separated list of <vni_min>:<vni_max> tuples enumerating
  48. # ranges of VXLAN VNI IDs that are available for tenant network allocation.
  49. #
  50. # vni_ranges =
  51.  
  52. # (StrOpt) Multicast group for the VXLAN interface. When configured, will
  53. # enable sending all broadcast traffic to this multicast group. When left
  54. # unconfigured, will disable multicast VXLAN mode.
  55. #
  56. # vxlan_group =
  57. # Example: vxlan_group = 239.1.1.1
  58.  
  59. [securitygroup]
  60. # Controls if neutron security group is enabled or not.
  61. # It should be false when you use nova security group.
  62. enable_security_group = TRUE
  63. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  64.  
  65. [ovs]
  66. integration_bridge = br-int
  67. bridge_mappings = physnet2:br-eth2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement