Routing Protocols Fundamentals
Routing Protocols Fundamentals
Facilitador:
Diego Avila P.
Material compilado de CCNA & CCNP
WAN Devices
⚫ A wide-area network (WAN) is a data communications
network spanning a large geographic area such as a state,
province, or country.
WAN Services
Internal Configuration Components
Routers Connected by WAN Technologies
MPLS
Network Layer Path Determination
Internetwork Routers
⚫ Any internetwork must include the following:
Consistent end-to-end addressing
Addresses that represent network topologies
Best path selection
Dynamic routing
Switching
Router Internal Components
Internal Components of a 2600 Router
External Connections on a 2600 Router
Router External Connections
Router User Interface
Router User Interface Modes
Command-Line Interface
Command Modes
User Mode Commands
clock set Command
The User Interface Error Indicator
The show version Command
Configuring Router Passwords
Router> enable
Router# configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)# hostname R1
R1(config)# enable secret class
R1(config)# line console 0
R1(config-line)# logging synchronous
R1(config-line)# password cisco
R1(config-line)# login
R1(config-line)# exit
R1(config)# line vty 0 4
R1(config-line)# password cisco
R1(config-line)# login
R1(config-line)# transport input ssh telnet
R1(config-line)# exit
R1(config)# service password-encryption
R1(config)# banner motd #
Enter TEXT message. End with a new line and the #
***********************************************
WARNING: Unauthorized access is prohibited!
***********************************************
#
Routing Protocols Concepts
Routing Types
Static Routes
Static routes are manually configured. They define an explicit
path between two networking devices. They are not automatically
updated and must be manually reconfigured if the network
topology changes.
Static routing has three primary uses:
It provides ease of routing table maintenance in smaller
networks that are not expected to grow significantly.
It uses a single default route to represent a path to any
network that does not have a more specific match with
another route in the routing table. Default routes are used to
send traffic to any destination beyond the next upstream
router.
It routes to and from stub networks. A stub network is a
network accessed by a single route, and the router has only
one neighbor.
Static Routes in the IP Routing Table
The topology in the figure is simplified to show only one LAN attached to each router.
The figure shows IPv4 and IPv6 static routes configured on R1 to reach the 10.0.4.0/24
and 2001:db8:acad:4::/64 networks on R2.
Specifying Outgoing Interface
• If the router cannot reach the outgoing interface that is being used in the route,
the route will not be installed in the routing table.
• This means if that interface is down, the route will not be placed in the routing
table.
Specifying the Next-hop IP Address
Administrative Distance and Metric
Hoboken#show ip route
Codes: C - connected, S - static,
S 172.16.1.0/24 [1/0] is directly connected, Serial0
C 192.168.2.0/24 is directly connected, Ethernet0
26
Administrative Distance
31
Ping and Traceroute to troubleshoot
32
Default Route
The default route specifies a next-hop router to use when the routing table
does not contain a specific route that matches the destination IP address. A
default route has an IPv4 route entry of 0.0.0.0/0 or an IPv6 route entry of ::/0.
This means that zero or no bits need to match between the destination IP
address and the default route.