You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
above code will create a /24 network and would reserve the first 2 IPs. But i cannot add names to those reserved IPs.
Also what if i need to reserve first 2 IPs and 5 IPs somewhere in this /24, thats currently not possible i believe.
The text was updated successfully, but these errors were encountered:
While reserving IPs from a network block, it reserve the next available IPs. I.e we i say reserve_ip=4 , it would reserve next 4 available IPs.
resource "infoblox_ipv4_network" "Network2" {
parent_cidr = infoblox_ipv4_network_container.Container1.cidr
allocate_prefix_len = 24
reserve_ip = 2
depends_on = [ infoblox_ipv4_network.Network1 ]
}
above code will create a /24 network and would reserve the first 2 IPs. But i cannot add names to those reserved IPs.
Also what if i need to reserve first 2 IPs and 5 IPs somewhere in this /24, thats currently not possible i believe.
The text was updated successfully, but these errors were encountered: