mirror of https://github.com/apache/cloudstack.git
S2S VPN: Fix multiply remote side guest networks
This commit is contained in:
parent
e59a2f2ef6
commit
9898495974
|
|
@ -1120,7 +1120,7 @@ public class VpcVirtualNetworkApplianceManagerImpl extends VirtualNetworkApplian
|
|||
String localGuestCidr = vpc.getCidr();
|
||||
String localPublicGateway = _vlanDao.findById(ip.getVlanId()).getVlanGateway();
|
||||
String peerGatewayIp = gw.getGatewayIp();
|
||||
String peerGuestCidrList = gw.getGuestCidrList();
|
||||
String peerGuestCidrList = gw.getGuestCidrList().replace(";", ",");
|
||||
String ipsecPsk = gw.getIpsecPsk();
|
||||
String ikePolicy = gw.getIkePolicy();
|
||||
String espPolicy = gw.getEspPolicy();
|
||||
|
|
|
|||
Loading…
Reference in New Issue