Routing Fundamentals Flashcards
Command: Show routing table
show ip route
IPv4 Local Route Subnet Mask
/32
Routers: 2 Main Functions
Determine the best path to available networks
Forward traffic to those networks
Command: Configure interface FastEthernet0/0 with IP address 10.0.0.1/24
interface f0/0
ip address 10.0.0.1 255.255.255.0
Command: Configure a static route to the 10.0.1.0/24 network with next hop address of 10.0.0.1
ip route 10.0.1.0 255.255.255.0 10.0.0.1
Command: Configure a summary route for the 10.1.0.0/16 network with next hop of 10.0.0.2
ip route 10.1.0.0 255.255.0.0 10.0.0.2
Longest Prefix Match
When there are overlapping routes, the longest prefix will be selected
Route Load Balancing
When multiple equal length routes are added for the same destination, the router will add them all to the routing table & load balance between them
Command: Configure default route with next hop address 203.0.113.2
ip route 0.0.0.0 0.0.0.0 203.0.113.2