iptables manager does not honor top param of add_rule
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
neutron |
Fix Released
|
High
|
Sylvain Afchain |
Bug Description
When I add some rules with add_rule method of IptablesTable class, sometimes the top parameter is not always honored.
to reproduce:
self.iptables.
self.iptables.
self.iptables.
self.iptables.
self.iptables.
the good order should be:
-s 0/0 -d 192.168.0.2 -j RETURN
-s 0/0 -d 192.168.0.4 -j RETURN
-s 0/0 -d 192.168.0.3 -j RETURN
and I get:
-s 0/0 -d 192.168.0.2 -j RETURN
-s 0/0 -d 192.168.0.3 -j RETURN
-s 0/0 -d 192.168.0.4 -j RETURN
description: | updated |
Changed in quantum: | |
assignee: | nobody → Sylvain Afchain (sylvain-afchain) |
Changed in neutron: | |
status: | In Progress → Fix Committed |
Changed in neutron: | |
importance: | Undecided → High |
milestone: | none → havana-rc1 |
tags: | added: iptables |
tags: |
added: l3-ipam-dhcp removed: iptables |
Changed in neutron: | |
status: | Fix Committed → Fix Released |
Changed in neutron: | |
milestone: | havana-rc1 → 2013.2 |
Fix proposed to branch: master /review. openstack. org/34569
Review: https:/