Cisco Dynamic Routing Configuration

Foreword:

After learning static routing configuration, it is time to learn dynamic routing. so

Finish after studying.

Prepare:

PC:192.168.1.10

R1 : fa0 / 0 192.168.1.1 fa0 / 1 1.1.12.1 

R2: fa0 / 0 1.1.1.12.2 fa0 / 1 1.1.23.1

R3: fa0 / 0 1.1.1.23.2 fa0 / 1 192.168.3.1

 

text:

R1 instruction:

enable
config t
int fa0 / 0
ip add 192.168.1.1 255.255.255.0
exit

int fa0 / 1
ip add 1.1.12.1 255.255.255.0
exit

router rip #routing protocol
version 2 #version selection 2
network 192.168.1.0 #Announce IP segment
network 1.1.12.0 #Announce IP segment

 R2 command:

enable
config t
int fa0 / 0
ip add 1.1.12.2 255.255.255.0
exit

int fa0 / 1
ip add 1.1.23.1 255.255.255.0
exit

router rip
version 2 network 1.1.12.0 network 1.1.23.0

 R3 command:

int fa0 / 0
ip add 1.1.23.2 255.255.255.0
exit

int fa0 / 1
ip add 192.168.3.0 255.255.255.0
exit

router rip
version 2
network 1.1.23.0
network 192.168.3.0

 Test chart:

 

 

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324836824&siteId=291194637