mirror of https://github.com/apache/cloudstack.git
bug 10467: Incorrect display of domain router linklocalmac address and linklocal netmask fixed
This commit is contained in:
parent
8fb76e747e
commit
3c1f6fd24b
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in New Issue