Advertisement
Guest User

conf-neutron

a guest
Mar 18th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. /etc/neutron/plugins/ml2/ml2_conf.ini
  2.  
  3. [ml2]
  4. type_drivers = flat,vlan,vxlan
  5. tenant_network_types = vxlan
  6. mechanism_drivers = linuxbridge,l2population
  7. extension_drivers = port_security
  8. [ml2_type_flat]
  9. flat_networks = public
  10. [ml2_type_vlan]
  11. [ml2_type_gre]
  12. [ml2_type_vxlan]
  13. vni_ranges = 1:1000
  14. [ml2_type_geneve]
  15. [securitygroup]
  16. enable_ipset = True
  17.  
  18. /etc/neutron/plugins/ml2/linuxbridge_agent.ini
  19. [linux_bridge]
  20. physical_interface_mappings = public:eth4
  21. [vxlan]
  22. enable_vxlan = True
  23. local_ip = 10.3.0.2
  24. l2_population = True
  25. [agent]
  26. prevent_arp_spoofing = True
  27. [securitygroup]
  28. enable_security_group = True
  29. firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
  30.  
  31. ifconfig -a | grep eth4 -A 2
  32. eth4 Link encap:Ethernet HWaddr 40:f2:e9:5d:5d:c8
  33. inet addr:10.3.0.2 Bcast:10.3.0.255 Mask:255.255.255.0
  34. inet6 addr: fe80::42f2:e9ff:fe5d:5dc8/64 Scope:Link
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement