A Cisco router configured with the static route `ip route 172.16.10.0 255.255.255.0 10.1.1.2` receives an IPv4 packet destined for . Place the steps performed by the router to process and forward this packet in the correct sequential order from first to last.
- 1The router receives an IPv4 packet destined for host on an ingress interface.
- 2The router evaluates its routing table and matches the destination IP to the static route prefix .
- 3The router extracts the next-hop IPv4 address () specified in the static route entry.
- 4The router performs a recursive lookup in the routing table for to determine the outbound egress interface.
- 5The router encapsulates the IPv4 packet into a Layer 2 frame and transmits it out the resolved egress interface.
Cevap
The correct sequence of router operation steps is: (1) Packet arrival at ingress interface, (2) Destination matching against static route prefix 172.16.10.0/24, (3) Extraction of next-hop IP 10.1.1.2, (4) Recursive routing table lookup for 10.1.1.2 to find egress interface, and (5) Layer 2 encapsulation and forwarding out the resolved exit interface.
When a router receives a packet destined for a subnet covered by a next-hop static route, it first matches the destination prefix, identifies the next-hop IP, and then executes a recursive lookup to find the directly connected egress interface before encapsulating and transmitting the frame.
Adım Adım Çözüm
Anahtar Kavram
Recursive Lookup for Next-Hop IPv4 Static Routes