Advertisement
Guest User

Untitled

a guest
Jan 19th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 50.28 KB | None | 0 0
  1. [DEFAULT]
  2. api_workers = 2
  3. notify_nova_on_port_data_changes = True
  4. notify_nova_on_port_status_changes = True
  5. auth_strategy = keystone
  6. allow_overlapping_ips = True
  7. debug = True
  8. verbose = True
  9. service_plugins = neutron.services.l3_router.l3_router_plugin.L3RouterPlugin
  10. core_plugin = neutron.plugins.ml2.plugin.Ml2Plugin
  11. rpc_backend = rabbit
  12. logging_exception_prefix = %(color)s%(asctime)s.%(msecs)03d TRACE %(name)s %(instance)s
  13. logging_debug_format_suffix = from (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d
  14. logging_default_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s
  15. logging_context_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [%(request_id)s %(user_name)s %(project_id)s%(color)s] %(instance)s%(color)s%(message)s
  16. bind_host = 0.0.0.0
  17. use_syslog = False
  18. state_path = /opt/stack/data/neutron
  19. notification_driver = neutron.openstack.common.notifier.rpc_notifier
  20. notification_topics = monitor
  21.  
  22. #
  23. # From neutron
  24. #
  25.  
  26. # Where to store Neutron state files. This directory must be writable by the
  27. # agent. (string value)
  28. #state_path = /var/lib/neutron
  29.  
  30. # The host IP to bind to (string value)
  31. #bind_host = 0.0.0.0
  32.  
  33. # The port to bind to (port value)
  34. # Minimum value: 1
  35. # Maximum value: 65535
  36. #bind_port = 9696
  37.  
  38. # The path for API extensions. Note that this can be a colon-separated list of
  39. # paths. For example: api_extensions_path =
  40. # extensions:/path/to/more/exts:/even/more/exts. The __path__ of
  41. # neutron.extensions is appended to this, so if your extensions are in there
  42. # you don't need to specify them here. (string value)
  43. #api_extensions_path =
  44.  
  45. # The type of authentication to use (string value)
  46. #auth_strategy = keystone
  47.  
  48. # The core plugin Neutron will use (string value)
  49. #core_plugin = <None>
  50.  
  51. # The service plugins Neutron will use (list value)
  52. #service_plugins =
  53.  
  54. # The base MAC address Neutron will use for VIFs. The first 3 octets will
  55. # remain unchanged. If the 4th octet is not 00, it will also be used. The
  56. # others will be randomly generated. (string value)
  57. #base_mac = fa:16:3e:00:00:00
  58.  
  59. # How many times Neutron will retry MAC generation (integer value)
  60. #mac_generation_retries = 16
  61.  
  62. # Allow the usage of the bulk API (boolean value)
  63. #allow_bulk = true
  64.  
  65. # Allow the usage of the pagination (boolean value)
  66. #allow_pagination = false
  67.  
  68. # Allow the usage of the sorting (boolean value)
  69. #allow_sorting = false
  70.  
  71. # The maximum number of items returned in a single response, value was
  72. # 'infinite' or negative integer means no limit (string value)
  73. #pagination_max_limit = -1
  74.  
  75. # Default value of availability zone hints. The availability zone aware
  76. # schedulers use this when the resources availability_zone_hints is empty.
  77. # Multiple availability zones can be specified by a comma separated string.
  78. # This value can be empty. In this case, even if availability_zone_hints for a
  79. # resource is empty, availability zone is considered for high availability
  80. # while scheduling the resource. (list value)
  81. #default_availability_zones =
  82.  
  83. # Maximum number of DNS nameservers per subnet (integer value)
  84. #max_dns_nameservers = 5
  85.  
  86. # Maximum number of host routes per subnet (integer value)
  87. #max_subnet_host_routes = 20
  88.  
  89. # Maximum number of fixed ips per port. This option is deprecated and will be
  90. # removed in the N release. (integer value)
  91. # This option is deprecated for removal.
  92. # Its value may be silently ignored in the future.
  93. #max_fixed_ips_per_port = 5
  94.  
  95. # Default IPv4 subnet pool to be used for automatic subnet CIDR allocation.
  96. # Specifies by UUID the pool to be used in case where creation of a subnet is
  97. # being called without a subnet pool ID. If not set then no pool will be used
  98. # unless passed explicitly to the subnet create. If no pool is used, then a
  99. # CIDR must be passed to create a subnet and that subnet will not be allocated
  100. # from any pool; it will be considered part of the tenant's private address
  101. # space. This option is deprecated for removal in the N release. (string value)
  102. # This option is deprecated for removal.
  103. # Its value may be silently ignored in the future.
  104. #default_ipv4_subnet_pool = <None>
  105.  
  106. # Default IPv6 subnet pool to be used for automatic subnet CIDR allocation.
  107. # Specifies by UUID the pool to be used in case where creation of a subnet is
  108. # being called without a subnet pool ID. See the description for
  109. # default_ipv4_subnet_pool for more information. This option is deprecated for
  110. # removal in the N release. (string value)
  111. # This option is deprecated for removal.
  112. # Its value may be silently ignored in the future.
  113. #default_ipv6_subnet_pool = <None>
  114.  
  115. # Enables IPv6 Prefix Delegation for automatic subnet CIDR allocation. Set to
  116. # True to enable IPv6 Prefix Delegation for subnet allocation in a PD-capable
  117. # environment. Users making subnet creation requests for IPv6 subnets without
  118. # providing a CIDR or subnetpool ID will be given a CIDR via the Prefix
  119. # Delegation mechanism. Note that enabling PD will override the behavior of the
  120. # default IPv6 subnetpool. (boolean value)
  121. #ipv6_pd_enabled = false
  122.  
  123. # DHCP lease duration (in seconds). Use -1 to tell dnsmasq to use infinite
  124. # lease times. (integer value)
  125. # Deprecated group/name - [DEFAULT]/dhcp_lease_time
  126. #dhcp_lease_duration = 86400
  127.  
  128. # Domain to use for building the hostnames (string value)
  129. #dns_domain = openstacklocal
  130.  
  131. # Allow sending resource operation notification to DHCP agent (boolean value)
  132. #dhcp_agent_notification = true
  133.  
  134. # Allow overlapping IP support in Neutron. Attention: the following parameter
  135. # MUST be set to False if Neutron is being used in conjunction with Nova
  136. # security groups. (boolean value)
  137. #allow_overlapping_ips = false
  138.  
  139. # Hostname to be used by the Neutron server, agents and services running on
  140. # this machine. All the agents and services running on this machine must use
  141. # the same host value. (string value)
  142. #host = example.domain
  143.  
  144. # Ensure that configured gateway is on subnet. For IPv6, validate only if
  145. # gateway is not a link local address. (boolean value)
  146. #force_gateway_on_subnet = true
  147.  
  148. # Send notification to nova when port status changes (boolean value)
  149. #notify_nova_on_port_status_changes = true
  150.  
  151. # Send notification to nova when port data (fixed_ips/floatingip) changes so
  152. # nova can update its cache. (boolean value)
  153. #notify_nova_on_port_data_changes = true
  154.  
  155. # Number of seconds between sending events to nova if there are any events to
  156. # send. (integer value)
  157. #send_events_interval = 2
  158.  
  159. # If True, effort is made to advertise MTU settings to VMs via network methods
  160. # (DHCP and RA MTU options) when the network's preferred MTU is known. (boolean
  161. # value)
  162. #advertise_mtu = false
  163.  
  164. # Neutron IPAM (IP address management) driver to use. If ipam_driver is not set
  165. # (default behavior), no IPAM driver is used. In order to use the reference
  166. # implementation of Neutron IPAM driver, use 'internal'. (string value)
  167. #ipam_driver = <None>
  168.  
  169. # If True, then allow plugins that support it to create VLAN transparent
  170. # networks. (boolean value)
  171. #vlan_transparent = false
  172.  
  173. # Number of backlog requests to configure the socket with (integer value)
  174. #backlog = 4096
  175.  
  176. # Number of seconds to keep retrying to listen (integer value)
  177. #retry_until_window = 30
  178.  
  179. # Enable SSL on the API server (boolean value)
  180. #use_ssl = false
  181.  
  182. # Seconds between running periodic tasks (integer value)
  183. #periodic_interval = 40
  184.  
  185. # Number of separate API worker processes for service. If not specified, the
  186. # default is equal to the number of CPUs available for best performance.
  187. # (integer value)
  188. #api_workers = <None>
  189.  
  190. # Number of RPC worker processes for service (integer value)
  191. #rpc_workers = 1
  192.  
  193. # Number of RPC worker processes dedicated to state reports queue (integer
  194. # value)
  195. #rpc_state_report_workers = 1
  196.  
  197. # Range of seconds to randomly delay when starting the periodic task scheduler
  198. # to reduce stampeding. (Disable by setting to 0) (integer value)
  199. #periodic_fuzzy_delay = 5
  200.  
  201. #
  202. # From neutron.agent
  203. #
  204.  
  205. # The driver used to manage the virtual interface. (string value)
  206. #interface_driver = <None>
  207.  
  208. # Location for Metadata Proxy UNIX domain socket. (string value)
  209. #metadata_proxy_socket = $state_path/metadata_proxy
  210.  
  211. # User (uid or name) running metadata proxy after its initialization (if empty:
  212. # agent effective user). (string value)
  213. #metadata_proxy_user =
  214.  
  215. # Group (gid or name) running metadata proxy after its initialization (if
  216. # empty: agent effective group). (string value)
  217. #metadata_proxy_group =
  218.  
  219. # Enable/Disable log watch by metadata proxy. It should be disabled when
  220. # metadata_proxy_user/group is not allowed to read/write its log file and
  221. # copytruncate logrotate option must be used if logrotate is enabled on
  222. # metadata proxy log files. Option default value is deduced from
  223. # metadata_proxy_user: watch log is enabled if metadata_proxy_user is agent
  224. # effective user id/name. (boolean value)
  225. #metadata_proxy_watch_log = <None>
  226.  
  227. #
  228. # From neutron.db
  229. #
  230.  
  231. # Seconds to regard the agent is down; should be at least twice
  232. # report_interval, to be sure the agent is down for good. (integer value)
  233. #agent_down_time = 75
  234.  
  235. # Representing the resource type whose load is being reported by the agent.
  236. # This can be "networks", "subnets" or "ports". When specified (Default is
  237. # networks), the server will extract particular load sent as part of its agent
  238. # configuration object from the agent report state, which is the number of
  239. # resources being consumed, at every report_interval.dhcp_load_type can be used
  240. # in combination with network_scheduler_driver =
  241. # neutron.scheduler.dhcp_agent_scheduler.WeightScheduler When the
  242. # network_scheduler_driver is WeightScheduler, dhcp_load_type can be configured
  243. # to represent the choice for the resource being balanced. Example:
  244. # dhcp_load_type=networks (string value)
  245. # Allowed values: networks, subnets, ports
  246. #dhcp_load_type = networks
  247.  
  248. # Agent starts with admin_state_up=False when enable_new_agents=False. In the
  249. # case, user's resources will not be scheduled automatically to the agent until
  250. # admin changes admin_state_up to True. (boolean value)
  251. #enable_new_agents = true
  252.  
  253. # Maximum number of routes per router (integer value)
  254. #max_routes = 30
  255.  
  256. # Define the default value of enable_snat if not provided in
  257. # external_gateway_info. (boolean value)
  258. #enable_snat_by_default = true
  259.  
  260. # Driver to use for scheduling network to DHCP agent (string value)
  261. #network_scheduler_driver = neutron.scheduler.dhcp_agent_scheduler.WeightScheduler
  262.  
  263. # Allow auto scheduling networks to DHCP agent. (boolean value)
  264. #network_auto_schedule = true
  265.  
  266. # Automatically remove networks from offline DHCP agents. (boolean value)
  267. #allow_automatic_dhcp_failover = true
  268.  
  269. # Number of DHCP agents scheduled to host a tenant network. If this number is
  270. # greater than 1, the scheduler automatically assigns multiple DHCP agents for
  271. # a given tenant network, providing high availability for DHCP service.
  272. # (integer value)
  273. #dhcp_agents_per_network = 1
  274.  
  275. # Enable services on an agent with admin_state_up False. If this option is
  276. # False, when admin_state_up of an agent is turned False, services on it will
  277. # be disabled. Agents with admin_state_up False are not selected for automatic
  278. # scheduling regardless of this option. But manual scheduling to such agents is
  279. # available if this option is True. (boolean value)
  280. #enable_services_on_agents_with_admin_state_down = false
  281.  
  282. # The base mac address used for unique DVR instances by Neutron. The first 3
  283. # octets will remain unchanged. If the 4th octet is not 00, it will also be
  284. # used. The others will be randomly generated. The 'dvr_base_mac' *must* be
  285. # different from 'base_mac' to avoid mixing them up with MAC's allocated for
  286. # tenant ports. A 4 octet example would be dvr_base_mac = fa:16:3f:4f:00:00.
  287. # The default is 3 octet (string value)
  288. #dvr_base_mac = fa:16:3f:00:00:00
  289.  
  290. # System-wide flag to determine the type of router that tenants can create.
  291. # Only admin can override. (boolean value)
  292. #router_distributed = false
  293.  
  294. # Driver to use for scheduling router to a default L3 agent (string value)
  295. #router_scheduler_driver = neutron.scheduler.l3_agent_scheduler.LeastRoutersScheduler
  296.  
  297. # Allow auto scheduling of routers to L3 agent. (boolean value)
  298. #router_auto_schedule = true
  299.  
  300. # Automatically reschedule routers from offline L3 agents to online L3 agents.
  301. # (boolean value)
  302. #allow_automatic_l3agent_failover = false
  303.  
  304. # Enable HA mode for virtual routers. (boolean value)
  305. #l3_ha = false
  306.  
  307. # Maximum number of L3 agents which a HA router will be scheduled on. If it is
  308. # set to 0 then the router will be scheduled on every agent. (integer value)
  309. #max_l3_agents_per_router = 3
  310.  
  311. # Minimum number of L3 agents which a HA router will be scheduled on. If it is
  312. # set to 0 then the router will be scheduled on every agent. (integer value)
  313. #min_l3_agents_per_router = 2
  314.  
  315. # Subnet used for the l3 HA admin network. (string value)
  316. #l3_ha_net_cidr = 169.254.192.0/18
  317.  
  318. # The network type to use when creating the HA network for an HA router. By
  319. # default or if empty, the first 'tenant_network_types' is used. This is
  320. # helpful when the VRRP traffic should use a specific network which is not the
  321. # default one. (string value)
  322. #l3_ha_network_type =
  323.  
  324. # The physical network name with which the HA network can be created. (string
  325. # value)
  326. #l3_ha_network_physical_name =
  327.  
  328. #
  329. # From neutron.extensions
  330. #
  331.  
  332. # Maximum number of allowed address pairs (integer value)
  333. #max_allowed_address_pair = 10
  334.  
  335. #
  336. # From neutron.qos
  337. #
  338.  
  339. # Drivers list to use to send the update notification (list value)
  340. #notification_drivers = m,e,s,s,a,g,e,_,q,u,e,u,e
  341.  
  342. #
  343. # From oslo.log
  344. #
  345.  
  346. # Print debugging output (set logging level to DEBUG instead of default INFO
  347. # level). (boolean value)
  348. #debug = false
  349.  
  350. # If set to false, will disable INFO logging level, making WARNING the default.
  351. # (boolean value)
  352. # This option is deprecated for removal.
  353. # Its value may be silently ignored in the future.
  354. #verbose = true
  355.  
  356. # The name of a logging configuration file. This file is appended to any
  357. # existing logging configuration files. For details about logging configuration
  358. # files, see the Python logging module documentation. Note that when logging
  359. # configuration files are used then all logging configuration is set in the
  360. # configuration file and other logging configuration options are ignored (for
  361. # example, log_format). (string value)
  362. # Deprecated group/name - [DEFAULT]/log_config
  363. #log_config_append = <None>
  364.  
  365. # DEPRECATED. A logging.Formatter log message format string which may use any
  366. # of the available logging.LogRecord attributes. This option is deprecated.
  367. # Please use logging_context_format_string and logging_default_format_string
  368. # instead. This option is ignored if log_config_append is set. (string value)
  369. #log_format = <None>
  370.  
  371. # Format string for %%(asctime)s in log records. Default: %(default)s . This
  372. # option is ignored if log_config_append is set. (string value)
  373. #log_date_format = %Y-%m-%d %H:%M:%S
  374.  
  375. # (Optional) Name of log file to output to. If no default is set, logging will
  376. # go to stdout. This option is ignored if log_config_append is set. (string
  377. # value)
  378. # Deprecated group/name - [DEFAULT]/logfile
  379. #log_file = <None>
  380.  
  381. # (Optional) The base directory used for relative --log-file paths. This option
  382. # is ignored if log_config_append is set. (string value)
  383. # Deprecated group/name - [DEFAULT]/logdir
  384. #log_dir = <None>
  385.  
  386. # (Optional) Uses logging handler designed to watch file system. When log file
  387. # is moved or removed this handler will open a new log file with specified path
  388. # instantaneously. It makes sense only if log-file option is specified and
  389. # Linux platform is used. This option is ignored if log_config_append is set.
  390. # (boolean value)
  391. #watch_log_file = false
  392.  
  393. # Use syslog for logging. Existing syslog format is DEPRECATED and will be
  394. # changed later to honor RFC5424. This option is ignored if log_config_append
  395. # is set. (boolean value)
  396. #use_syslog = false
  397.  
  398. # (Optional) Enables or disables syslog rfc5424 format for logging. If enabled,
  399. # prefixes the MSG part of the syslog message with APP-NAME (RFC5424). The
  400. # format without the APP-NAME is deprecated in Kilo, and will be removed in
  401. # Mitaka, along with this option. This option is ignored if log_config_append
  402. # is set. (boolean value)
  403. # This option is deprecated for removal.
  404. # Its value may be silently ignored in the future.
  405. #use_syslog_rfc_format = true
  406.  
  407. # Syslog facility to receive log lines. This option is ignored if
  408. # log_config_append is set. (string value)
  409. #syslog_log_facility = LOG_USER
  410.  
  411. # Log output to standard error. This option is ignored if log_config_append is
  412. # set. (boolean value)
  413. #use_stderr = true
  414.  
  415. # Format string to use for log messages with context. (string value)
  416. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  417.  
  418. # Format string to use for log messages without context. (string value)
  419. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  420.  
  421. # Data to append to log format when level is DEBUG. (string value)
  422. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  423.  
  424. # Prefix each line of exception output with this format. (string value)
  425. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
  426.  
  427. # List of logger=LEVEL pairs. This option is ignored if log_config_append is
  428. # set. (list value)
  429. #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
  430.  
  431. # Enables or disables publication of error events. (boolean value)
  432. #publish_errors = false
  433.  
  434. # The format for an instance that is passed with the log message. (string
  435. # value)
  436. #instance_format = "[instance: %(uuid)s] "
  437.  
  438. # The format for an instance UUID that is passed with the log message. (string
  439. # value)
  440. #instance_uuid_format = "[instance: %(uuid)s] "
  441.  
  442. # Format string for user_identity field of the logging_context_format_string
  443. # (string value)
  444. #logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
  445.  
  446. # Enables or disables fatal status of deprecations. (boolean value)
  447. #fatal_deprecations = false
  448.  
  449. #
  450. # From oslo.messaging
  451. #
  452.  
  453. # Size of RPC connection pool. (integer value)
  454. # Deprecated group/name - [DEFAULT]/rpc_conn_pool_size
  455. #rpc_conn_pool_size = 30
  456.  
  457. # ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP.
  458. # The "host" option should point or resolve to this address. (string value)
  459. #rpc_zmq_bind_address = *
  460.  
  461. # MatchMaker driver. (string value)
  462. #rpc_zmq_matchmaker = redis
  463.  
  464. # Type of concurrency used. Either "native" or "eventlet" (string value)
  465. #rpc_zmq_concurrency = eventlet
  466.  
  467. # Number of ZeroMQ contexts, defaults to 1. (integer value)
  468. #rpc_zmq_contexts = 1
  469.  
  470. # Maximum number of ingress messages to locally buffer per topic. Default is
  471. # unlimited. (integer value)
  472. #rpc_zmq_topic_backlog = <None>
  473.  
  474. # Directory for holding IPC sockets. (string value)
  475. #rpc_zmq_ipc_dir = /var/run/openstack
  476.  
  477. # Name of this node. Must be a valid hostname, FQDN, or IP address. Must match
  478. # "host" option, if running Nova. (string value)
  479. #rpc_zmq_host = localhost
  480.  
  481. # Seconds to wait before a cast expires (TTL). Only supported by impl_zmq.
  482. # (integer value)
  483. #rpc_cast_timeout = 30
  484.  
  485. # The default number of seconds that poll should wait. Poll raises timeout
  486. # exception when timeout expired. (integer value)
  487. #rpc_poll_timeout = 1
  488.  
  489. # Configures zmq-messaging to use proxy with non PUB/SUB patterns. (boolean
  490. # value)
  491. #direct_over_proxy = true
  492.  
  493. # Use PUB/SUB pattern for fanout methods. PUB/SUB always uses proxy. (boolean
  494. # value)
  495. #use_pub_sub = true
  496.  
  497. # Minimal port number for random ports range. (port value)
  498. # Minimum value: 1
  499. # Maximum value: 65535
  500. #rpc_zmq_min_port = 49152
  501.  
  502. # Maximal port number for random ports range. (integer value)
  503. # Minimum value: 1
  504. # Maximum value: 65536
  505. #rpc_zmq_max_port = 65536
  506.  
  507. # Number of retries to find free port number before fail with ZMQBindError.
  508. # (integer value)
  509. #rpc_zmq_bind_port_retries = 100
  510.  
  511. # Host to locate redis. (string value)
  512. #host = 127.0.0.1
  513.  
  514. # Use this port to connect to redis host. (port value)
  515. # Minimum value: 1
  516. # Maximum value: 65535
  517. #port = 6379
  518.  
  519. # Password for Redis server (optional). (string value)
  520. #password =
  521.  
  522. # Size of executor thread pool. (integer value)
  523. # Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
  524. #executor_thread_pool_size = 64
  525.  
  526. # The Drivers(s) to handle sending notifications. Possible values are
  527. # messaging, messagingv2, routing, log, test, noop (multi valued)
  528. # Deprecated group/name - [DEFAULT]/notification_driver
  529. #driver =
  530.  
  531. # A URL representing the messaging driver to use for notifications. If not set,
  532. # we fall back to the same configuration used for RPC. (string value)
  533. # Deprecated group/name - [DEFAULT]/notification_transport_url
  534. #transport_url = <None>
  535.  
  536. # AMQP topic used for OpenStack notifications. (list value)
  537. # Deprecated group/name - [rpc_notifier2]/topics
  538. # Deprecated group/name - [DEFAULT]/notification_topics
  539. #topics = notifications
  540.  
  541. # Seconds to wait for a response from a call. (integer value)
  542. #rpc_response_timeout = 60
  543.  
  544. # A URL representing the messaging driver to use and its full configuration. If
  545. # not set, we fall back to the rpc_backend option and driver specific
  546. # configuration. (string value)
  547. #transport_url = <None>
  548.  
  549. # The messaging driver to use, defaults to rabbit. Other drivers include amqp
  550. # and zmq. (string value)
  551. #rpc_backend = rabbit
  552.  
  553. # The default exchange under which topics are scoped. May be overridden by an
  554. # exchange name specified in the transport_url option. (string value)
  555. #control_exchange = neutron
  556.  
  557. #
  558. # From oslo.service.wsgi
  559. #
  560.  
  561. # File name for the paste.deploy config for api service (string value)
  562. #api_paste_config = api-paste.ini
  563.  
  564. # A python format string that is used as the template to generate log lines.
  565. # The following values can beformatted into it: client_ip, date_time,
  566. # request_line, status_code, body_length, wall_seconds. (string value)
  567. #wsgi_log_format = %(client_ip)s "%(request_line)s" status: %(status_code)s len: %(body_length)s time: %(wall_seconds).7f
  568.  
  569. # Sets the value of TCP_KEEPIDLE in seconds for each server socket. Not
  570. # supported on OS X. (integer value)
  571. #tcp_keepidle = 600
  572.  
  573. # Size of the pool of greenthreads used by wsgi (integer value)
  574. #wsgi_default_pool_size = 1000
  575.  
  576. # Maximum line size of message headers to be accepted. max_header_line may need
  577. # to be increased when using large tokens (typically those generated by the
  578. # Keystone v3 API with big service catalogs). (integer value)
  579. #max_header_line = 16384
  580.  
  581. # If False, closes the client socket connection explicitly. (boolean value)
  582. #wsgi_keep_alive = true
  583.  
  584. # Timeout for client connections' socket operations. If an incoming connection
  585. # is idle for this number of seconds it will be closed. A value of '0' means
  586. # wait forever. (integer value)
  587. #client_socket_timeout = 900
  588.  
  589.  
  590. [agent]
  591. root_helper_daemon = sudo /usr/local/bin/neutron-rootwrap-daemon /etc/neutron/rootwrap.conf
  592. root_helper = sudo /usr/local/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
  593.  
  594. #
  595. # From neutron.agent
  596. #
  597.  
  598. # Root helper application. Use 'sudo neutron-rootwrap
  599. # /etc/neutron/rootwrap.conf' to use the real root filter facility. Change to
  600. # 'sudo' to skip the filtering and just run the command directly. (string
  601. # value)
  602. #root_helper = sudo
  603.  
  604. # Use the root helper when listing the namespaces on a system. This may not be
  605. # required depending on the security configuration. If the root helper is not
  606. # required, set this to False for a performance improvement. (boolean value)
  607. #use_helper_for_ns_read = true
  608.  
  609. # Root helper daemon application to use when possible. (string value)
  610. #root_helper_daemon = <None>
  611.  
  612. # Seconds between nodes reporting state to server; should be less than
  613. # agent_down_time, best if it is half or less than agent_down_time. (floating
  614. # point value)
  615. #report_interval = 30
  616.  
  617. # Log agent heartbeats (boolean value)
  618. #log_agent_heartbeats = false
  619.  
  620. # Add comments to iptables rules. Set to false to disallow the addition of
  621. # comments to generated iptables rules that describe each rule's purpose.
  622. # System must support the iptables comments module for addition of comments.
  623. # (boolean value)
  624. #comment_iptables_rules = true
  625.  
  626. # Action to be executed when a child process dies (string value)
  627. # Allowed values: respawn, exit
  628. #check_child_processes_action = respawn
  629.  
  630. # Interval between checks of child process liveness (seconds), use 0 to disable
  631. # (integer value)
  632. #check_child_processes_interval = 60
  633.  
  634. # Availability zone of this node (string value)
  635. #availability_zone = nova
  636.  
  637.  
  638. [cors]
  639.  
  640. #
  641. # From oslo.middleware.cors
  642. #
  643.  
  644. # Indicate whether this resource may be shared with the domain received in the
  645. # requests "origin" header. (list value)
  646. #allowed_origin = <None>
  647.  
  648. # Indicate that the actual request can include user credentials (boolean value)
  649. #allow_credentials = true
  650.  
  651. # Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
  652. # Headers. (list value)
  653. #expose_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
  654.  
  655. # Maximum cache age of CORS preflight requests. (integer value)
  656. #max_age = 3600
  657.  
  658. # Indicate which methods can be used during the actual request. (list value)
  659. #allow_methods = GET,POST,PUT,DELETE,OPTIONS
  660.  
  661. # Indicate which header field names may be used during the actual request.
  662. # (list value)
  663. #allow_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
  664.  
  665.  
  666. [cors.subdomain]
  667.  
  668. #
  669. # From oslo.middleware.cors
  670. #
  671.  
  672. # Indicate whether this resource may be shared with the domain received in the
  673. # requests "origin" header. (list value)
  674. #allowed_origin = <None>
  675.  
  676. # Indicate that the actual request can include user credentials (boolean value)
  677. #allow_credentials = true
  678.  
  679. # Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
  680. # Headers. (list value)
  681. #expose_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
  682.  
  683. # Maximum cache age of CORS preflight requests. (integer value)
  684. #max_age = 3600
  685.  
  686. # Indicate which methods can be used during the actual request. (list value)
  687. #allow_methods = GET,POST,PUT,DELETE,OPTIONS
  688.  
  689. # Indicate which header field names may be used during the actual request.
  690. # (list value)
  691. #allow_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
  692.  
  693.  
  694. [database]
  695. connection = mysql+pymysql://root:password@127.0.0.1/neutron?charset=utf8
  696.  
  697. #
  698. # From neutron.db
  699. #
  700.  
  701. # Database engine for which script will be generated when using offline
  702. # migration. (string value)
  703. #engine =
  704.  
  705. #
  706. # From oslo.db
  707. #
  708.  
  709. # The file name to use with SQLite. (string value)
  710. # Deprecated group/name - [DEFAULT]/sqlite_db
  711. #sqlite_db = oslo.sqlite
  712.  
  713. # If True, SQLite uses synchronous mode. (boolean value)
  714. # Deprecated group/name - [DEFAULT]/sqlite_synchronous
  715. #sqlite_synchronous = true
  716.  
  717. # The back end to use for the database. (string value)
  718. # Deprecated group/name - [DEFAULT]/db_backend
  719. #backend = sqlalchemy
  720.  
  721. # The SQLAlchemy connection string to use to connect to the database. (string
  722. # value)
  723. # Deprecated group/name - [DEFAULT]/sql_connection
  724. # Deprecated group/name - [DATABASE]/sql_connection
  725. # Deprecated group/name - [sql]/connection
  726. #connection = <None>
  727.  
  728. # The SQLAlchemy connection string to use to connect to the slave database.
  729. # (string value)
  730. #slave_connection = <None>
  731.  
  732. # The SQL mode to be used for MySQL sessions. This option, including the
  733. # default, overrides any server-set SQL mode. To use whatever SQL mode is set
  734. # by the server configuration, set this to no value. Example: mysql_sql_mode=
  735. # (string value)
  736. #mysql_sql_mode = TRADITIONAL
  737.  
  738. # Timeout before idle SQL connections are reaped. (integer value)
  739. # Deprecated group/name - [DEFAULT]/sql_idle_timeout
  740. # Deprecated group/name - [DATABASE]/sql_idle_timeout
  741. # Deprecated group/name - [sql]/idle_timeout
  742. #idle_timeout = 3600
  743.  
  744. # Minimum number of SQL connections to keep open in a pool. (integer value)
  745. # Deprecated group/name - [DEFAULT]/sql_min_pool_size
  746. # Deprecated group/name - [DATABASE]/sql_min_pool_size
  747. #min_pool_size = 1
  748.  
  749. # Maximum number of SQL connections to keep open in a pool. (integer value)
  750. # Deprecated group/name - [DEFAULT]/sql_max_pool_size
  751. # Deprecated group/name - [DATABASE]/sql_max_pool_size
  752. #max_pool_size = <None>
  753.  
  754. # Maximum number of database connection retries during startup. Set to -1 to
  755. # specify an infinite retry count. (integer value)
  756. # Deprecated group/name - [DEFAULT]/sql_max_retries
  757. # Deprecated group/name - [DATABASE]/sql_max_retries
  758. #max_retries = 10
  759.  
  760. # Interval between retries of opening a SQL connection. (integer value)
  761. # Deprecated group/name - [DEFAULT]/sql_retry_interval
  762. # Deprecated group/name - [DATABASE]/reconnect_interval
  763. #retry_interval = 10
  764.  
  765. # If set, use this value for max_overflow with SQLAlchemy. (integer value)
  766. # Deprecated group/name - [DEFAULT]/sql_max_overflow
  767. # Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
  768. #max_overflow = <None>
  769.  
  770. # Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
  771. # value)
  772. # Deprecated group/name - [DEFAULT]/sql_connection_debug
  773. #connection_debug = 0
  774.  
  775. # Add Python stack traces to SQL as comment strings. (boolean value)
  776. # Deprecated group/name - [DEFAULT]/sql_connection_trace
  777. #connection_trace = false
  778.  
  779. # If set, use this value for pool_timeout with SQLAlchemy. (integer value)
  780. # Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
  781. #pool_timeout = <None>
  782.  
  783. # Enable the experimental use of database reconnect on connection lost.
  784. # (boolean value)
  785. #use_db_reconnect = false
  786.  
  787. # Seconds between retries of a database transaction. (integer value)
  788. #db_retry_interval = 1
  789.  
  790. # If True, increases the interval between retries of a database operation up to
  791. # db_max_retry_interval. (boolean value)
  792. #db_inc_retry_interval = true
  793.  
  794. # If db_inc_retry_interval is set, the maximum seconds between retries of a
  795. # database operation. (integer value)
  796. #db_max_retry_interval = 10
  797.  
  798. # Maximum retries in case of connection error or deadlock error before error is
  799. # raised. Set to -1 to specify an infinite retry count. (integer value)
  800. #db_max_retries = 20
  801.  
  802.  
  803. [keystone_authtoken]
  804. signing_dir = /var/cache/neutron
  805. cafile = /opt/stack/data/ca-bundle.pem
  806. auth_uri = http://10.40.20.96:5000
  807. project_domain_id = default
  808. project_name = service
  809. user_domain_id = default
  810. password = password
  811. username = neutron
  812. auth_url = http://10.40.20.96:35357
  813. auth_type = password
  814.  
  815. #
  816. # From keystonemiddleware.auth_token
  817. #
  818.  
  819. # Complete public Identity API endpoint. (string value)
  820. #auth_uri = <None>
  821.  
  822. # API version of the admin Identity API endpoint. (string value)
  823. #auth_version = <None>
  824.  
  825. # Do not handle authorization requests within the middleware, but delegate the
  826. # authorization decision to downstream WSGI components. (boolean value)
  827. #delay_auth_decision = false
  828.  
  829. # Request timeout value for communicating with Identity API server. (integer
  830. # value)
  831. #http_connect_timeout = <None>
  832.  
  833. # How many times are we trying to reconnect when communicating with Identity
  834. # API Server. (integer value)
  835. #http_request_max_retries = 3
  836.  
  837. # Env key for the swift cache. (string value)
  838. #cache = <None>
  839.  
  840. # Required if identity server requires client certificate (string value)
  841. #certfile = <None>
  842.  
  843. # Required if identity server requires client certificate (string value)
  844. #keyfile = <None>
  845.  
  846. # A PEM encoded Certificate Authority to use when verifying HTTPs connections.
  847. # Defaults to system CAs. (string value)
  848. #cafile = <None>
  849.  
  850. # Verify HTTPS connections. (boolean value)
  851. #insecure = false
  852.  
  853. # The region in which the identity server can be found. (string value)
  854. #region_name = <None>
  855.  
  856. # Directory used to cache files related to PKI tokens. (string value)
  857. #signing_dir = <None>
  858.  
  859. # Optionally specify a list of memcached server(s) to use for caching. If left
  860. # undefined, tokens will instead be cached in-process. (list value)
  861. # Deprecated group/name - [DEFAULT]/memcache_servers
  862. #memcached_servers = <None>
  863.  
  864. # In order to prevent excessive effort spent validating tokens, the middleware
  865. # caches previously-seen tokens for a configurable duration (in seconds). Set
  866. # to -1 to disable caching completely. (integer value)
  867. #token_cache_time = 300
  868.  
  869. # Determines the frequency at which the list of revoked tokens is retrieved
  870. # from the Identity service (in seconds). A high number of revocation events
  871. # combined with a low cache duration may significantly reduce performance.
  872. # (integer value)
  873. #revocation_cache_time = 10
  874.  
  875. # (Optional) If defined, indicate whether token data should be authenticated or
  876. # authenticated and encrypted. Acceptable values are MAC or ENCRYPT. If MAC,
  877. # token data is authenticated (with HMAC) in the cache. If ENCRYPT, token data
  878. # is encrypted and authenticated in the cache. If the value is not one of these
  879. # options or empty, auth_token will raise an exception on initialization.
  880. # (string value)
  881. #memcache_security_strategy = <None>
  882.  
  883. # (Optional, mandatory if memcache_security_strategy is defined) This string is
  884. # used for key derivation. (string value)
  885. #memcache_secret_key = <None>
  886.  
  887. # (Optional) Number of seconds memcached server is considered dead before it is
  888. # tried again. (integer value)
  889. #memcache_pool_dead_retry = 300
  890.  
  891. # (Optional) Maximum total number of open connections to every memcached
  892. # server. (integer value)
  893. #memcache_pool_maxsize = 10
  894.  
  895. # (Optional) Socket timeout in seconds for communicating with a memcached
  896. # server. (integer value)
  897. #memcache_pool_socket_timeout = 3
  898.  
  899. # (Optional) Number of seconds a connection to memcached is held unused in the
  900. # pool before it is closed. (integer value)
  901. #memcache_pool_unused_timeout = 60
  902.  
  903. # (Optional) Number of seconds that an operation will wait to get a memcached
  904. # client connection from the pool. (integer value)
  905. #memcache_pool_conn_get_timeout = 10
  906.  
  907. # (Optional) Use the advanced (eventlet safe) memcached client pool. The
  908. # advanced pool will only work under python 2.x. (boolean value)
  909. #memcache_use_advanced_pool = false
  910.  
  911. # (Optional) Indicate whether to set the X-Service-Catalog header. If False,
  912. # middleware will not ask for service catalog on token validation and will not
  913. # set the X-Service-Catalog header. (boolean value)
  914. #include_service_catalog = true
  915.  
  916. # Used to control the use and type of token binding. Can be set to: "disabled"
  917. # to not check token binding. "permissive" (default) to validate binding
  918. # information if the bind type is of a form known to the server and ignore it
  919. # if not. "strict" like "permissive" but if the bind type is unknown the token
  920. # will be rejected. "required" any form of token binding is needed to be
  921. # allowed. Finally the name of a binding method that must be present in tokens.
  922. # (string value)
  923. #enforce_token_bind = permissive
  924.  
  925. # If true, the revocation list will be checked for cached tokens. This requires
  926. # that PKI tokens are configured on the identity server. (boolean value)
  927. #check_revocations_for_cached = false
  928.  
  929. # Hash algorithms to use for hashing PKI tokens. This may be a single algorithm
  930. # or multiple. The algorithms are those supported by Python standard
  931. # hashlib.new(). The hashes will be tried in the order given, so put the
  932. # preferred one first for performance. The result of the first hash will be
  933. # stored in the cache. This will typically be set to multiple values only while
  934. # migrating from a less secure algorithm to a more secure one. Once all the old
  935. # tokens are expired this option should be set to a single value for better
  936. # performance. (list value)
  937. #hash_algorithms = md5
  938.  
  939. # Prefix to prepend at the beginning of the path. Deprecated, use identity_uri.
  940. # (string value)
  941. #auth_admin_prefix =
  942.  
  943. # Host providing the admin Identity API endpoint. Deprecated, use identity_uri.
  944. # (string value)
  945. #auth_host = 127.0.0.1
  946.  
  947. # Port of the admin Identity API endpoint. Deprecated, use identity_uri.
  948. # (integer value)
  949. #auth_port = 35357
  950.  
  951. # Protocol of the admin Identity API endpoint (http or https). Deprecated, use
  952. # identity_uri. (string value)
  953. #auth_protocol = https
  954.  
  955. # Complete admin Identity API endpoint. This should specify the unversioned
  956. # root endpoint e.g. https://localhost:35357/ (string value)
  957. #identity_uri = <None>
  958.  
  959. # This option is deprecated and may be removed in a future release. Single
  960. # shared secret with the Keystone configuration used for bootstrapping a
  961. # Keystone installation, or otherwise bypassing the normal authentication
  962. # process. This option should not be used, use `admin_user` and
  963. # `admin_password` instead. (string value)
  964. #admin_token = <None>
  965.  
  966. # Service username. (string value)
  967. #admin_user = <None>
  968.  
  969. # Service user password. (string value)
  970. #admin_password = <None>
  971.  
  972. # Service tenant name. (string value)
  973. #admin_tenant_name = admin
  974.  
  975. # Authentication type to load (unknown value)
  976. # Deprecated group/name - [DEFAULT]/auth_plugin
  977. #auth_type = <None>
  978.  
  979. # Config Section from which to load plugin specific options (unknown value)
  980. #auth_section = <None>
  981.  
  982.  
  983. [matchmaker_redis]
  984.  
  985. #
  986. # From oslo.messaging
  987. #
  988.  
  989. # Host to locate redis. (string value)
  990. #host = 127.0.0.1
  991.  
  992. # Use this port to connect to redis host. (port value)
  993. # Minimum value: 1
  994. # Maximum value: 65535
  995. #port = 6379
  996.  
  997. # Password for Redis server (optional). (string value)
  998. #password =
  999.  
  1000.  
  1001. [nova]
  1002. region_name = RegionOne
  1003. project_domain_id = default
  1004. project_name = service
  1005. user_domain_id = default
  1006. password = password
  1007. username = nova
  1008. auth_url = http://10.40.20.96:35357
  1009. auth_plugin = password
  1010.  
  1011. #
  1012. # From neutron
  1013. #
  1014.  
  1015. # Name of nova region to use. Useful if keystone manages more than one region.
  1016. # (string value)
  1017. #region_name = <None>
  1018.  
  1019. # Type of the nova endpoint to use. This endpoint will be looked up in the
  1020. # keystone catalog and should be one of public, internal or admin. (string
  1021. # value)
  1022. # Allowed values: public, admin, internal
  1023. #endpoint_type = public
  1024.  
  1025. #
  1026. # From nova.auth
  1027. #
  1028.  
  1029. # Authentication URL (unknown value)
  1030. #auth_url = <None>
  1031.  
  1032. # Authentication type to load (unknown value)
  1033. # Deprecated group/name - [DEFAULT]/auth_plugin
  1034. #auth_type = <None>
  1035.  
  1036. # PEM encoded Certificate Authority to use when verifying HTTPs connections.
  1037. # (string value)
  1038. #cafile = <None>
  1039.  
  1040. # PEM encoded client certificate cert file (string value)
  1041. #certfile = <None>
  1042.  
  1043. # Optional domain ID to use with v3 and v2 parameters. It will be used for both
  1044. # the user and project domain in v3 and ignored in v2 authentication. (unknown
  1045. # value)
  1046. #default_domain_id = <None>
  1047.  
  1048. # Optional domain name to use with v3 API and v2 parameters. It will be used
  1049. # for both the user and project domain in v3 and ignored in v2 authentication.
  1050. # (unknown value)
  1051. #default_domain_name = <None>
  1052.  
  1053. # Domain ID to scope to (unknown value)
  1054. #domain_id = <None>
  1055.  
  1056. # Domain name to scope to (unknown value)
  1057. #domain_name = <None>
  1058.  
  1059. # Verify HTTPS connections. (boolean value)
  1060. #insecure = false
  1061.  
  1062. # PEM encoded client certificate key file (string value)
  1063. #keyfile = <None>
  1064.  
  1065. # User's password (unknown value)
  1066. #password = <None>
  1067.  
  1068. # Domain ID containing project (unknown value)
  1069. #project_domain_id = <None>
  1070.  
  1071. # Domain name containing project (unknown value)
  1072. #project_domain_name = <None>
  1073.  
  1074. # Project ID to scope to (unknown value)
  1075. # Deprecated group/name - [DEFAULT]/tenant-id
  1076. #project_id = <None>
  1077.  
  1078. # Project name to scope to (unknown value)
  1079. # Deprecated group/name - [DEFAULT]/tenant-name
  1080. #project_name = <None>
  1081.  
  1082. # Tenant ID (unknown value)
  1083. #tenant_id = <None>
  1084.  
  1085. # Tenant Name (unknown value)
  1086. #tenant_name = <None>
  1087.  
  1088. # Timeout value for http requests (integer value)
  1089. #timeout = <None>
  1090.  
  1091. # Trust ID (unknown value)
  1092. #trust_id = <None>
  1093.  
  1094. # User's domain id (unknown value)
  1095. #user_domain_id = <None>
  1096.  
  1097. # User's domain name (unknown value)
  1098. #user_domain_name = <None>
  1099.  
  1100. # User id (unknown value)
  1101. #user_id = <None>
  1102.  
  1103. # Username (unknown value)
  1104. # Deprecated group/name - [DEFAULT]/username
  1105. #username = <None>
  1106.  
  1107.  
  1108. [oslo_concurrency]
  1109. lock_path = /opt/stack/data/neutron/lock
  1110.  
  1111. #
  1112. # From oslo.concurrency
  1113. #
  1114.  
  1115. # Enables or disables inter-process locks. (boolean value)
  1116. # Deprecated group/name - [DEFAULT]/disable_process_locking
  1117. #disable_process_locking = false
  1118.  
  1119. # Directory to use for lock files. For security, the specified directory
  1120. # should only be writable by the user running the processes that need locking.
  1121. # Defaults to environment variable OSLO_LOCK_PATH. If external locks are used,
  1122. # a lock path must be set. (string value)
  1123. # Deprecated group/name - [DEFAULT]/lock_path
  1124. #lock_path = <None>
  1125.  
  1126.  
  1127. [oslo_messaging_amqp]
  1128.  
  1129. #
  1130. # From oslo.messaging
  1131. #
  1132.  
  1133. # address prefix used when sending to a specific server (string value)
  1134. # Deprecated group/name - [amqp1]/server_request_prefix
  1135. #server_request_prefix = exclusive
  1136.  
  1137. # address prefix used when broadcasting to all servers (string value)
  1138. # Deprecated group/name - [amqp1]/broadcast_prefix
  1139. #broadcast_prefix = broadcast
  1140.  
  1141. # address prefix when sending to any server in group (string value)
  1142. # Deprecated group/name - [amqp1]/group_request_prefix
  1143. #group_request_prefix = unicast
  1144.  
  1145. # Name for the AMQP container (string value)
  1146. # Deprecated group/name - [amqp1]/container_name
  1147. #container_name = <None>
  1148.  
  1149. # Timeout for inactive connections (in seconds) (integer value)
  1150. # Deprecated group/name - [amqp1]/idle_timeout
  1151. #idle_timeout = 0
  1152.  
  1153. # Debug: dump AMQP frames to stdout (boolean value)
  1154. # Deprecated group/name - [amqp1]/trace
  1155. #trace = false
  1156.  
  1157. # CA certificate PEM file to verify server certificate (string value)
  1158. # Deprecated group/name - [amqp1]/ssl_ca_file
  1159. #ssl_ca_file =
  1160.  
  1161. # Identifying certificate PEM file to present to clients (string value)
  1162. # Deprecated group/name - [amqp1]/ssl_cert_file
  1163. #ssl_cert_file =
  1164.  
  1165. # Private key PEM file used to sign cert_file certificate (string value)
  1166. # Deprecated group/name - [amqp1]/ssl_key_file
  1167. #ssl_key_file =
  1168.  
  1169. # Password for decrypting ssl_key_file (if encrypted) (string value)
  1170. # Deprecated group/name - [amqp1]/ssl_key_password
  1171. #ssl_key_password = <None>
  1172.  
  1173. # Accept clients using either SSL or plain TCP (boolean value)
  1174. # Deprecated group/name - [amqp1]/allow_insecure_clients
  1175. #allow_insecure_clients = false
  1176.  
  1177. # Space separated list of acceptable SASL mechanisms (string value)
  1178. # Deprecated group/name - [amqp1]/sasl_mechanisms
  1179. #sasl_mechanisms =
  1180.  
  1181. # Path to directory that contains the SASL configuration (string value)
  1182. # Deprecated group/name - [amqp1]/sasl_config_dir
  1183. #sasl_config_dir =
  1184.  
  1185. # Name of configuration file (without .conf suffix) (string value)
  1186. # Deprecated group/name - [amqp1]/sasl_config_name
  1187. #sasl_config_name =
  1188.  
  1189. # User name for message broker authentication (string value)
  1190. # Deprecated group/name - [amqp1]/username
  1191. #username =
  1192.  
  1193. # Password for message broker authentication (string value)
  1194. # Deprecated group/name - [amqp1]/password
  1195. #password =
  1196.  
  1197.  
  1198. [oslo_messaging_rabbit]
  1199. rabbit_userid = stackrabbit
  1200. rabbit_password = password
  1201. rabbit_hosts = 10.40.20.96
  1202.  
  1203. #
  1204. # From oslo.messaging
  1205. #
  1206.  
  1207. # Use durable queues in AMQP. (boolean value)
  1208. # Deprecated group/name - [DEFAULT]/amqp_durable_queues
  1209. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  1210. #amqp_durable_queues = false
  1211.  
  1212. # Auto-delete queues in AMQP. (boolean value)
  1213. # Deprecated group/name - [DEFAULT]/amqp_auto_delete
  1214. #amqp_auto_delete = false
  1215.  
  1216. # SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
  1217. # SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
  1218. # distributions. (string value)
  1219. # Deprecated group/name - [DEFAULT]/kombu_ssl_version
  1220. #kombu_ssl_version =
  1221.  
  1222. # SSL key file (valid only if SSL enabled). (string value)
  1223. # Deprecated group/name - [DEFAULT]/kombu_ssl_keyfile
  1224. #kombu_ssl_keyfile =
  1225.  
  1226. # SSL cert file (valid only if SSL enabled). (string value)
  1227. # Deprecated group/name - [DEFAULT]/kombu_ssl_certfile
  1228. #kombu_ssl_certfile =
  1229.  
  1230. # SSL certification authority file (valid only if SSL enabled). (string value)
  1231. # Deprecated group/name - [DEFAULT]/kombu_ssl_ca_certs
  1232. #kombu_ssl_ca_certs =
  1233.  
  1234. # How long to wait before reconnecting in response to an AMQP consumer cancel
  1235. # notification. (floating point value)
  1236. # Deprecated group/name - [DEFAULT]/kombu_reconnect_delay
  1237. #kombu_reconnect_delay = 1.0
  1238.  
  1239. # How long to wait a missing client beforce abandoning to send it its replies.
  1240. # This value should not be longer than rpc_response_timeout. (integer value)
  1241. # Deprecated group/name - [DEFAULT]/kombu_reconnect_timeout
  1242. #kombu_missing_consumer_retry_timeout = 60
  1243.  
  1244. # Determines how the next RabbitMQ node is chosen in case the one we are
  1245. # currently connected to becomes unavailable. Takes effect only if more than
  1246. # one RabbitMQ node is provided in config. (string value)
  1247. # Allowed values: round-robin, shuffle
  1248. #kombu_failover_strategy = round-robin
  1249.  
  1250. # The RabbitMQ broker address where a single node is used. (string value)
  1251. # Deprecated group/name - [DEFAULT]/rabbit_host
  1252. #rabbit_host = localhost
  1253.  
  1254. # The RabbitMQ broker port where a single node is used. (port value)
  1255. # Minimum value: 1
  1256. # Maximum value: 65535
  1257. # Deprecated group/name - [DEFAULT]/rabbit_port
  1258. #rabbit_port = 5672
  1259.  
  1260. # RabbitMQ HA cluster host:port pairs. (list value)
  1261. # Deprecated group/name - [DEFAULT]/rabbit_hosts
  1262. #rabbit_hosts = $rabbit_host:$rabbit_port
  1263.  
  1264. # Connect over SSL for RabbitMQ. (boolean value)
  1265. # Deprecated group/name - [DEFAULT]/rabbit_use_ssl
  1266. #rabbit_use_ssl = false
  1267.  
  1268. # The RabbitMQ userid. (string value)
  1269. # Deprecated group/name - [DEFAULT]/rabbit_userid
  1270. #rabbit_userid = guest
  1271.  
  1272. # The RabbitMQ password. (string value)
  1273. # Deprecated group/name - [DEFAULT]/rabbit_password
  1274. #rabbit_password = guest
  1275.  
  1276. # The RabbitMQ login method. (string value)
  1277. # Deprecated group/name - [DEFAULT]/rabbit_login_method
  1278. #rabbit_login_method = AMQPLAIN
  1279.  
  1280. # The RabbitMQ virtual host. (string value)
  1281. # Deprecated group/name - [DEFAULT]/rabbit_virtual_host
  1282. #rabbit_virtual_host = /
  1283.  
  1284. # How frequently to retry connecting with RabbitMQ. (integer value)
  1285. #rabbit_retry_interval = 1
  1286.  
  1287. # How long to backoff for between retries when connecting to RabbitMQ. (integer
  1288. # value)
  1289. # Deprecated group/name - [DEFAULT]/rabbit_retry_backoff
  1290. #rabbit_retry_backoff = 2
  1291.  
  1292. # Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry
  1293. # count). (integer value)
  1294. # Deprecated group/name - [DEFAULT]/rabbit_max_retries
  1295. #rabbit_max_retries = 0
  1296.  
  1297. # Use HA queues in RabbitMQ (x-ha-policy: all). If you change this option, you
  1298. # must wipe the RabbitMQ database. (boolean value)
  1299. # Deprecated group/name - [DEFAULT]/rabbit_ha_queues
  1300. #rabbit_ha_queues = false
  1301.  
  1302. # Number of seconds after which the Rabbit broker is considered down if
  1303. # heartbeat's keep-alive fails (0 disable the heartbeat). EXPERIMENTAL (integer
  1304. # value)
  1305. #heartbeat_timeout_threshold = 60
  1306.  
  1307. # How often times during the heartbeat_timeout_threshold we check the
  1308. # heartbeat. (integer value)
  1309. #heartbeat_rate = 2
  1310.  
  1311. # Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake (boolean value)
  1312. # Deprecated group/name - [DEFAULT]/fake_rabbit
  1313. #fake_rabbit = false
  1314.  
  1315.  
  1316. [oslo_policy]
  1317. policy_file = /etc/neutron/policy.json
  1318.  
  1319. #
  1320. # From oslo.policy
  1321. #
  1322.  
  1323. # The JSON file that defines policies. (string value)
  1324. # Deprecated group/name - [DEFAULT]/policy_file
  1325. #policy_file = policy.json
  1326.  
  1327. # Default rule. Enforced when a requested rule is not found. (string value)
  1328. # Deprecated group/name - [DEFAULT]/policy_default_rule
  1329. #policy_default_rule = default
  1330.  
  1331. # Directories where policy configuration files are stored. They can be relative
  1332. # to any directory in the search path defined by the config_dir option, or
  1333. # absolute paths. The file defined by policy_file must exist for these
  1334. # directories to be searched. Missing or empty directories are ignored. (multi
  1335. # valued)
  1336. # Deprecated group/name - [DEFAULT]/policy_dirs
  1337. #policy_dirs = policy.d
  1338.  
  1339.  
  1340. [quotas]
  1341.  
  1342. #
  1343. # From neutron
  1344. #
  1345.  
  1346. # Resource name(s) that are supported in quota features. This option is now
  1347. # deprecated for removal. (list value)
  1348. # This option is deprecated for removal.
  1349. # Its value may be silently ignored in the future.
  1350. #quota_items = network,subnet,port
  1351.  
  1352. # Default number of resource allowed per tenant. A negative value means
  1353. # unlimited. (integer value)
  1354. #default_quota = -1
  1355.  
  1356. # Number of networks allowed per tenant. A negative value means unlimited.
  1357. # (integer value)
  1358. #quota_network = 10
  1359.  
  1360. # Number of subnets allowed per tenant, A negative value means unlimited.
  1361. # (integer value)
  1362. #quota_subnet = 10
  1363.  
  1364. # Number of ports allowed per tenant. A negative value means unlimited.
  1365. # (integer value)
  1366. #quota_port = 50
  1367.  
  1368. # Default driver to use for quota checks (string value)
  1369. #quota_driver = neutron.db.quota.driver.DbQuotaDriver
  1370.  
  1371. # Keep in track in the database of current resourcequota usage. Plugins which
  1372. # do not leverage the neutron database should set this flag to False (boolean
  1373. # value)
  1374. #track_quota_usage = true
  1375.  
  1376. #
  1377. # From neutron.extensions
  1378. #
  1379.  
  1380. # Number of routers allowed per tenant. A negative value means unlimited.
  1381. # (integer value)
  1382. #quota_router = 10
  1383.  
  1384. # Number of floating IPs allowed per tenant. A negative value means unlimited.
  1385. # (integer value)
  1386. #quota_floatingip = 50
  1387.  
  1388. # Number of security groups allowed per tenant. A negative value means
  1389. # unlimited. (integer value)
  1390. #quota_security_group = 10
  1391.  
  1392. # Number of security rules allowed per tenant. A negative value means
  1393. # unlimited. (integer value)
  1394. #quota_security_group_rule = 100
  1395.  
  1396.  
  1397. [ssl]
  1398.  
  1399. #
  1400. # From oslo.service.sslutils
  1401. #
  1402.  
  1403. # CA certificate file to use to verify connecting clients. (string value)
  1404. # Deprecated group/name - [DEFAULT]/ssl_ca_file
  1405. #ca_file = <None>
  1406.  
  1407. # Certificate file to use when starting the server securely. (string value)
  1408. # Deprecated group/name - [DEFAULT]/ssl_cert_file
  1409. #cert_file = <None>
  1410.  
  1411. # Private key file to use when starting the server securely. (string value)
  1412. # Deprecated group/name - [DEFAULT]/ssl_key_file
  1413. #key_file = <None>
  1414.  
  1415. # SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
  1416. # SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
  1417. # distributions. (string value)
  1418. #version = <None>
  1419.  
  1420. # Sets the list of available ciphers. value should be a string in the OpenSSL
  1421. # cipher list format. (string value)
  1422. #ciphers = <None>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement