diff --git a/ui/scripts/cloud.core.configuration.js b/ui/scripts/cloud.core.configuration.js index 2d122d5f6ad..4ec000bcc7b 100644 --- a/ui/scripts/cloud.core.configuration.js +++ b/ui/scripts/cloud.core.configuration.js @@ -596,8 +596,10 @@ function showConfigurationTab() { array1.push("&cidr="+encodeURIComponent(newCidr)); if(newStartip != oldStartip) array1.push("&startIp="+encodeURIComponent(newStartip)); - if(newEndip != oldEndip && newEndip != null && newEndip.length > 0) + if(newEndip != oldEndip && newEndip != null && newEndip.length > 0) { + array1.push("&startIp="+encodeURIComponent(newStartip)); //startIp needs to be passed to updatePod API when endIp is passed to updatePod API. array1.push("&endIp="+encodeURIComponent(newEndip)); + } if(newGateway != oldGateway && newGateway != null && newGateway.length > 0) array1.push("&gateway="+encodeURIComponent(newGateway));