summaryrefslogtreecommitdiffstats
path: root/node-admin/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'node-admin/scripts')
-rwxr-xr-xnode-admin/scripts/configure-container-networking.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/node-admin/scripts/configure-container-networking.py b/node-admin/scripts/configure-container-networking.py
index b23fcf70ebc..51f691a4c87 100755
--- a/node-admin/scripts/configure-container-networking.py
+++ b/node-admin/scripts/configure-container-networking.py
@@ -340,9 +340,8 @@ else:
host_default_route = get_default_route(net_namespace=host_ns)
host_default_route_device_index = get_attribute(host_default_route, 'RTA_OIF')
- host_default_route_gateway = get_attribute(host_default_route, 'RTA_GATEWAY')
if host_device_index_for_container != host_default_route_device_index:
raise RuntimeError("Container's ip address is not on the same network as the host's default route."
" Could not set up default route for the container.")
- container_gateway = host_default_route_gateway
- container_ns.route("replace", gateway=container_gateway, index=container_interface_index)
+ host_default_route_gateway = get_attribute(host_default_route, 'RTA_GATEWAY')
+ container_ns.route("replace", gateway=host_default_route_gateway, index=container_interface_index)