diff --git a/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java b/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java index 395ab5f0fb1..59ef6686ef0 100644 --- a/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java +++ b/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java @@ -83,7 +83,7 @@ public class SetNetworkACLCommand extends NetworkElementCommand { Boolean firstEntry = true; for (final String tag : cidr) { if (!firstEntry) { - sb.append("-"); + sb.append(","); } sb.append(tag); firstEntry = false;