0% found this document useful (0 votes)
34 views

RIPv2 Part 1

The document discusses configuring RIPv2 on routers, examining routing updates with debug commands, and verifying network connectivity between PCs. Loopback interfaces are created and RIPv2 is configured on all routers with network statements and disabling auto-summarization. The routing tables and connectivity are then examined.

Uploaded by

nurin
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views

RIPv2 Part 1

The document discusses configuring RIPv2 on routers, examining routing updates with debug commands, and verifying network connectivity between PCs. Loopback interfaces are created and RIPv2 is configured on all routers with network statements and disabling auto-summarization. The routing tables and connectivity are then examined.

Uploaded by

nurin
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 20

LAB 6 - RIP version 2 Routing Protocol

Learning Objectives

1. Examine the current status of the network.


2. Configure RIPv2 on all routers.
3. Examine routing updates with debug ip rip.
4. Examine the routing tables.
5. Verify network connectivity.
1)network addressing – classless network design (VLSM)
2)Routing protocol – classless routing protocol (RIPv2)
Loopback interface
• A loopback interface is a logical, virtual interface in a Cisco Router. A
loopback interface is not a physical interface like Fast Ethernet
interface or Gigabit Ethernet interface.
• Loopback interfaces are always up and running and always available,
even if other physical interfaces in the router are down.
• Loopback interfaces are treated similar to physical interfaces in a
router and we can assign IP addresses to them.
• The command syntax to create a loopback interface is shown below

Router(Config)#int loopback <loopback_interface_number>


Router(Config-if)#ip address <ip_address> <subnet_mask>

interface Loopback0
ip address 172.30.110.1 255.255.255.0

interface Loopback1
ip address 172.30.200.17 255.255.255.240

interface Loopback2
ip address 172.30.200.33 255.255.255.240
Router configuration
1 Hostname
2 Banner motd
3 Password Console
Enable (Privilege)
Telnet (vty)
4 LAN interface Default gateway
5 WAN interface DTE
DCE (clock rate)
6 Ping 1) PC –> default gateway
2) Connected network -> Connected
network CLI to troubleshoot network
1. show ip int brief
7 Routing Static/ RIPv2/ EIGRP/ OSPF 2. show ip route
8 Ping (end to end) PCs -> PCs 3. show run
4. show ip protocols
5. debug ip rip
R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#network 172.30.0.0
R1(config-router)#network 209.165.200.0
R1(config-router)#no auto-summary

R2(config)#router rip
R2(config-router)#version 2
R2(config-router)#network 10.0.0.0
R2(config-router)#network 209.165.200.0
R2(config-router)#no auto-summary

R3(config)#router rip
TIPS R3(config-router)#version 2
DETERMINE:
R3(config-router)#network 172.30.0.0
1. CONNECTED NETWORKS
2. CLASS OF THE CONNECTED R3(config-router)#network 209.165.200.0
NETWORKS R3(config-router)#no auto-summary
Disable Automatic Summarization
• The no auto-summary command is used to turn off automatic
summarization in RIPv2.
• Disable auto summarization on all routers.
• The routers will no longer summarize routes at major network
boundaries.
R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#network 172.30.0.0
R1(config-router)#network 209.165.200.0
R1(config-router)#no auto-summary
R2(config)#router rip
R2(config-router)#version 2
R2(config-router)#network 10.0.0.0
R2(config-router)#network 209.165.200.0
R2(config-router)#no auto-summary
R3(config)#router rip
R3(config-router)#version 2
R3(config-router)#network 172.30.0.0
R3(config-router)#network 209.165.200.0
R3(config-router)#no auto-summary
CLI to troubleshoot network

1. show ip int brief


2. show ip route – to display routing
table
3. show ip protocols – to display a
summary of configured routing
protocol information
4. debug ip rip - to display RIP routing
updates
5. show run
ROUTER R1
ROUTER R2
ROUTER R3
Verify network connectivity.

1. PC1 PING PC2


2. PC1 PING PC3
3. PC1 PING PC4
4. PC2 PING PC3
5. PC2 PING PC4
6. PC3 PING PC4

You might also like