Difficulty: Medium
Correct Answer: 192.168.30.0/24
Explanation:
Introduction / Context:
Distance-vector protocols periodically advertise routes out interfaces. Split horizon says a router must not advertise a route back out the same interface on which it was learned. This prevents simple routing loops.
Given Data / Assumptions:
Concept / Approach:
Under split horizon, any prefix learned from a neighbor on an interface is not advertised back out that interface to that neighbor. Locally connected networks (not learned via that neighbor) are eligible to be advertised. Therefore, of the listed options, only the RIP-learned route 192.168.30.0/24 will be suppressed when sending updates back to 192.168.40.1 over Serial0.
Step-by-Step Solution:
Identify learned-via-Serial0: 192.168.30.0/24 (R via 192.168.40.1).Identify locally connected: 172.16.30.0/24 (Loopback0), 192.168.50.0/24 (Ethernet0), and the link network 192.168.40.0/24.Apply split horizon: suppress only those learned on Serial0 when advertising out Serial0.Conclude the suppressed route is 192.168.30.0/24.
Verification / Alternative check:
Use debugging (debug ip rip) and observe that locally connected networks are advertised out Serial0, while the route learned from 192.168.40.1 (192.168.30.0/24) is omitted or poisoned depending on configuration.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming all routes are suppressed; only routes learned on that same interface are suppressed, not connected routes or routes learned elsewhere.
Final Answer:
192.168.30.0/24
Discussion & Comments