Advertisement
Guest User

ml2_conf.ini

a guest
Dec 6th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.55 KB | None | 0 0
  1. root@novalink:/home/novalink# cat /etc/neutron/plugins/ml2/ml2_conf.ini
  2. [DEFAULT]
  3.  
  4. #
  5. # From oslo.log
  6. #
  7.  
  8. # If set to true, the logging level will be set to DEBUG instead of the default
  9. # INFO level. (boolean value)
  10. #debug = false
  11.  
  12. # If set to false, the logging level will be set to WARNING instead of the
  13. # default INFO level. (boolean value)
  14. # This option is deprecated for removal.
  15. # Its value may be silently ignored in the future.
  16. #verbose = true
  17.  
  18. # The name of a logging configuration file. This file is appended to any
  19. # existing logging configuration files. For details about logging configuration
  20. # files, see the Python logging module documentation. Note that when logging
  21. # configuration files are used then all logging configuration is set in the
  22. # configuration file and other logging configuration options are ignored (for
  23. # example, logging_context_format_string). (string value)
  24. # Deprecated group/name - [DEFAULT]/log_config
  25. #log_config_append = <None>
  26.  
  27. # Defines the format string for %%(asctime)s in log records. Default:
  28. # %(default)s . This option is ignored if log_config_append is set. (string
  29. # value)
  30. #log_date_format = %Y-%m-%d %H:%M:%S
  31.  
  32. # (Optional) Name of log file to send logging output to. If no default is set,
  33. # logging will go to stderr as defined by use_stderr. This option is ignored if
  34. # log_config_append is set. (string value)
  35. # Deprecated group/name - [DEFAULT]/logfile
  36. #log_file = <None>
  37.  
  38. # (Optional) The base directory used for relative log_file paths. This option
  39. # is ignored if log_config_append is set. (string value)
  40. # Deprecated group/name - [DEFAULT]/logdir
  41. #log_dir = <None>
  42.  
  43. # Uses logging handler designed to watch file system. When log file is moved or
  44. # removed this handler will open a new log file with specified path
  45. # instantaneously. It makes sense only if log_file option is specified and
  46. # Linux platform is used. This option is ignored if log_config_append is set.
  47. # (boolean value)
  48. #watch_log_file = false
  49.  
  50. # Use syslog for logging. Existing syslog format is DEPRECATED and will be
  51. # changed later to honor RFC5424. This option is ignored if log_config_append
  52. # is set. (boolean value)
  53. #use_syslog = false
  54.  
  55. # Syslog facility to receive log lines. This option is ignored if
  56. # log_config_append is set. (string value)
  57. #syslog_log_facility = LOG_USER
  58.  
  59. # Log output to standard error. This option is ignored if log_config_append is
  60. # set. (boolean value)
  61. #use_stderr = true
  62.  
  63. # Format string to use for log messages with context. (string value)
  64. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  65.  
  66. # Format string to use for log messages when context is undefined. (string
  67. # value)
  68. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  69.  
  70. # Additional data to append to log message when logging level for the message
  71. # is DEBUG. (string value)
  72. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  73.  
  74. # Prefix each line of exception output with this format. (string value)
  75. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
  76.  
  77. # Defines the format string for %(user_identity)s that is used in
  78. # logging_context_format_string. (string value)
  79. #logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
  80.  
  81. # List of package logging levels in logger=LEVEL pairs. This option is ignored
  82. # if log_config_append is set. (list value)
  83. #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
  84.  
  85. # Enables or disables publication of error events. (boolean value)
  86. #publish_errors = false
  87.  
  88. # The format for an instance that is passed with the log message. (string
  89. # value)
  90. #instance_format = "[instance: %(uuid)s] "
  91.  
  92. # The format for an instance UUID that is passed with the log message. (string
  93. # value)
  94. #instance_uuid_format = "[instance: %(uuid)s] "
  95.  
  96. # Enables or disables fatal status of deprecations. (boolean value)
  97. #fatal_deprecations = false
  98.  
  99.  
  100. [ml2]
  101.  
  102. #
  103. # From neutron.ml2
  104. #
  105.  
  106. # List of network type driver entrypoints to be loaded from the
  107. # neutron.ml2.type_drivers namespace. (list value)
  108. #type_drivers = local,flat,vlan,gre,vxlan,geneve
  109.  
  110. # Ordered list of network_types to allocate as tenant networks. The default
  111. # value 'local' is useful for single-box testing but provides no connectivity
  112. # between hosts. (list value)
  113. #tenant_network_types = local
  114.  
  115. # An ordered list of networking mechanism driver entrypoints to be loaded from
  116. # the neutron.ml2.mechanism_drivers namespace. (list value)
  117. mechanism_drivers =pvm_sea
  118.  
  119. # An ordered list of extension driver entrypoints to be loaded from the
  120. # neutron.ml2.extension_drivers namespace. For example: extension_drivers =
  121. # port_security,qos (list value)
  122. #extension_drivers =
  123.  
  124. # Maximum size of an IP packet (MTU) that can traverse the underlying physical
  125. # network infrastructure without fragmentation for overlay/tunnel networks. In
  126. # most cases, use the same value as the global_physnet_mtu option. (integer
  127. # value)
  128. #path_mtu = 1500
  129.  
  130. # A list of mappings of physical networks to MTU values. The format of the
  131. # mapping is <physnet>:<mtu val>. This mapping allows specifying a physical
  132. # network MTU value that differs from the default global_physnet_mtu value.
  133. # (list value)
  134. #physical_network_mtus =
  135.  
  136. # Default network type for external networks when no provider attributes are
  137. # specified. By default it is None, which means that if provider attributes are
  138. # not specified while creating external networks then they will have the same
  139. # type as tenant networks. Allowed values for external_network_type config
  140. # option depend on the network type values configured in type_drivers config
  141. # option. (string value)
  142. #external_network_type = <None>
  143.  
  144.  
  145. [ml2_type_flat]
  146.  
  147. #
  148. # From neutron.ml2
  149. #
  150.  
  151. # List of physical_network names with which flat networks can be created. Use
  152. # default '*' to allow flat networks with arbitrary physical_network names. Use
  153. # an empty list to disable flat networks. (list value)
  154. #flat_networks = *
  155.  
  156.  
  157. [ml2_type_geneve]
  158.  
  159. #
  160. # From neutron.ml2
  161. #
  162.  
  163. # Comma-separated list of <vni_min>:<vni_max> tuples enumerating ranges of
  164. # Geneve VNI IDs that are available for tenant network allocation (list value)
  165. #vni_ranges =
  166.  
  167. # Geneve encapsulation header size is dynamic, this value is used to calculate
  168. # the maximum MTU for the driver. This is the sum of the sizes of the outer ETH
  169. # + IP + UDP + GENEVE header sizes. The default size for this field is 50,
  170. # which is the size of the Geneve header without any additional option headers.
  171. # (integer value)
  172. #max_header_size = 50
  173.  
  174.  
  175. [ml2_type_gre]
  176.  
  177. #
  178. # From neutron.ml2
  179. #
  180.  
  181. # Comma-separated list of <tun_min>:<tun_max> tuples enumerating ranges of GRE
  182. # tunnel IDs that are available for tenant network allocation (list value)
  183. #tunnel_id_ranges =
  184.  
  185.  
  186. [ml2_type_vlan]
  187.  
  188. #
  189. # From neutron.ml2
  190. #
  191.  
  192. # List of <physical_network>:<vlan_min>:<vlan_max> or <physical_network>
  193. # specifying physical_network names usable for VLAN provider and tenant
  194. # networks, as well as ranges of VLAN tags on each available for allocation to
  195. # tenant networks. (list value)
  196. #network_vlan_ranges =
  197.  
  198.  
  199. [ml2_type_vxlan]
  200.  
  201. #
  202. # From neutron.ml2
  203. #
  204.  
  205. # Comma-separated list of <vni_min>:<vni_max> tuples enumerating ranges of
  206. # VXLAN VNI IDs that are available for tenant network allocation (list value)
  207. #vni_ranges =
  208.  
  209. # Multicast group for VXLAN. When configured, will enable sending all broadcast
  210. # traffic to this multicast group. When left unconfigured, will disable
  211. # multicast VXLAN mode. (string value)
  212. #vxlan_group = <None>
  213.  
  214.  
  215. [securitygroup]
  216.  
  217. #
  218. # From neutron.ml2
  219. #
  220.  
  221. # Driver for security groups firewall in the L2 agent (string value)
  222. #firewall_driver = <None>
  223.  
  224. # Controls whether the neutron security group API is enabled in the server. It
  225. # should be false when using no security groups or using the nova security
  226. # group API. (boolean value)
  227. #enable_security_group = true
  228.  
  229. # Use ipset to speed-up the iptables based security groups. Enabling ipset
  230. # support requires that ipset is installed on L2 agent node. (boolean value)
  231. #enable_ipset = true
  232. root@novalink:/home/novalink#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement