problem
It was observed when creating a Shared network with multiple Guest IP ranges, the VR deployment fails but a parsing error:
null,"instanceType":null,"lastPolled":null,"lastUpdated":null,"processStatus":0,"removed":null,"result":null,"resultCode":0,"status":"IN_PROGRESS","userId":2,"uuid":"181dd803-48fb-4cae-bcdd-a4588a725ce4"}, job origin: 311 java.lang.NumberFormatException: For input string: "24,172.30.11.0"
at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67)
at java.base/java.lang.Long.parseLong(Long.java:709)
at java.base/java.lang.Long.parseLong(Long.java:832)
at com.cloud.utils.net.NetUtils.getCidrNetmask(NetUtils.java:971)
at com.cloud.network.router.VirtualNetworkApplianceManagerImpl.createGuestBootLoadArgs(VirtualNetworkApplianceManagerImpl.java:2198)
at com.cloud.network.router.VirtualNetworkApplianceManagerImpl.finalizeVirtualMachineProfile(VirtualNetworkApplianceManagerImpl.java:1991)
at com.cloud.network.router.VpcVirtualNetworkApplianceManagerImpl.finalizeVirtualMachineProfile(VpcVirtualNetworkApplianceManagerImpl.java:363)
In my environment, the conflicting value is coming from the network cidr value as a comma-separated value from both ranges:
mysql> select id, name, network_cidr, cidr from networks where id = 214;
+-----+-------------+--------------+-------------------------------+
| id | name | network_cidr | cidr |
+-----+-------------+--------------+-------------------------------+
| 214 | Shared-Test | NULL | 172.30.10.0/24,172.30.11.0/24 |
+-----+-------------+--------------+-------------------------------+
1 row in set (0.00 sec)
versions
4.22.0, 4.22.1
The steps to reproduce the bug
Scenario 1:
- Create a Shared network
- Add a second Guest IP range
- Deploy VM on the network -> VR fails with error above
Scenario 1:
- Create a Shared network
- Deploy VM on the network -> succeeds
- Add a second Guest IP range
- Restart network with cleanup -> VR fails with error above
What to do about it?
No response
problem
It was observed when creating a Shared network with multiple Guest IP ranges, the VR deployment fails but a parsing error:
In my environment, the conflicting value is coming from the network cidr value as a comma-separated value from both ranges:
versions
4.22.0, 4.22.1
The steps to reproduce the bug
Scenario 1:
Scenario 1:
What to do about it?
No response