Hide Forgot
Version: RDO Havana on rhel6.4, openstack-neutron-2013.2-0.4.b3.el6, rdo-release-havana-6 Decription: FWaaS commands return 404 (resource not found). The environment was installed using packstack, the following configuration was done by packstack: /etc/neutron/plugin.ini firewall_driver=neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver I've tried to add the following configuration and restart neutron-related services, but firewall commands still return 404: /etc/neutron/neutron.conf service_provider=FIREWALL:my_firewall:neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver:default Commands output: # neutron firewall-list 404 Not Found The resource could not be found. # neutron firewall-rule-list 404 Not Found The resource could not be found. # neutron firewall-policy-list 404 Not Found The resource could not be found. # neutron firewall-policy-create firewall1_policy 404 Not Found The resource could not be found.
It works for me when using the right configuration: in the neutron-service machine, neutron.conf, add the following and restart the neutron-service: service_plugins = neutron.services.firewall.fwaas_plugin.FirewallPlugin in the l3 machine, neutron.conf, add the following and restart the l3 service: [fwaas] driver = neutron.services.firewall.drivers.linux.iptables_fwaas.IptablesFwaasDriver enabled = True Closing as NOTABUG.