Guest User

Untitled

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