Advertisement
Guest User

Untitled

a guest
May 26th, 2014
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. [root@openstackctl neutron]# cat /etc/neutron/l3_agent.ini
  2. [DEFAULT]
  3. # Show debugging output in log (sets DEBUG log level output)
  4. # debug = False
  5.  
  6. # L3 requires that an interface driver be set. Choose the one that best
  7. # matches your plugin.
  8. # interface_driver =
  9.  
  10. # Example of interface_driver option for OVS based plugins (OVS, Ryu, NEC)
  11. # that supports L3 agent
  12. # interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
  13.  
  14. # Use veth for an OVS interface or not.
  15. # Support kernels with limited namespace support
  16. # (e.g. RHEL 6.5) so long as ovs_use_veth is set to True.
  17. # ovs_use_veth = False
  18.  
  19. # Example of interface_driver option for LinuxBridge
  20. # interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
  21.  
  22. # Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
  23. # iproute2 package that supports namespaces).
  24. # use_namespaces = True
  25.  
  26. # If use_namespaces is set as False then the agent can only configure one router.
  27.  
  28. # This is done by setting the specific router_id.
  29. # router_id =
  30.  
  31. # Each L3 agent can be associated with at most one external network. This
  32. # value should be set to the UUID of that external network. If empty,
  33. # the agent will enforce that only a single external networks exists and
  34. # use that external network id
  35. # gateway_external_network_id =
  36.  
  37. # Indicates that this L3 agent should also handle routers that do not have
  38. # an external network gateway configured. This option should be True only
  39. # for a single agent in a Neutron deployment, and may be False for all agents
  40. # if all routers must have an external network gateway
  41. # handle_internal_only_routers = True
  42.  
  43. # Name of bridge used for external network traffic. This should be set to
  44. # empty value for the linux bridge
  45. # external_network_bridge = br-ex
  46.  
  47. # TCP Port used by Neutron metadata server
  48. # metadata_port = 9697
  49.  
  50. # Send this many gratuitous ARPs for HA setup. Set it below or equal to 0
  51. # to disable this feature.
  52. # send_arp_for_ha = 3
  53.  
  54. # seconds between re-sync routers' data if needed
  55. # periodic_interval = 40
  56.  
  57. # seconds to start to sync routers' data after
  58. # starting agent
  59. # periodic_fuzzy_delay = 5
  60.  
  61. # enable_metadata_proxy, which is true by default, can be set to False
  62. # if the Nova metadata server is not available
  63. # enable_metadata_proxy = True
  64.  
  65. # Location of Metadata Proxy UNIX domain socket
  66. # metadata_proxy_socket = $state_path/metadata_proxy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement