diff --git a/doc/install-guide/section_neutron-install.xml b/doc/install-guide/section_neutron-install.xml
index 256814af62..3ddc72a270 100644
--- a/doc/install-guide/section_neutron-install.xml
+++ b/doc/install-guide/section_neutron-install.xml
@@ -1141,6 +1141,20 @@ security_group_api=neutron
Nova firewall, and because Neutron
handles the Firewall, you must tell Nova not to use
one.
+ When Networking handles the firewall, the option firewall_driver
+ should be set according to the specified plugin. For example with OVS, edit the
+ /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini
+ file:
+ [securitygroup]
+# Firewall driver for realizing neutron security group function.
+firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
+ If you do not want to use a firewall in Compute or Networking, set
+ firewall_driver=nova.virt.firewall.NoopFirewallDriver
in
+ both config files, and comment out or remove security_group_api=neutron
+ in the /etc/nova/nova.conf file, otherwise
+ you may encounter ERROR: The server has either erred or is incapable of
+ performing the requested operation. (HTTP 500) when issuing
+ nova list commands.