This file is indexed.

/etc/neutron/plugins/bigswitch/restproxy.ini is in neutron-plugin-bigswitch 1:2014.1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
# Config file for neutron-proxy-plugin.

[restproxy]
# All configuration for this plugin is in section '[restproxy]'
#
# The following parameters are supported:
#   servers               :  <host:port>[,<host:port>]*   (Error if not set)
#   server_auth           :  <username:password>          (default: no auth)
#   server_ssl            :  True | False                 (default: True)
#   ssl_cert_directory    :  <path>                       (default: /etc/neutron/plugins/bigswitch/ssl)
#   no_ssl_validation     :  True | False                 (default: False)
#   ssl_sticky            :  True | False                 (default: True)
#   sync_data             :  True | False                 (default: False)
#   auto_sync_on_failure  :  True | False                 (default: True)
#   server_timeout        :  <integer>                    (default: 10 seconds)
#   neutron_id            :  <string>                     (default: neutron-<hostname>)
#   add_meta_server_route :  True | False                 (default: True)
#   thread_pool_size      :  <int>                        (default: 4)

# A comma separated list of BigSwitch or Floodlight servers and port numbers. The plugin proxies the requests to the BigSwitch/Floodlight server, which performs the networking configuration. Note that only one server is needed per deployment, but you may wish to deploy multiple servers to support failover.
servers=localhost:8080

# The username and password for authenticating against  the BigSwitch or Floodlight controller.
# server_auth=username:password

# Use SSL when connecting to the BigSwitch or Floodlight controller.
# server_ssl=True

# Directory which contains the ca_certs and host_certs to be used to validate
# controller certificates.
# ssl_cert_directory=/etc/neutron/plugins/bigswitch/ssl/

# If a certificate does not exist for a controller, trust and store the first
# certificate received for that controller and use it to validate future
# connections to that controller.
# ssl_sticky=True

# Do not validate the controller certificates for SSL
# Warning: This will not provide protection against man-in-the-middle attacks
# no_ssl_validation=False

# Sync data on connect
# sync_data=False

# If neutron fails to create a resource because the backend controller
# doesn't know of a dependency, automatically trigger a full data
# synchronization to the controller.
# auto_sync_on_failure=True

# Maximum number of seconds to wait for proxy request to connect and complete.
# server_timeout=10

# User defined identifier for this Neutron deployment
# neutron_id =

# Flag to decide if a route to the metadata server should be injected into the VM
# add_meta_server_route = True

# Number of threads to use to handle large volumes of port creation requests
# thread_pool_size = 4

[nova]
# Specify the VIF_TYPE that will be controlled on the Nova compute instances
#    options: ivs or ovs
#    default: ovs
# vif_type = ovs

# Overrides for vif types based on nova compute node host IDs
# Comma separated list of host IDs to fix to a specific VIF type
# The VIF type is taken from the end of the configuration item
# node_override_vif_<vif_type>
# For example, the following would set the VIF type to IVS for
# host-id1 and host-id2
# node_overrride_vif_ivs=host-id1,host-id2

[router]
# Specify the default router rules installed in newly created tenant routers
# Specify multiple times for multiple rules
# Format is <tenant>:<source>:<destination>:<action>
# Optionally, a comma-separated list of nexthops may be included after <action>
# Use an * to specify default for all tenants
# Default is any any allow for all tenants
# tenant_default_router_rule=*:any:any:permit

# Maximum number of rules that a single router may have
# Default is 200
# max_router_rules=200

[restproxyagent]

# Specify the name of the bridge used on compute nodes
# for attachment.
# Default: br-int
# integration_bridge=br-int

# Change the frequency of polling by the restproxy agent.
# Value is seconds
# Default: 5
# polling_interval=5

# Virtual switch type on the compute node.
# Options: ovs or ivs
# Default: ovs
# virtual_switch_type = ovs

[securitygroup]
# Controls if neutron security group is enabled or not.
# It should be false when you use nova security group.
# enable_security_group = True