[jira] [Commented] (CLOUDSTACK-6194) Failed to increase Shared network IP Range

2014-03-10 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-6194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13926186#comment-13926186
 ] 

ASF subversion and git services commented on CLOUDSTACK-6194:
-

Commit 859a78e1d321a936efd18dc6f0a55ab336cd3b70 in cloudstack's branch 
refs/heads/4.3 from [~mlsorensen]
[ https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;h=859a78e ]

CLOUDSTACK-6194: Failed to increase Shared network IP Range

Submitted-by:Saksham Srivastava saksham.srivast...@citrix.com
(cherry picked from commit 135247afd114c1dfc6dde22184430237e79aafc5)

Signed-off-by: Animesh Chaturvedi anim...@apache.org


 Failed to increase Shared network IP Range
 --

 Key: CLOUDSTACK-6194
 URL: https://issues.apache.org/jira/browse/CLOUDSTACK-6194
 Project: CloudStack
  Issue Type: Bug
  Security Level: Public(Anyone can view this level - this is the 
 default.) 
  Components: API, Management Server
Affects Versions: 4.3.0
 Environment: Xenserver, CloudStack 4.3-forward
Reporter: Saksham Srivastava
Assignee: Saksham Srivastava
 Fix For: 4.3.0


 Steps from UI:
 1. Newly installed setup with Adv zone configuration
 2. Created shared network
 3. Tried to Add IP range to the same shared network.
 Observation:
 It failed saying there is already one vlan 110 on network :212, only one 
 vlan is allowed on guest network .



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CLOUDSTACK-6194) Failed to increase Shared network IP Range

2014-03-04 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-6194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13920517#comment-13920517
 ] 

ASF subversion and git services commented on CLOUDSTACK-6194:
-

Commit b8413b9413eb39053c378309195469a4d5d4fec0 in cloudstack's branch 
refs/heads/master from [~mlsorensen]
[ https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;h=b8413b9 ]

CLOUDSTACK-6194: Failed to increase Shared network IP Range

Submitted-by:Saksham Srivastava saksham.srivast...@citrix.com


 Failed to increase Shared network IP Range
 --

 Key: CLOUDSTACK-6194
 URL: https://issues.apache.org/jira/browse/CLOUDSTACK-6194
 Project: CloudStack
  Issue Type: Bug
  Security Level: Public(Anyone can view this level - this is the 
 default.) 
  Components: API, Management Server
Affects Versions: 4.3.0
 Environment: Xenserver, CloudStack 4.3-forward
Reporter: Saksham Srivastava
Assignee: Saksham Srivastava
 Fix For: 4.3.0


 Steps from UI:
 1. Newly installed setup with Adv zone configuration
 2. Created shared network
 3. Tried to Add IP range to the same shared network.
 Observation:
 It failed saying there is already one vlan 110 on network :212, only one 
 vlan is allowed on guest network .



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CLOUDSTACK-6194) Failed to increase Shared network IP Range

2014-03-04 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-6194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13920519#comment-13920519
 ] 

ASF subversion and git services commented on CLOUDSTACK-6194:
-

Commit cd0d16f05a2be02e3de1a327bba9a5acd112e4f2 in cloudstack's branch 
refs/heads/4.3-forward from [~mlsorensen]
[ https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;h=cd0d16f ]

CLOUDSTACK-6194: Failed to increase Shared network IP Range

Submitted-by:Saksham Srivastava saksham.srivast...@citrix.com


 Failed to increase Shared network IP Range
 --

 Key: CLOUDSTACK-6194
 URL: https://issues.apache.org/jira/browse/CLOUDSTACK-6194
 Project: CloudStack
  Issue Type: Bug
  Security Level: Public(Anyone can view this level - this is the 
 default.) 
  Components: API, Management Server
Affects Versions: 4.3.0
 Environment: Xenserver, CloudStack 4.3-forward
Reporter: Saksham Srivastava
Assignee: Saksham Srivastava
 Fix For: 4.3.0


 Steps from UI:
 1. Newly installed setup with Adv zone configuration
 2. Created shared network
 3. Tried to Add IP range to the same shared network.
 Observation:
 It failed saying there is already one vlan 110 on network :212, only one 
 vlan is allowed on guest network .



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CLOUDSTACK-6194) Failed to increase Shared network IP Range

2014-03-03 Thread Saksham Srivastava (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-6194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13918014#comment-13918014
 ] 

Saksham Srivastava commented on CLOUDSTACK-6194:


It is a regression caused due to 
https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;a=commitdiff;h=1f9ad23ba0920700b93cec0ce5f0226ae3c81952;hp=ec191455f4d607e64ca7dfa74cf705ec0f36a083

In case the vlan is passed null to the api, we change it to untagged

So in the API in ConfigurationManagerImpl.java
if (vlans != null  vlans.size()  0) {
 VlanVO vlan = vlans.get(0);
 if (vlanId == null) {
 vlanId = vlan.getVlanTag();
 } else if (!NetUtils.isSameIsolationId(vlan.getVlanTag(), 
vlanId)) {
 throw new InvalidParameterValueException(there is 
already one vlan  + vlan.getVlanTag()

The exception is thrown because the vlanId is not null but is vlan://untagged


 Failed to increase Shared network IP Range
 --

 Key: CLOUDSTACK-6194
 URL: https://issues.apache.org/jira/browse/CLOUDSTACK-6194
 Project: CloudStack
  Issue Type: Bug
  Security Level: Public(Anyone can view this level - this is the 
 default.) 
  Components: API, Management Server
Affects Versions: 4.3.0
 Environment: Xenserver, CloudStack 4.3-forward
Reporter: Saksham Srivastava
Assignee: Saksham Srivastava
 Fix For: 4.3.0


 Steps from UI:
 1. Newly installed setup with Adv zone configuration
 2. Created shared network
 3. Tried to Add IP range to the same shared network.
 Observation:
 It failed saying there is already one vlan 110 on network :212, only one 
 vlan is allowed on guest network .



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CLOUDSTACK-6194) Failed to increase Shared network IP Range

2014-03-03 Thread Saksham Srivastava (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-6194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13918027#comment-13918027
 ] 

Saksham Srivastava commented on CLOUDSTACK-6194:


Fix available for review at https://reviews.apache.org/r/18683/

 Failed to increase Shared network IP Range
 --

 Key: CLOUDSTACK-6194
 URL: https://issues.apache.org/jira/browse/CLOUDSTACK-6194
 Project: CloudStack
  Issue Type: Bug
  Security Level: Public(Anyone can view this level - this is the 
 default.) 
  Components: API, Management Server
Affects Versions: 4.3.0
 Environment: Xenserver, CloudStack 4.3-forward
Reporter: Saksham Srivastava
Assignee: Saksham Srivastava
 Fix For: 4.3.0


 Steps from UI:
 1. Newly installed setup with Adv zone configuration
 2. Created shared network
 3. Tried to Add IP range to the same shared network.
 Observation:
 It failed saying there is already one vlan 110 on network :212, only one 
 vlan is allowed on guest network .



--
This message was sent by Atlassian JIRA
(v6.2#6252)