|
1
|
- Module 4
- IP Routing (RIPv1, RIPv2, IGRP)
|
|
2
|
- Routing Basics
- Configuring IP Routing in Our Network
- Static Routing
- Default Routing
- Dynamic Routing
- Routing Protocol Basics
- Distance Vector (RIP, IGRP)
- Useful Commands
- Summary
|
|
3
|
- Routing is taking a packet from one devices and sending it through the
network to another device on a different network
- Routers must know (at a minimum)
- Destination Address
- Neighbor Routers from which it can learn about remote networks
- Possible routes to all remote networks
- The best route to each remote network
- How to maintain and verify routing information
|
|
4
|
|
|
5
|
- Router(config)# ip route 192.168.30.0 255.255.255.0 192.168.20.2
|
|
6
|
- Router(config)# ip route 0.0.0.0
0.0.0.0 192.168.20.2
|
|
7
|
- Two types of Routing Protocols
- Interior (RIP, IGRP, EIGRP, OSPF)
- Exterior (BGP)
- Three classes of Routing Protocols
- Distance Vector (RIP, IGRP)
- Link State (OSPF)
- Hybrid (EIGRP)
|
|
8
|
- Routing Loops
- Maximum Hop Count
- Split Horizon
- Route Poisoning
- Holddowns
|
|
9
|
- True Distance-Vector Routing Protocol
- Sends a complete routing table out all active interfaces every 30
seconds
- Uses only hop count. Max is 15 by
default, meaning 16 is “unreachable”
- RIPv1 uses only classful routing.
- RIPv2 uses prefix routing and sends the subnet mask w/ the table
|
|
10
|
- Router# config t
- Router(config)# router rip
- Router(config-router)# network 192.168.10.0
- Router(config-router)# passive-interface ethernet 0
- Router(config-router)# Ctrl+Z
- Router# show ip route
|
|
11
|
- Cisco Proprietary
- Can be used in large Internetworks
- Uses an Autonomous System (AS) # for activation
- Full route table update every 90 seconds
- Uses bandwidth and delay of the line as metric (lowest metric wins)
|
|
12
|
- Router# config t
- Router(config)# router igrp 10
- Router(config-router)# network 192.168.10.0
- Router(config-router)# passive-interface ethernet 0
- Router(config-router)# Ctrl+Z
- Router# show ip route
|
|
13
|
|
|
14
|
- Routing Basics
- Configuring IP Routing in Our Network
- Static Routing
- Default Routing
- Dynamic Routing
- Routing Protocol Basics
- Distance Vector (RIP, IGRP)
- Useful Commands
|