components/openstack/neutron/files/l3_agent.ini
changeset 1944 56ac2df1785b
parent 1760 353323c7bdc1
child 3998 5bd484384122
equal deleted inserted replaced
1943:1a27f000029f 1944:56ac2df1785b
     1 [DEFAULT]
     1 [DEFAULT]
     2 # Show debugging output in log (sets DEBUG log level output)
     2 # Show debugging output in log (sets DEBUG log level output)
     3 # debug = True
     3 # debug = False
     4 
     4 
     5 # L3 requires that an interface driver be set.  Choose the one that best
     5 # L3 requires that an interface driver be set. Choose the one that best
     6 # matches your plugin.
     6 # matches your plugin.
     7 
       
     8 # Solaris Elastic Virtual Switch (EVS)
     7 # Solaris Elastic Virtual Switch (EVS)
     9 interface_driver = quantum.agent.solaris.interface.SolarisVNICDriver
     8 interface_driver = neutron.agent.solaris.interface.SolarisVNICDriver
    10 
     9 
    11 # Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
    10 # Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
    12 # iproute2 package that supports namespaces).
    11 # iproute2 package that supports namespaces).
    13 # use_namespaces = False
    12 use_namespaces = False
    14 
    13 
    15 # If use_namespaces is set as False then the agent can only configure one
    14 # If use_namespaces is set as False then the agent can only configure one
    16 # router.  This is done by setting the specific router_id.
    15 # router.
       
    16 
       
    17 # This is done by setting the specific router_id.
    17 # router_id =
    18 # router_id =
    18 
    19 
    19 # Each L3 agent can be associated with at most one external network.  This
    20 # Each L3 agent can be associated with at most one external network.  This
    20 # value should be set to the UUID of that external network.  If empty,
    21 # value should be set to the UUID of that external network.  If empty,
    21 # the agent will enforce that only a single external networks exists and
    22 # the agent will enforce that only a single external networks exists and
    22 # use that external network id
    23 # use that external network id
    23 # gateway_external_network_id =
    24 # gateway_external_network_id =
    24 
    25 
    25 # Indicates that this L3 agent should also handle routers that do not have
    26 # Indicates that this L3 agent should also handle routers that do not have
    26 # an external network gateway configured.  This option should be True only
    27 # an external network gateway configured.  This option should be True only
    27 # for a single agent in a Quantum deployment, and may be False for all agents
    28 # for a single agent in a Neutron deployment, and may be False for all agents
    28 # if all routers must have an external network gateway
    29 # if all routers must have an external network gateway
    29 # handle_internal_only_routers = True
    30 # handle_internal_only_routers = True
    30 
    31 
    31 # Name of bridge used for external network traffic. This should be set to
    32 # Name of bridge used for external network traffic. This should be set to
    32 # empty value for the linux bridge
    33 # empty value for the linux bridge
    33 # external_network_bridge =
    34 external_network_bridge =
    34 
    35 
    35 # seconds between re-sync routers' data if needed
    36 # seconds between re-sync routers' data if needed
    36 # periodic_interval = 40
    37 # periodic_interval = 40
    37 
    38 
    38 # seconds to start to sync routers' data after
    39 # seconds to start to sync routers' data after
    39 # starting agent
    40 # starting agent
    40 # periodic_fuzzy_delay = 5
    41 # periodic_fuzzy_delay = 5
       
    42 
       
    43 # enable_metadata_proxy, which is true by default, can be set to False
       
    44 # if the Nova metadata server is not available
       
    45 enable_metadata_proxy = False
    41 
    46 
    42 # Name of the datalink that connects to an external network. By default it's
    47 # Name of the datalink that connects to an external network. By default it's
    43 # set to net0.
    48 # set to net0.
    44 # external_network_datalink = net0
    49 # external_network_datalink = net0
    45 
    50