Remove an external interface when router-gateway is removed.

Fixes bug 1048617

Change-Id: Ib7e80fcd6b7e2ffd974067a8039dd74f25005856
This commit is contained in:
Akihiro MOTOKI 2012-09-10 21:35:29 +09:00
parent a6a4272806
commit 56404124a6
1 changed files with 4 additions and 2 deletions

View File

@ -202,7 +202,8 @@ class L3NATAgent(object):
if not r['admin_state_up']:
continue
ex_net_id = r['external_gateway_info'].get('network_id', None)
ex_net_id = (r['external_gateway_info'] and
r['external_gateway_info'].get('network_id'))
if not ex_net_id and not self.conf.handle_internal_only_routers:
continue
@ -381,7 +382,8 @@ class L3NATAgent(object):
if ip_lib.device_exists(interface_name,
root_helper=self.conf.root_helper,
namespace=ri.ns_name()):
self.driver.unplug(interface_name)
self.driver.unplug(interface_name,
bridge=self.conf.external_network_bridge)
ex_gw_ip = ex_gw_port['fixed_ips'][0]['ip_address']
for c, r in self.external_gateway_filter_rules():