Question 62 of 497
Implementing hybrid interconnectivitymediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is the route from the peer with IP 169.254.1.1. Google Cloud Router’s BGP best path selection uses a deterministic tie-breaker when all other attributes—like AS path length and MED—are equal: it prefers the route with the higher link-local (peer) IP address. Since 169.254.1.1 is numerically greater than 169.254.0.1, that peer’s route wins for traffic destined to 10.1.0.0/24. On the Google Professional Cloud Network Engineer exam, this scenario tests your understanding of Cloud Router’s unique tie-breaking logic for Dedicated Interconnect or Partner Interconnect with multiple VLAN attachments. A common trap is assuming a lower IP is preferred, as in traditional BGP, but Google Cloud inverts this rule. Remember the memory tip: “Higher IP, higher priority”—think of the peer IP as a score where the bigger number takes the traffic.

PCNE Implementing hybrid interconnectivity Practice Question

This PCNE practice question tests your understanding of implementing hybrid interconnectivity. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Exhibit

gcloud compute routers describe my-router --region=us-central1
---
bgp:
  advertiseMode: CUSTOM
  advertisedGroups:
  - ALL_SUBNETS
  advertisedIpRanges:
  - range: 10.0.0.0/8
  asn: 65001
bgpPeers:
- interfaceName: if-bgp-1
  ipAddress: 169.254.0.2
  peerIpAddress: 169.254.0.1
  peerAsn: 65002
  advertisedRoutePriority: 100
  customLearnedRoutePriority: 200
- interfaceName: if-bgp-2
  ipAddress: 169.254.1.2
  peerIpAddress: 169.254.1.1
  peerAsn: 65002
  advertisedRoutePriority: 100
  customLearnedRoutePriority: 100

Refer to the exhibit. The Cloud Router is connected to two on-premises routers via dedicated interconnect. The on-premises routers advertise the same prefix 10.1.0.0/16. Which on-premises router's route will be preferred by Google Cloud for traffic destined to 10.1.0.0/24? (Assume equal AS path length and MED from on-premises.)

Question 1mediummultiple choice
Read the full NAT/PAT explanation →

Exhibit

gcloud compute routers describe my-router --region=us-central1
---
bgp:
  advertiseMode: CUSTOM
  advertisedGroups:
  - ALL_SUBNETS
  advertisedIpRanges:
  - range: 10.0.0.0/8
  asn: 65001
bgpPeers:
- interfaceName: if-bgp-1
  ipAddress: 169.254.0.2
  peerIpAddress: 169.254.0.1
  peerAsn: 65002
  advertisedRoutePriority: 100
  customLearnedRoutePriority: 200
- interfaceName: if-bgp-2
  ipAddress: 169.254.1.2
  peerIpAddress: 169.254.1.1
  peerAsn: 65002
  advertisedRoutePriority: 100
  customLearnedRoutePriority: 100

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The route from peer with IP 169.254.1.1

Google Cloud Router prefers the route with the higher link-local (peer) IP address when two on-premises routers advertise the same prefix via separate VLAN attachments on a Dedicated Interconnect, assuming equal AS path length and MED. Since 169.254.1.1 is higher than 169.254.0.1, the route from the peer with IP 169.254.1.1 is selected. This behavior is specific to Google Cloud's BGP best-path selection tie-breaking logic, which uses the peer IP address as a deterministic tiebreaker.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The route with lower peer IP address

    Why it's wrong here

    Peer IP address does not affect route preference.

  • Both routes will be used equally (ECMP)

    Why it's wrong here

    Different priorities prevent ECMP.

  • The route from peer with IP 169.254.0.1

    Why it's wrong here

    This peer has customLearnedRoutePriority 200, which is higher (less preferred).

  • The route from peer with IP 169.254.1.1

    Why this is correct

    This peer has customLearnedRoutePriority 100, which is lower (more preferred).

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the misconception that BGP always uses the lowest neighbor IP address as a tiebreaker, but Google Cloud Router uses the highest peer IP address (link-local address) for Dedicated Interconnect VLAN attachments.

Detailed technical explanation

How to think about this question

Google Cloud Router implements a modified BGP best-path selection algorithm that, after comparing standard attributes (weight, local preference, AS path, MED, eBGP vs iBGP), uses the highest BGP identifier (router ID) as a tiebreaker. However, for VLAN attachments on Dedicated Interconnect, the link-local IP addresses (169.254.x.x) serve as the BGP identifiers, so the route from the peer with the higher link-local IP is preferred. This ensures deterministic behavior without relying on ECMP, which could cause asymmetric routing or suboptimal failover in hybrid cloud scenarios.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related PCNE practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free PCNE practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this PCNE question test?

Implementing hybrid interconnectivity — This question tests Implementing hybrid interconnectivity — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The route from peer with IP 169.254.1.1 — Google Cloud Router prefers the route with the higher link-local (peer) IP address when two on-premises routers advertise the same prefix via separate VLAN attachments on a Dedicated Interconnect, assuming equal AS path length and MED. Since 169.254.1.1 is higher than 169.254.0.1, the route from the peer with IP 169.254.1.1 is selected. This behavior is specific to Google Cloud's BGP best-path selection tie-breaking logic, which uses the peer IP address as a deterministic tiebreaker.

What should I do if I get this PCNE question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This PCNE practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PCNE exam.