GitHub user prashanthr2 added a comment to the discussion: Unable to configure higher threshold for public IP usage
@KuasarCloud All the public IP's are maintained user_ip_address table and as per the query output you shared there are free IP's. _>>I think it's because the free IP are for the System Pool,_ This could be the issue.. Did you dedicate or reserve public IP's for systemVM's? Can you share the output of below queries select count(*) from user_ip_address where allocated is null and state='Free' and data_center_id=2 and forsystemvms=1; select count(*) from user_ip_address where allocated is null and state='Free' and data_center_id=2 and forsystemvms=0; select count(*) from user_ip_address where allocated is null and state='Free' and data_center_id=2; If query 2 returns count as 0 then you have no public IP's for user networks consumption. You will need to add more IP's. GitHub link: https://github.com/apache/cloudstack/discussions/11698#discussioncomment-14572573 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
