openbaton / openstack4j-plugin

Apache License 2.0
3 stars 12 forks source link

Unable to allocate floating IPs from different pools to the same VNF #48

Open gc4rella opened 6 years ago

gc4rella commented 6 years ago

In cases where the VNF has multiple connection points attached to different VLs, it is not possible to specify different floating IP Pools.

Example VLD:

  "vld":[
    {
      "name":"private",
      "poolName":"pool1"
    },
    {
      "name":"private-2",
      "poolName":"pool2"
    }
  ],

And connection points:


              "connection_point":[
                {
                  "floatingIp":"random",
                  "virtual_link_reference":"private",
                  "interfaceId":0
                },
                {
                  "floatingIp":"random",
                  "virtual_link_reference":"private-2",
                  "interfaceId":1
                }
              ]