Repository: cloudstack Updated Branches: refs/heads/4.9 6a449e4b3 -> f78e94634
CLOUDSTACK-9416 : Enabling Static NAT on an associated Public IP to one of the NICs (networks) of a multi-NIC VM fails due to a wrong (default) Guest VM IP being selected in the GUI Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/094c4cf0 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/094c4cf0 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/094c4cf0 Branch: refs/heads/4.9 Commit: 094c4cf02bf75ed3e5bd227f7b4cfe614f386871 Parents: 50f80cc Author: Nick Livens <[email protected]> Authored: Wed Jun 15 14:47:50 2016 +0200 Committer: Prashanth Manthena <[email protected]> Committed: Fri Nov 25 11:49:47 2016 +0100 ---------------------------------------------------------------------- ui/scripts/network.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/094c4cf0/ui/scripts/network.js ---------------------------------------------------------------------- diff --git a/ui/scripts/network.js b/ui/scripts/network.js index 704f399..428807e 100755 --- a/ui/scripts/network.js +++ b/ui/scripts/network.js @@ -89,7 +89,7 @@ url: createURL('listNics'), data: { virtualmachineid: instance.id, - nicId: instance.nic[0].id + networkId: network.id }, success: function(json) { var nic = json.listnicsresponse.nic[0];
