mirror of https://github.com/apache/cloudstack.git
Shared networks is only supported in Basic zone and Advanced zone with SG in Infracstructure->Zone->Physical Network->Guest->Network
This commit is contained in:
parent
daff3fe418
commit
35076ba1b6
|
|
@ -1120,6 +1120,13 @@
|
|||
}
|
||||
},
|
||||
|
||||
preFilter: function(args) { //Shared networks is only supported in Basic zone and Advanced zone with SG
|
||||
if(selectedZoneObj.networktype == "Advanced" && selectedZoneObj.securitygroupsenabled != true)
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
},
|
||||
|
||||
createForm: {
|
||||
title: 'label.add.guest.network', //Add guest network in advanced zone
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue