ejercicio rip ospf eigrp redistribucion rm dl.pdf

6
EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL =======R1=========  enable configure terminal hostname R1 line console 0 password cisco login exit interface loopback 0 ip address 192.168.48.1 255.255.255.0 exit interface loopback 1 ip address 192.168.49.1 255.255.255.0 exit

Upload: pierre1982

Post on 29-Oct-2015

52 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

7/15/2019 EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

http://slidepdf.com/reader/full/ejercicio-rip-ospf-eigrp-redistribucion-rm-dlpdf 1/6

EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL

=======R1=========  

enable

configure terminal

hostname R1

line console 0

password cisco

login

exit

interface loopback 0

ip address 192.168.48.1 255.255.255.0

exit

interface loopback 1

ip address 192.168.49.1 255.255.255.0

exit

Page 2: EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

7/15/2019 EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

http://slidepdf.com/reader/full/ejercicio-rip-ospf-eigrp-redistribucion-rm-dlpdf 2/6

  interface loopback 2

ip address 192.168.50.1 255.255.255.0

exit

interface loopback 3

ip address 192.168.51.1 255.255.255.0

exit

interface serial 0/0

ip address 12.0.0.1 255.255.255.252

clock rate 64000

no shutdown

exit

access-list 10 deny 192.168.30.0

0.0.0.255

access-list 10 deny 192.168.40.0

0.0.0.255

access-list 10 permit any

router rip

version 2

distribute-list 10 in

passive-interface default

no passive-interface serial 0/0

network 192.168.48.0

network 192.168.49.0

network 192.168.50.0

network 192.168.51.0

network 12.0.0.0

no auto-summary

end

wr

============R2===========

enable

configure terminal

hostname R2

line console 0

password cisco

login

exit

interface loopback 4

ip address 192.168.25.1 255.255.255.0

ip ospf network point-to-point

exit

interface loopback 5

ip address 192.168.35.1 255.255.255.0

ip ospf network point-to-point

exit

Page 3: EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

7/15/2019 EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

http://slidepdf.com/reader/full/ejercicio-rip-ospf-eigrp-redistribucion-rm-dlpdf 3/6

 

interface serial 0/0

ip address 23.0.0.1 255.255.255.0

clock rate 64000

no shutdown

exit

interface serial 0/1

ip address 12.0.0.2 255.255.255.252

clock rate 64000

no shutdown

exit

router rip

version 2

redistribute ospf 1 metric 4

passive-interface default

no passive-interface serial 0/1

network 12.0.0.0

exit

router ospf 1

distance ospf intra-area 105 inter-area

115 external 175

redistribute rip subnets metric-type 1

metric 50000

passive-interface default

no passive-interface serial 0/0

network 23.0.0.0 0.0.0.255 area 0

network 192.168.25.0 0.0.0.255 area 1

network 192.168.35.0 0.0.0.255 area 1

end

wr

==========R3========

enable

configure terminal

hostname R3

line console 0

password cisco

login

exit

interface loopback 6

ip address 192.168.8.1 255.255.255.0

ip ospf network point-to-point

exit

interface loopback 7

ip address 192.168.9.1 255.255.255.0

ip ospf network point-to-point

exit

Page 4: EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

7/15/2019 EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

http://slidepdf.com/reader/full/ejercicio-rip-ospf-eigrp-redistribucion-rm-dlpdf 4/6

 

interface loopback 8

ip address 192.168.10.1 255.255.255.0

ip ospf network point-to-point

exit

interface loopback 9

ip address 192.168.11.1 255.255.255.0

ip ospf network point-to-point

exit

interface loopback 10

ip address 192.168.30.1 255.255.255.0

ip ospf network point-to-point

exit

interface loopback 11

ip address 192.168.40.1 255.255.255.0

ip ospf network point-to-point

exit

interface serial 0/0

ip address 34.0.0.1 255.255.255.0

clock rate 64000

no shutdown

exit

nterface serial 0/1

ip address 23.0.0.2 255.255.255.0

clock rate 64000

no shutdown

exit

access-list 1 permit 192.168.35.0

0.0.0.255

access-list 1 permit 192.168.25.00.0.0.255

router-map redis-ospf deny 10

match ip address 1

exit

route-map redis-ospf permit 20

exit

router ospf 1

area 2 range 192.168.8.0 255.255.252.0

redistribute eigrp 65500 subnets

passive-interface default

no passive-interface serial 0/1

network 23.0.0.0 0.0.0.255 area 0

network 192.168.8.0 0.0.0.255 area 2

network 192.168.9.0 0.0.0.255 area 2

network 192.168.10.0 0.0.0.255 area 2

Page 5: EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

7/15/2019 EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

http://slidepdf.com/reader/full/ejercicio-rip-ospf-eigrp-redistribucion-rm-dlpdf 5/6

  network 192.168.11.0 0.0.0.255 area 2

network 192.168.30.0 0.0.0.255 area 3

network 192.168.40.0 0.0.0.255 area 3

exit

router eigrp 65500

no auto-summary

redistribute ospf 1 metric 1544 2000 255

1 1500 route-map redis-ospf 

passive-interface default

no passive-interface serial 0/0

network 34.0.0.0 0.0.0.255

end

wr

============R4============

enable

configure terminal

hostname R4

line console 0

password cisco

login

exit

interface loopback 12

ip address 192.168.56.1 255.255.255.0

exit

interface loopback 13

ip address 192.168.57.1 255.255.255.0

exit

interface loopback 14

ip address 192.168.58.1 255.255.255.0

exit

interface loopback 15

ip address 192.168.59.1 255.255.255.0

exit

interface serial 0/1

ip summary-address eigrp 65500

192.168.56.0 255.255.252.0

ip address 34.0.0.2 255.255.255.0

clock rate 64000

no shutdown

exit

Page 6: EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

7/15/2019 EJERCICIO RIP OSPF EIGRP REDISTRIBUCION RM DL.pdf

http://slidepdf.com/reader/full/ejercicio-rip-ospf-eigrp-redistribucion-rm-dlpdf 6/6

 router eigrp 65500

no auto-summary

distance eigrp 95 165

passive-interface default

no passive-interface serial 0/1

network 34.0.0.0 0.0.0.255

network 192.168.56.0 0.0.0.255

network 192.168.57.0 0.0.0.255

network 192.168.58.0 0.0.0.255

network 192.168.59.0 0.0.0.255

end

wr