From: Assaf Muller Date: Tue, 13 Oct 2015 20:52:46 +0000 (-0400) Subject: Add ml2 extension drivers examples X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=7acaff0dfbd7156490025ba3b383e6c45fc082dd;p=openstack-build%2Fneutron-build.git Add ml2 extension drivers examples DocImpact Change-Id: Idf8fcbd6f47ab91996d843575b66ad749cb9a3e0 --- diff --git a/etc/neutron/plugins/ml2/ml2_conf.ini b/etc/neutron/plugins/ml2/ml2_conf.ini index 2cef2c6ff..a3f075dc6 100644 --- a/etc/neutron/plugins/ml2/ml2_conf.ini +++ b/etc/neutron/plugins/ml2/ml2_conf.ini @@ -25,7 +25,7 @@ # (ListOpt) Ordered list of extension driver entrypoints # to be loaded from the neutron.ml2.extension_drivers namespace. # extension_drivers = -# Example: extension_drivers = anewextensiondriver +# Example: extension_drivers = port_security,qos # =========== items for MTU selection and advertisement ============= # (IntOpt) Path MTU. The maximum permissible size of an unfragmented diff --git a/neutron/plugins/ml2/config.py b/neutron/plugins/ml2/config.py index a248c1ceb..94a0fda06 100644 --- a/neutron/plugins/ml2/config.py +++ b/neutron/plugins/ml2/config.py @@ -34,7 +34,8 @@ ml2_opts = [ default=[], help=_("An ordered list of extension driver " "entrypoints to be loaded from the " - "neutron.ml2.extension_drivers namespace.")), + "neutron.ml2.extension_drivers namespace. " + "For example: extension_drivers = port_security,qos")), cfg.IntOpt('path_mtu', default=0, help=_('The maximum permissible size of an unfragmented ' 'packet travelling from and to addresses where '