Example #1
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)
Example #2
0
File: l3.py Project: Dynavisor/nova
 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)
Example #3
0
 def clean_conntrack(self, fixed_ip):
     linux_net.clean_conntrack(fixed_ip)
Example #4
0
 def clean_conntrack(self, fixed_ip):
     linux_net.clean_conntrack(fixed_ip)