Advertisement
Guest User

Untitled

a guest
Jul 18th, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. [DEFAULT]
  2. # Show debugging output in log (sets DEBUG log level output)
  3. #debug = true
  4. debug = false
  5.  
  6. # The DHCP agent will resync its state with Quantum to recover from any
  7. # transient notification or rpc errors. The interval is number of
  8. # seconds between attempts.
  9. # resync_interval = 5
  10. resync_interval = 30
  11.  
  12. # The DHCP requires that an inteface driver be set. Choose the one that best
  13. # matches you plugin.
  14.  
  15. # OVS based plugins(OVS, Ryu, NEC, NVP, BigSwitch/Floodlight)
  16. interface_driver = quantum.agent.linux.interface.OVSInterfaceDriver
  17. # OVS based plugins(Ryu, NEC, NVP, BigSwitch/Floodlight) that use OVS
  18. # as OpenFlow switch and check port status
  19. ovs_use_veth = True
  20. # LinuxBridge
  21. interface_driver = quantum.agent.linux.interface.BridgeInterfaceDriver
  22.  
  23. # The agent can use other DHCP drivers. Dnsmasq is the simplest and requires
  24. # no additional setup of the DHCP server.
  25. dhcp_driver = quantum.agent.linux.dhcp.Dnsmasq
  26.  
  27. # Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
  28. # iproute2 package that supports namespaces).
  29. # use_namespaces = True
  30. use_namespaces = True
  31.  
  32. # The DHCP server can assist with providing metadata support on isolated
  33. # networks. Setting this value to True will cause the DHCP server to append
  34. # specific host routes to the DHCP request. The metadata service will only
  35. # be activated when the subnet gateway_ip is None. The guest instance must
  36. # be configured to request host routes via DHCP (Option 121).
  37. # enable_isolated_metadata = False
  38.  
  39. # Allows for serving metadata requests coming from a dedicated metadata
  40. # access network whose cidr is 169.254.169.254/16 (or larger prefix), and
  41. # is connected to a Quantum router from which the VMs send metadata
  42. # request. In this case DHCP Option 121 will not be injected in VMs, as
  43. # they will be able to reach 169.254.169.254 through a router.
  44. # This option requires enable_isolated_metadata = True
  45. # enable_metadata_network = False
  46. state_path=/var/lib/quantum
  47.  
  48. root_helper = sudo /usr/bin/quantum-rootwrap /etc/quantum/rootwrap.conf
  49.  
  50. dnsmasq_config_file = /etc/quantum/dnsmasq.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement