Exemple #1
0
    def remove_floating_ip(self, floating_ip, fixed_ip, l3_interface_id):
        linux_net.unbind_floating_ip(floating_ip, l3_interface_id)
        linux_net.remove_floating_forward(floating_ip, fixed_ip,
                                          l3_interface_id)

        if FLAGS.del_floating_conntracks:
            linux_net.del_conntrack_entries(floating_ip)
Exemple #2
0
 def remove_floating_ip(self,
                        floating_ip,
                        fixed_ip,
                        l3_interface_id,
                        network=None):
     linux_net.unbind_floating_ip(floating_ip, l3_interface_id)
     linux_net.remove_floating_forward(floating_ip, fixed_ip,
                                       l3_interface_id, network)
Exemple #3
0
 def remove_floating_ip(self,
                        floating_ip,
                        fixed_ip,
                        l3_interface_id,
                        network=None):
     nova.privsep.linux_net.unbind_ip(l3_interface_id, floating_ip)
     linux_net.remove_floating_forward(floating_ip, fixed_ip,
                                       l3_interface_id, network)
     linux_net.clean_conntrack(fixed_ip)
 def remove_floating_ip(self, floating_ip, fixed_ip, l3_interface_id):
     linux_net.unbind_floating_ip(floating_ip, l3_interface_id)
     linux_net.remove_floating_forward(floating_ip, fixed_ip)
Exemple #5
0
 def remove_floating_ip(self, floating_ip, fixed_ip, l3_interface_id,
                        network=None):
     linux_net.unbind_floating_ip(floating_ip, l3_interface_id)
     linux_net.remove_floating_forward(floating_ip, fixed_ip,
                                       l3_interface_id, network)
     linux_net.clean_conntrack(fixed_ip)