← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1417798] Re: IP filtering can include duplicate instances

 

** Changed in: nova
       Status: Fix Committed => Fix Released

** Changed in: nova
    Milestone: None => kilo-3

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1417798

Title:
  IP filtering can include duplicate instances

Status in OpenStack Compute (Nova):
  Fix Released

Bug description:
  The IP address filtering logic implemented in the compute API can duplicate instances if a given instance either:
  - Has a fixed IP address in more then 1 network that matches the filter
  - Has more then 1 fixed IP address in the same network matches the filter

  For example:

  $ nova list
  +-----+-----------------+-------------------------------------------------+
  | ID  | Name            | Networks                                        |
  +-----+-----------------+-------------------------------------------------+
  | 123 | InstanceTest    | gre_shared_1=192.168.0.11; network=194.168.0.14 |
  | 456 | InstanceOne     | gre_shared_1=192.168.0.3                        |
  +-----+-----------------+-------------------------------------------------+

  $ nova list --ip 19
  +-----+-----------------+-------------------------------------------------+
  | ID  | Name            | Networks                                        |
  +-----+-----------------+-------------------------------------------------+
  | 123 | InstanceTest    | gre_shared_1=192.168.0.11; network=194.168.0.14 |
  | 123 | InstanceTest    | gre_shared_1=192.168.0.11; network=194.168.0.14 |
  | 456 | InstanceOne     | gre_shared_1=192.168.0.3                        |
  +-----+-----------------+-------------------------------------------------+

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1417798/+subscriptions


References