Advertisement
travnewmatic

Untitled

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