Scenario PracticeAmazon Web Services · SOA-C02

SOA-C02 Router R1 Cannot Reach R3 Practice Questions

Practise routing and connectivity troubleshooting scenarios involving R1, R2, R3, static routes, OSPF, next hops and routing tables.

Start Scenario Practice

Common Traps on Router R1 Cannot Reach R3 Practice Questions

  • ·Check both forward and return paths.
  • ·A correct-looking route can still fail if the next hop is unreachable.
  • ·Administrative distance and longest-prefix match can change which route is used.

Sample Questions

Practice all 8
1.

A company has a VPC with a public subnet and a private subnet. An Amazon EC2 instance in the private subnet needs to download security patches from the internet, but the instance must not be directly accessible from the internet. The SysOps administrator configured a NAT gateway in the public subnet and added a route in the private subnet's route table pointing 0.0.0.0/0 to the NAT gateway. The instance's security group allows all outbound traffic. However, the instance still cannot reach the internet. What is the most likely missing configuration?

Explanation: For a NAT gateway to work, it must be placed in a public subnet that has a route to an internet gateway. The NAT gateway uses the internet gateway to send traffic to the internet. The most common oversight is that the public subnet's route table does not have a default route pointing to an internet gateway. Without this, the NAT gateway cannot forward traffic to the internet. While a NAT gateway requires an Elastic IP, it must be assigned during creation; the question states the NAT gateway was configured, so an EIP was likely attached. Network ACLs are default-allowed, so they are not typically the issue.

2.

A company has two Amazon VPCs in the same AWS Region with non-overlapping CIDR blocks. The SysOps administrator needs to establish private connectivity between the two VPCs with high throughput and minimal cost. Which solution should the administrator implement?

Explanation: VPC peering is the simplest and most cost-effective way to connect two VPCs in the same region. It uses the AWS network and provides high throughput. AWS Transit Gateway is a hub-and-spoke solution better suited for many VPCs. AWS Direct Connect and AWS VPN CloudHub are primarily for hybrid connectivity and add unnecessary complexity and cost.

3.

A company has three VPCs in the same AWS region: VPC A (production), VPC B (development), and VPC C (shared services). The VPCs have overlapping CIDR blocks (e.g., VPC A: 10.0.0.0/16, VPC B: 10.0.0.0/16, VPC C: 10.1.0.0/16). The SysOps administrator needs to enable private IP communication between VPC A and VPC C, and between VPC B and VPC C, but not between VPC A and VPC B. The solution must also support a growing number of VPCs in the future. Which AWS service should be used?

Explanation: VPC peering does not support overlapping CIDR blocks. AWS Transit Gateway supports multiple VPC attachments and can route traffic based on route tables, but it still cannot resolve overlapping IP addresses; you cannot have two VPCs with identical CIDR blocks communicating directly because the Transit Gateway would not know which VPC to forward traffic to for a given IP. However, the question says VPC A and VPC B both have 10.0.0.0/16, and they do not need to communicate directly. VPC C has 10.1.0.0/16, so VPC C is unique. VPC A and VPC B can each connect to VPC C as long as they use different route tables. But the overlapping CIDR issue still exists: if VPC A sends traffic to an IP in 10.0.0.0/16, Transit Gateway would route based on the most specific route; but since both VPC A and VPC B use the same CIDR, the Transit Gateway cannot distinguish. However, for traffic from VPC A to VPC C (which is 10.1.0.0/16) there is no conflict. Similarly from VPC B to VPC C. The problem arises if VPC A wants to reach an IP in 10.0.0.0/16 that might be in VPC B, but that is not required. Transit Gateway can handle this by using different route tables for VPC A and VPC B: each route table will have a route for 10.1.0.0/16 pointing to the VPC C attachment, and a route for the local VPC's CIDR pointing to the local attachment (or blackhole). But VPC A's route table might have a route for 10.0.0.0/16 pointing to local, but if VPC A tries to reach an IP in 10.0.0.x, it will be routed locally within VPC A. So Transit Gateway can work. However, AWS recommends that for overlapping CIDRs, you use solutions like NAT or PrivateLink, but Transit Gateway has limitations. The better answer for today's AWS architecture is to use AWS PrivateLink to allow VPC A and VPC B to access services in VPC C via Network Load Balancer endpoints. This avoids routing issues due to overlapping CIDRs and is scalable. Transit Gateway with Network Manager could work, but overlapping CIDRs are not recommended and require careful route table design and may cause asymmetric routing. The question says 'supports growing number of VPCs' - Transit Gateway is designed for that. But given the overlapping CIDR issue, PrivateLink or VPN might be more appropriate. However, PrivateLink requires services in VPC C to be exposed via NLB and endpoints in VPC A and B. This is a valid solution and avoids CIDR overlap. AWS PrivateLink supports inter-VPC communication without peering or transit gateway, and it works with overlapping CIDRs because it uses private IP addresses in the endpoint's subnet. So this is likely the correct answer. Option: Use AWS PrivateLink with Network Load Balancers in VPC C and VPC endpoints in VPC A and VPC B. That meets all requirements.

4.

A company has two VPCs in different AWS regions (us-east-1 and eu-west-1) that are peered. Applications in both VPCs need to communicate using private IP addresses. The ping tests are successful, but the latency is significantly higher than expected. Which change is most likely to improve the latency between the VPCs?

Explanation: VPC Peering connections across regions do not support reflexive DNS resolution by default. By enabling 'DNS resolution' from the requester VPC and 'DNS hostname' in the accepter VPC, instances can resolve private DNS names of peered VPC instances, which may lead to more direct routing. However, cross-region VPC peering traffic is routed through AWS backbone, but DNS resolution can affect whether the private IP of the instance is used or if traffic goes via public internet. Increasing MTU might help but the issue is likely DNS resolution. Transit Gateway does not inherently reduce latency across regions. The ECMP (Equal-cost multi-path routing) is not applicable to VPC peering.

5.

A company has multiple VPCs in the same AWS account and Region, each with overlapping CIDR blocks (10.0.0.0/16). The SysOps administrator needs to establish connectivity between all VPCs and the on-premises network via AWS Transit Gateway. Additionally, certain VPCs must be isolated from each other while still reaching on-premises. How should the administrator configure the Transit Gateway to meet these requirements?

Explanation: AWS Transit Gateway supports separate route tables. By attaching each VPC to a specific route table, you can control which VPCs can communicate. Overlapping CIDRs require route tables to be isolated to avoid conflicts, and VPCs that need isolation should not share the same route table.

Related Topics

show ip routeospf practice questionsstatic routing

Frequently asked questions

How do "Router R1 Cannot Reach R3 Practice Questions" appear on the real SOA-C02?

Practise routing and connectivity troubleshooting scenarios involving R1, R2, R3, static routes, OSPF, next hops and routing tables. These appear throughout the SOA-C02 and require you to apply your knowledge, not just recall facts.

How many scenario questions are on the SOA-C02 exam?

Cisco doesn't publish an exact breakdown, but scenario-based questions (especially exhibit and command-output formats) make up a significant portion of the SOA-C02. Practicing each scenario type ensures you're ready for any format.

Are these SOA-C02 scenario practice questions free?

Yes — all scenario practice on Courseiva is completely free. Sign up for a free account to track your progress and see which scenario types you've mastered.

Ready to practice this scenario type?

Launch a full Router R1 Cannot Reach R3 Practice Questions session with instant scoring and detailed explanations.

Start Scenario Practice →