exam questions

Exam CV0-003 All Questions

View all questions & answers for the CV0-003 exam

Exam CV0-003 topic 1 question 16 discussion

Actual exam question from CompTIA's CV0-003
Question #: 16
Topic #: 1
[All CV0-003 Questions]

A cloud architect is designing the VPCs for a new hybrid cloud deployment. The business requires the following:
✑ High availability
✑ Horizontal auto-scaling
✑ 60 nodes peak capacity per region
✑ Five reserved network IP addresses per subnet
✑ /24 range
Which of the following would BEST meet the above requirements?

  • A. Create two /25 subnets in different regions.
  • B. Create three /25 subnets in different regions.
  • C. Create two /26 subnets in different regions.
  • D. Create three /26 subnets in different regions.
  • E. Create two /27 subnets in different regions.
  • F. Create three /27 subnets in different regions.
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
BigM
2 months ago
Selected Answer: B
Explanation: The cloud architect needs to design a highly available and scalable VPC setup that can handle 60 nodes per region while accounting for reserved IP addresses. Subnet Sizing Considerations: A /24 subnet provides 256 IP addresses (from .0 to .255). A /25 subnet provides 128 IP addresses (from .0 to .127 or .128 to .255). A /26 subnet provides 64 IP addresses, but 5 are reserved for network, broadcast, and cloud provider reservations, leaving only 59 usable IPs, which is insufficient for 60 nodes per region. A /27 subnet provides 32 IP addresses, which is far too small.
upvoted 1 times
...
sweetykaur
2 months, 1 week ago
Selected Answer: B
B. Create three /25 subnets in different regions. Here's the breakdown: High availability: Having subnets in different regions ensures that the application remains available even if one region goes down. Horizontal auto-scaling: This ensures the system can scale out by adding more instances as needed. 60 nodes peak capacity per region: A /25 subnet provides 128 IP addresses, but with 5 reserved, that leaves 123 usable IP addresses. This comfortably accommodates the 60 nodes. Five reserved network IP addresses per subnet: The calculation leaves enough IP addresses in a /25 subnet for the required nodes. Using three subnets ensures distribution across multiple regions, enhancing high availability and redundancy. It also maintains the necessary capacity and supports horizontal auto-scaling.
upvoted 1 times
...
TheFivePips
5 months, 3 weeks ago
Selected Answer: B
2^(number of host bits) = # of addresses ex. /24 means there are (32 -24) 8 host bits. 2^8 = 256 /26 subnets only have 64 addresses. With 5 reserved addresses that means they only have 59 usable addresses. This is insufficient for the question requirement of 60 nodes per region. /27 subnets only have 32 addresses. similarly insufficient. That leaves only /25 subnets A. Create two /25 subnets in different regions. Each subnet has 128 IP addresses, but with five reserved addresses, the usable IP addresses would be 123. The total available capacity across both subnets would be 2 * 123 = 246. B. Create three /25 subnets in different regions. Similar to option A, each subnet has 128 IP addresses, but with five reserved addresses, the usable IP addresses would be 123. The total available capacity across three subnets would be 3 * 123 = 369 The question does not concern itself with cost, overheard, complexity, or performance. Since it asks for what BEST fits the requirements, I will say option B provides slightly more capacity and fault tolerance with an additional subnet.
upvoted 2 times
TheFivePips
5 months, 3 weeks ago
I am changing this answer to A because I overlooked that you cannot create more than 2 subnets from a /24 network. To subnet a network, you borrow bits from the host portion to create smaller subnets. The number of bits you borrow determines the number of subnets you can create and the size of each subnet. Here's how you can determine the number of subnets you can create: Determine the Number of Subnet Bits: Subtract the original prefix length from the desired new prefix length. For example, if you want to subnet a /24 network into /26 subnets, you would subtract 24 from 26, resulting in 2 subnet bits. Calculate the Number of Subnets: Raise 2 to the power of the number of subnet bits. This gives you the number of subnets you can create. For example, if you have 2 subnet bits, you can create 2^2 = 4 subnets. this means that from a /24 network you can create only 2 /25 subnets( 25-24 = 1, 2^1 = 2) 4 subnets of /26 ( 26-24 = 2, 2^2 = 4) (theses ones still fail to make enough nodes per region however) 8 subnets of /27 (27-24 = 3, 2^3= 8)
upvoted 2 times
...
...
kuzummjakk
8 months ago
Selected Answer: F
The "Create two/three" and the "HA" and "horizontal scaling" threw me off. Requirements: 60 IPs total (per region), 5 reserved IPs (per subnet) /27 gives you 30 IPs. Since the reserved IPs are taken PER subnet, it'll be 25 per subnet. If you make 3 of these, you have 75 IPs for the nodes.
upvoted 2 times
TheFivePips
5 months, 3 weeks ago
The requirement is for 60 per region, or 60 per subnet, if I understand the wording of the answers correctly. This is a tricky question because 1) you cannot even make a subnet in a different regions from the original network as far as I know (making this entire question impossible). This might be possible on some CSP but if it is, I dont know about it. 2) you need to know how to calculate how many subnets you can make from a given network 3) you need to know how many hosts you can make for each subnet
upvoted 1 times
...
...
anonymonkey
11 months, 4 weeks ago
E. Five reserve network IP addresses per subnet denotes /27 (/25 yields 2, /26 yields 4 & /27 yields 8 meaning a /27 is required for 5 network IP from the subnetted /24) 60 nodes peak capacity per region means you need two /27 with 30 usable each by giving 5 bits to the host field. ( 1 yields 2, 2 yields 4, 3 yields 8, 4 yields 16 and 5 yields 32. Minus two IPs for the network and broadcast leaving 30.) Two of these would be peak capacity of 60. Answer is two /27 subnets in different regions.
upvoted 2 times
...
SecPlus2022
1 year, 4 months ago
Selected Answer: A
You need 65 IPs per region. /27 will only give you 32 and /26 will only give you 64. You need a /25 network which will give you 128 per region. Having two regions will give you the requirement of high availability. Yes, 3 regions is better than 2, but it doesn't ask for the best high availability option, it just asks for high availability which 2 regions provides.
upvoted 4 times
Securityguy42
7 months, 1 week ago
This. I was thinking C. But as its pointed out, need 5 reserved IP addresses. So A makes the most sense.
upvoted 1 times
...
TheFivePips
5 months, 3 weeks ago
This question is hard. You literally cannot make 3 /25 subnets from a /24 network. A is correct because B is impossible, not because A is enough. The question doesn't say anything about cost or performance or anything, so choosing A over B because A provides enough HA is bad reasoning. IF B were possible it would have more than enough HA to meet all the requirements, just the same as A
upvoted 1 times
...
...
Zak11
1 year, 6 months ago
Selected Answer: D
The requirement of 60 nodes peak capacity per region suggests that the solution should be designed for scalability. Additionally, the requirement of high availability indicates that the solution should be distributed across multiple regions. Each subnet should have at least five reserved network IP addresses. This leaves 251 addresses per subnet in a /24 range. To meet these requirements, the BEST solution would be to create three /26 subnets in different regions. This would provide a total of 753 IP addresses per region (3 subnets x 251 IP addresses per subnet) and allow for horizontal auto-scaling up to 60 nodes per region. Having three subnets per region would provide redundancy and high availability.
upvoted 2 times
...
AustinKelleyNet
1 year, 9 months ago
Selected Answer: A
A is correct
upvoted 2 times
...
ramrod1738
1 year, 9 months ago
To meet the above requirements, the best option would be to create two /26 subnets in different regions (Option C). A /24 network range provides 256 IP addresses, which would be too large for the requirements of 60 nodes peak capacity per region and five reserved network IP addresses per subnet. A /26 subnet provides 64 IP addresses, which is a better fit for the requirements. With two /26 subnets in different regions, the architect can ensure high availability through load balancing and auto-scaling by allocating the IP addresses dynamically. Additionally, two subnets provide ample space for five reserved IP addresses and 60 nodes peak capacity per region. Options A, B, E, and F would provide either too few or too many IP addresses to meet the requirements, so they are not the best choices.
upvoted 1 times
concepcionz
1 year, 7 months ago
A /26 subnet give you 62 usable host, 64 - 2 (Network and Broadcast) but also it's asking for 5 reserved IP address in that case you'll need at least 65 usable IPs, therefore the answer is A because you want to stay in the /24 range. Hope that makes sense
upvoted 4 times
kuzummjakk
8 months ago
although ig it also says "create two" so you'd actually have "124" usable addresses. For /25 it also says "create two" so you'd way overshoot it with "252" usable addresses
upvoted 1 times
...
...
...
bx88
2 years, 4 months ago
Correct answer is A
upvoted 3 times
...
SimplyDebonair
2 years, 7 months ago
"A" would be the correct answer for this scenario on the premise: HA is guaranteed through the horizontal scaling, allowing different subnets in different regions. With 60 nodes (IP addresses), you can count out the /26 (64 available IPs, when you need 5 IPs in reserve) and /27 (32 available IPs aren’t enough). And finally, it is physically impossible to create three /25 subnets due to IPs multiplying/dividing in increments of 2 (i.e., /25 = 128 and /24 = 256).
upvoted 4 times
...
u2637ps
2 years, 8 months ago
So if the question states ony having a /24 to work with it would have to A
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago