diff --git a/server/src/com/cloud/api/ApiResponseHelper.java b/server/src/com/cloud/api/ApiResponseHelper.java index 7c2189092cf..a5176e43f5b 100755 --- a/server/src/com/cloud/api/ApiResponseHelper.java +++ b/server/src/com/cloud/api/ApiResponseHelper.java @@ -1147,7 +1147,7 @@ public class ApiResponseHelper implements ResponseGenerator { } else if (network.getTrafficType() == TrafficType.Control) { routerResponse.setLinkLocalIp(singleNicProfile.getIp4Address()); routerResponse.setLinkLocalMacAddress(singleNicProfile.getMacAddress()); - routerResponse.setLinkLocalMacAddress(singleNicProfile.getNetmask()); + routerResponse.setLinkLocalNetmask(singleNicProfile.getNetmask()); routerResponse.setLinkLocalNetworkId(singleNicProfile.getNetworkId()); } else if (network.getTrafficType() == TrafficType.Guest) { routerResponse.setGuestIpAddress(singleNicProfile.getIp4Address());