Exhibit
Refer to the exhibit.
```
Router# show ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is 10.0.0.1 to network 0.0.0.0
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/30 is directly connected, GigabitEthernet0/0
L 10.0.0.2/32 is directly connected, GigabitEthernet0/0
192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.1.0/24 is directly connected, GigabitEthernet0/1
L 192.168.1.1/32 is directly connected, GigabitEthernet0/1
S* 0.0.0.0/0 [1/0] via 10.0.0.1
```- A
Look up the destination in the ARP cache and then forward.
Why wrong: It first does routing lookup; ARP is for local delivery.
- B
Send an ICMP unreachable message back to the source.
Why wrong: Since a default route exists, it will forward, not send unreachable.
- C
Forward the packet out GigabitEthernet0/1 to the default gateway.
Why wrong: The default route points out GigabitEthernet0/0 via 10.0.0.1.
- D
Drop the packet because there is no route to 8.8.8.8.
Why wrong: The default route exists, so it will not be dropped.
- E
Forward the packet out GigabitEthernet0/0 via 10.0.0.1.
The default route is used, and the next hop is 10.0.0.1 out Gi0/0.
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.
Sign in to join the discussion.