Difficulty: Easy
Correct Answer: Information about a route should not be sent back in the direction from which the original update came.
Explanation:
Introduction / Context:
Split horizon is a classic loop-prevention technique used by distance-vector routing protocols such as RIP and IGRP. Understanding the exact definition helps you predict which routes are advertised on which interfaces and why certain updates are intentionally suppressed.
Given Data / Assumptions:
Concept / Approach:
Split horizon states: do not advertise a route back out the interface on which it was learned. This suppresses misleading advertisements that could cause a neighbor to believe you have a better path to a network when your information originally came from that same neighbor. Some implementations extend this with poison reverse, which advertises the route back with an infinite metric to make the suppression explicit.
Step-by-Step Solution:
Identify the interface on which a route was learned (incoming interface).When generating periodic updates, omit that route on the same outgoing interface (split horizon).Optionally, use poison reverse to send the route back with metric 16 (in RIP) instead of omitting it.Result: neighbors do not re-install a route that would create a loop.
Verification / Alternative check:
Enable protocol debugging (for example, debug ip rip) on a lab router and observe that routes learned on Serial0 are not re-advertised out Serial0 unless poison reverse is configured.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing split horizon with holddown timers or route poisoning; in practice, networks often use a combination of these mechanisms, but their definitions differ.
Final Answer:
Information about a route should not be sent back in the direction from which the original update came.
Discussion & Comments