Unable to configure higher threshold for public IP usage #11698
-
|
Hi team, I’ve reached 85% usage of my public IPs, but I haven’t been able to find an option in the Global Configuration to adjust the threshold. Ideally, I’d like to set it to at least 90%. Is there a way to configure this, or is the threshold value fixed? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
prashanthr2
Oct 2, 2025
Replies: 1 comment 13 replies
-
|
@KuasarCloud Below global setting parameters should address your issue (may require management server restart for the changes to take effect) zone.virtualnetwork.publicip.capacity.notificationthreshold |
Beta Was this translation helpful? Give feedback.
13 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@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 …