Github user DaanHoogland commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/75#discussion_r24511453 --- Diff: server/src/com/cloud/network/router/VirtualNetworkApplianceManagerImpl.java --- @@ -1622,6 +1630,23 @@ protected StringBuilder createRedundantRouterArgs(final NicProfile nic, DomainRo // For a redundant VPC router, both shall have the same router id. It will be used by the VRRP virtural_router_id attribute. // So we use the VPC id to avoid group problems. buf.append(" router_id=").append(vpcId); + + // Will build the routers password based on the VPC ID and UUID. + final Vpc vpc = _vpcDao.findById(vpcId); + + try { + final MessageDigest digest = MessageDigest.getInstance("SHA-512"); --- End diff -- let's make a ticket to make this configurable later on
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---