Advertisement
Guest User

Untitled

a guest
May 16th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.90 KB | None | 0 0
  1. [DEFAULT]
  2. interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
  3. dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
  4. enable_isolated_metadata = True
  5.  
  6. #
  7. # From neutron.base.agent
  8. #
  9.  
  10. # Name of Open vSwitch bridge to use (string value)
  11. #ovs_integration_bridge = br-int
  12.  
  13. # Uses veth for an OVS interface or not. Support kernels with limited namespace
  14. # support (e.g. RHEL 6.5) so long as ovs_use_veth is set to True. (boolean
  15. # value)
  16. #ovs_use_veth = false
  17.  
  18. # MTU setting for device. This option will be removed in Newton. Please use the
  19. # system-wide segment_mtu setting which the agents will take into account when
  20. # wiring VIFs. (integer value)
  21. # This option is deprecated for removal.
  22. # Its value may be silently ignored in the future.
  23. #network_device_mtu = <None>
  24.  
  25. # The driver used to manage the virtual interface. (string value)
  26. #interface_driver = <None>
  27.  
  28. # Timeout in seconds for ovs-vsctl commands. If the timeout expires, ovs
  29. # commands will fail with ALARMCLOCK error. (integer value)
  30. #ovs_vsctl_timeout = 10
  31.  
  32. #
  33. # From neutron.dhcp.agent
  34. #
  35.  
  36. # The DHCP agent will resync its state with Neutron to recover from any
  37. # transient notification or RPC errors. The interval is number of seconds
  38. # between attempts. (integer value)
  39. #resync_interval = 5
  40.  
  41. # The driver used to manage the DHCP server. (string value)
  42. #dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
  43.  
  44. # The DHCP server can assist with providing metadata support on isolated
  45. # networks. Setting this value to True will cause the DHCP server to append
  46. # specific host routes to the DHCP request. The metadata service will only be
  47. # activated when the subnet does not contain any router port. The guest
  48. # instance must be configured to request host routes via DHCP (Option 121).
  49. # This option doesn't have any effect when force_metadata is set to True.
  50. # (boolean value)
  51. #enable_isolated_metadata = false
  52.  
  53. # In some cases the Neutron router is not present to provide the metadata IP
  54. # but the DHCP server can be used to provide this info. Setting this value will
  55. # force the DHCP server to append specific host routes to the DHCP request. If
  56. # this option is set, then the metadata service will be activated for all the
  57. # networks. (boolean value)
  58. #force_metadata = false
  59.  
  60. # Allows for serving metadata requests coming from a dedicated metadata access
  61. # network whose CIDR is 169.254.169.254/16 (or larger prefix), and is connected
  62. # to a Neutron router from which the VMs send metadata:1 request. In this case
  63. # DHCP Option 121 will not be injected in VMs, as they will be able to reach
  64. # 169.254.169.254 through a router. This option requires
  65. # enable_isolated_metadata = True. (boolean value)
  66. #enable_metadata_network = false
  67.  
  68. # Number of threads to use during sync process. Should not exceed connection
  69. # pool size configured on server. (integer value)
  70. #num_sync_threads = 4
  71.  
  72. # Location to store DHCP server config files. (string value)
  73. #dhcp_confs = $state_path/dhcp
  74.  
  75. # Domain to use for building the hostnames. This option is deprecated. It has
  76. # been moved to neutron.conf as dns_domain. It will be removed in a future
  77. # release. (string value)
  78. # This option is deprecated for removal.
  79. # Its value may be silently ignored in the future.
  80. #dhcp_domain = openstacklocal
  81.  
  82. # Override the default dnsmasq settings with this file. (string value)
  83. #dnsmasq_config_file =
  84.  
  85. # Comma-separated list of the DNS servers which will be used as forwarders.
  86. # (list value)
  87. # Deprecated group/name - [DEFAULT]/dnsmasq_dns_server
  88. #dnsmasq_dns_servers = <None>
  89.  
  90. # Base log dir for dnsmasq logging. The log contains DHCP and DNS log
  91. # information and is useful for debugging issues with either DHCP or DNS. If
  92. # this section is null, disable dnsmasq log. (string value)
  93. dnsmasq_base_log_dir = /tmp
  94.  
  95. # Enables the dnsmasq service to provide name resolution for instances via DNS
  96. # resolvers on the host running the DHCP agent. Effectively removes the '--no-
  97. # resolv' option from the dnsmasq process arguments. Adding custom DNS
  98. # resolvers to the 'dnsmasq_dns_servers' option disables this feature. (boolean
  99. # value)
  100. #dnsmasq_local_resolv = false
  101.  
  102. # Limit number of leases to prevent a denial-of-service. (integer value)
  103. #dnsmasq_lease_max = 16777216
  104.  
  105. # Use broadcast in DHCP replies. (boolean value)
  106. #dhcp_broadcast_reply = false
  107.  
  108. #
  109. # From oslo.log
  110. #
  111.  
  112. # If set to true, the logging level will be set to DEBUG instead of the default
  113. # INFO level. (boolean value)
  114. debug = True
  115.  
  116. # If set to false, the logging level will be set to WARNING instead of the
  117. # default INFO level. (boolean value)
  118. # This option is deprecated for removal.
  119. # Its value may be silently ignored in the future.
  120. verbose = true
  121.  
  122. # The name of a logging configuration file. This file is appended to any
  123. # existing logging configuration files. For details about logging configuration
  124. # files, see the Python logging module documentation. Note that when logging
  125. # configuration files are used then all logging configuration is set in the
  126. # configuration file and other logging configuration options are ignored (for
  127. # example, logging_context_format_string). (string value)
  128. # Deprecated group/name - [DEFAULT]/log_config
  129. #log_config_append = <None>
  130.  
  131. # Defines the format string for %%(asctime)s in log records. Default:
  132. # %(default)s . This option is ignored if log_config_append is set. (string
  133. # value)
  134. #log_date_format = %Y-%m-%d %H:%M:%S
  135.  
  136. # (Optional) Name of log file to send logging output to. If no default is set,
  137. # logging will go to stderr as defined by use_stderr. This option is ignored if
  138. # log_config_append is set. (string value)
  139. # Deprecated group/name - [DEFAULT]/logfile
  140. #log_file = <None>
  141.  
  142. # (Optional) The base directory used for relative log_file paths. This option
  143. # is ignored if log_config_append is set. (string value)
  144. # Deprecated group/name - [DEFAULT]/logdir
  145. #log_dir = <None>
  146.  
  147. # Uses logging handler designed to watch file system. When log file is moved or
  148. # removed this handler will open a new log file with specified path
  149. # instantaneously. It makes sense only if log_file option is specified and
  150. # Linux platform is used. This option is ignored if log_config_append is set.
  151. # (boolean value)
  152. #watch_log_file = false
  153.  
  154. # Use syslog for logging. Existing syslog format is DEPRECATED and will be
  155. # changed later to honor RFC5424. This option is ignored if log_config_append
  156. # is set. (boolean value)
  157. #use_syslog = false
  158.  
  159. # Syslog facility to receive log lines. This option is ignored if
  160. # log_config_append is set. (string value)
  161. #syslog_log_facility = LOG_USER
  162.  
  163. # Log output to standard error. This option is ignored if log_config_append is
  164. # set. (boolean value)
  165. #use_stderr = true
  166.  
  167. # Format string to use for log messages with context. (string value)
  168. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  169.  
  170. # Format string to use for log messages when context is undefined. (string
  171. # value)
  172. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  173.  
  174. # Additional data to append to log message when logging level for the message
  175. # is DEBUG. (string value)
  176. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  177.  
  178. # Prefix each line of exception output with this format. (string value)
  179. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
  180.  
  181. # Defines the format string for %(user_identity)s that is used in
  182. # logging_context_format_string. (string value)
  183. #logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
  184.  
  185. # List of package logging levels in logger=LEVEL pairs. This option is ignored
  186. # if log_config_append is set. (list value)
  187. #default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO
  188.  
  189. # Enables or disables publication of error events. (boolean value)
  190. #publish_errors = false
  191.  
  192. # The format for an instance that is passed with the log message. (string
  193. # value)
  194. #instance_format = "[instance: %(uuid)s] "
  195.  
  196. # The format for an instance UUID that is passed with the log message. (string
  197. # value)
  198. #instance_uuid_format = "[instance: %(uuid)s] "
  199.  
  200. # Enables or disables fatal status of deprecations. (boolean value)
  201. #fatal_deprecations = false
  202.  
  203.  
  204. [AGENT]
  205.  
  206. #
  207. # From neutron.base.agent
  208. #
  209.  
  210. # Seconds between nodes reporting state to server; should be less than
  211. # agent_down_time, best if it is half or less than agent_down_time. (floating
  212. # point value)
  213. #report_interval = 30
  214.  
  215. # Log agent heartbeats (boolean value)
  216. #log_agent_heartbeats = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement