EIGRP综合小实验(负载均衡,默认路由重分布,手工路由汇总,含端口映射,DHCP等)--CCNP学习笔记

简介:

逻辑拓扑图

 

EIGRP综合小实验(负载均衡,默认路由重分布,手工路由汇总,含端口映射,DHCP等)--CCNP学习笔记

 

 

实验要求:

1.R1R3右边接口地址通过R4DHCP server学到地址

2.全网EIGRP,每台设备上起lo,地址为设备编号(比如R11.1.1.1/24

3.R3上起一个lo口,地址为100.100.100.100/24,不允许通告进EIGRP,但全网可达,而且必须用EIGRP实现

4.R5telneR4lo时跑到R2上去

5.R2下面的接口bandwidth512,实现负载均衡

6.R5上起lo10-20,手工精确汇总

 

 

 

 

 

 

R1配置:

R1#sh run

Building configuration...

 

Current configuration : 1153 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname R1

!

boot-start-marker

boot-end-marker

!

no aaa new-model

memory-size iomem 5

!

ip cef

no ip domain lookup

!

interface Loopback0

 ip address 1.1.1.1 255.255.255.0

!

interface Ethernet0/0

 ip address dhcp

 full-duplex

!

interface Serial1/0

 ip address 12.1.1.1 255.255.255.0

 serial restart-delay 0

!

router eigrp 100

 network 1.1.1.0 0.0.0.255

 network 12.1.1.0 0.0.0.255

 network 134.1.1.0 0.0.0.255

 no auto-summary

!

no ip http server

no ip http secure-server

!        

control-plane

!

line con 0

 logging synchronous

line aux 0

line vty 0 4

!

end

----------------------------------华丽分割线------------------------------

R1路由表:

R1#sh ip ro

 

Gateway of last resort is 134.1.1.2 to network 3.0.0.0

 

     1.0.0.0/24 is subnetted, 1 subnets

C       1.1.1.0 is directly connected, Loopback0

     2.0.0.0/24 is subnetted, 1 subnets

D       2.2.2.0 [90/2297856] via 12.1.1.2, 01:06:14, Serial1/0

D*   3.0.0.0/8 [90/409600] via 134.1.1.2, 01:06:20, Ethernet0/0

     4.0.0.0/24 is subnetted, 1 subnets

D       4.4.4.0 [90/409600] via 134.1.1.4, 01:28:10, Ethernet0/0

     5.0.0.0/24 is subnetted, 1 subnets

D       5.5.5.0 [90/2323456] via 134.1.1.4, 01:28:23, Ethernet0/0

     23.0.0.0/24 is subnetted, 1 subnets

D       23.1.1.0 [90/2195456] via 134.1.1.2, 01:06:17, Ethernet0/0

     12.0.0.0/24 is subnetted, 1 subnets

C       12.1.1.0 is directly connected, Serial1/0

     134.1.0.0/24 is subnetted, 1 subnets

C       134.1.1.0 is directly connected, Ethernet0/0

     45.0.0.0/24 is subnetted, 1 subnets

D       45.1.1.0 [90/2195456] via 134.1.1.4, 01:28:10, Ethernet0/0

D    192.168.0.0/20 [90/2323456] via 134.1.1.4, 00:42:19, Ethernet0/0

 

----------------------------------华丽分割线------------------------------

R2配置:

R2#sh run

Building configuration...

 

Current configuration : 1323 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname R2

!

boot-start-marker

boot-end-marker

!

enable password cisco

!

no aaa new-model

memory-size iomem 5

!

!

ip cef

no ip domain lookup

!

username lust privilege 15 password 0 cisco

!

interface Loopback0

 ip address 2.2.2.2 255.255.255.0

!

interface Serial1/0

 bandwidth 512

 ip address 23.1.1.2 255.255.255.0

 serial restart-delay 0

 clock rate 64000

!

interface Serial1/1

 ip address 12.1.1.2 255.255.255.0

 serial restart-delay 0

 clock rate 64000

!

router eigrp 100

 variance 3

 network 2.2.2.0 0.0.0.255

 network 12.1.1.0 0.0.0.255

 network 23.1.1.0 0.0.0.255

 no auto-summary

!

no ip http server

no ip http secure-server

!

control-plane

!

line con 0

 logging synchronous

line aux 0

line vty 0 4

 password cisco

 login

!

end

----------------------------------华丽分割线------------------------------

R2路由表

R2#sh ip ro

Gateway of last resort is 23.1.1.3 to network 3.0.0.0

 

     1.0.0.0/24 is subnetted, 1 subnets

D       1.1.1.0 [90/5665536] via 23.1.1.3, 01:08:00, Serial1/0

                [90/2297856] via 12.1.1.1, 01:08:00, Serial1/1

     2.0.0.0/24 is subnetted, 1 subnets

C       2.2.2.0 is directly connected, Loopback0

D*   3.0.0.0/8 [90/5639936] via 23.1.1.3, 01:08:00, Serial1/0

               [90/2323456] via 12.1.1.1, 01:08:00, Serial1/1

     4.0.0.0/24 is subnetted, 1 subnets

D       4.4.4.0 [90/5665536] via 23.1.1.3, 01:08:00, Serial1/0

                [90/2323456] via 12.1.1.1, 01:08:00, Serial1/1

     5.0.0.0/24 is subnetted, 1 subnets

D       5.5.5.0 [90/6177536] via 23.1.1.3, 01:08:00, Serial1/0

                [90/2835456] via 12.1.1.1, 01:08:00, Serial1/1

     23.0.0.0/24 is subnetted, 1 subnets

C       23.1.1.0 is directly connected, Serial1/0

     12.0.0.0/24 is subnetted, 1 subnets

C       12.1.1.0 is directly connected, Serial1/1

     134.1.0.0/24 is subnetted, 1 subnets

D       134.1.1.0 [90/5537536] via 23.1.1.3, 01:08:00, Serial1/0

                  [90/2195456] via 12.1.1.1, 01:08:00, Serial1/1

     45.0.0.0/24 is subnetted, 1 subnets

D       45.1.1.0 [90/6049536] via 23.1.1.3, 01:08:00, Serial1/0

                 [90/2707456] via 12.1.1.1, 01:08:00, Serial1/1

D    192.168.0.0/20 [90/6177536] via 23.1.1.3, 00:44:36, Serial1/0

                    [90/2835456] via 12.1.1.1, 00:44:36, Serial1/1

 ----------------------------------华丽分割线------------------------------

R3配置:

R3#sh run 

Building configuration...

 

Current configuration : 1232 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname R3

!

boot-start-marker

boot-end-marker

!

!

no aaa new-model

memory-size iomem 5

!

!

ip cef

no ip domain lookup

!

interface Loopback0

 ip address 3.3.3.3 255.0.0.0

!

interface Loopback100

 ip address 100.100.100.100 255.255.255.0

!

interface Ethernet0/0

 ip address dhcp

 full-duplex

!

interface Serial1/1

 ip address 23.1.1.3 255.255.255.0

 serial restart-delay 0

!

router eigrp 100

 network 3.0.0.0

 network 23.1.1.0 0.0.0.255

 network 134.1.1.0 0.0.0.255

 no auto-summary

!        

no ip http server

no ip http secure-server

!

ip default-network 3.0.0.0

!

control-plane

!

line con 0

 logging synchronous

line aux 0

line vty 0 4

!

end

 

----------------------------------华丽分割线------------------------------

R3路由表

R3#sh ip ro

Gateway of last resort is not set

 

     1.0.0.0/24 is subnetted, 1 subnets

D       1.1.1.0 [90/409600] via 134.1.1.1, 01:10:38, Ethernet0/0

     2.0.0.0/24 is subnetted, 1 subnets

D       2.2.2.0 [90/2297856] via 23.1.1.2, 01:10:38, Serial1/1

     100.0.0.0/24 is subnetted, 1 subnets

C       100.100.100.0 is directly connected, Loopback100

C*   3.0.0.0/8 is directly connected, Loopback0

     4.0.0.0/24 is subnetted, 1 subnets

D       4.4.4.0 [90/409600] via 134.1.1.4, 01:10:38, Ethernet0/0

     5.0.0.0/24 is subnetted, 1 subnets

D       5.5.5.0 [90/2323456] via 134.1.1.4, 01:10:38, Ethernet0/0

     23.0.0.0/24 is subnetted, 1 subnets

C       23.1.1.0 is directly connected, Serial1/1

     12.0.0.0/24 is subnetted, 1 subnets

D       12.1.1.0 [90/2195456] via 134.1.1.1, 01:10:38, Ethernet0/0

     134.1.0.0/24 is subnetted, 1 subnets

C       134.1.1.0 is directly connected, Ethernet0/0

     45.0.0.0/24 is subnetted, 1 subnets

D       45.1.1.0 [90/2195456] via 134.1.1.4, 01:10:38, Ethernet0/0

D    192.168.0.0/20 [90/2323456] via 134.1.1.4, 00:46:42, Ethernet0/0

 

 ----------------------------------华丽分割线------------------------------

R4配置:

R4#sh run

Building configuration...

 

Current configuration : 1421 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname R4

!

boot-start-marker

boot-end-marker

!

no aaa new-model

memory-size iomem 5

!

ip cef

no ip domain lookup

no ip dhcp use vrf connected

!

ip dhcp pool dhcp

   network 134.1.1.0 255.255.255.0

!

  

interface Loopback0

 ip address 4.4.4.4 255.255.255.0

!

interface Ethernet0/0

 ip address 134.1.1.4 255.255.255.0

 ip nat inside

 ip virtual-reassembly

 full-duplex

!

interface Serial1/1

 ip address 45.1.1.4 255.255.255.0

 ip nat outside

 ip virtual-reassembly

 serial restart-delay 0

!

 

router eigrp 100

 network 4.4.4.0 0.0.0.255

 network 45.1.1.0 0.0.0.255

 network 134.1.1.0 0.0.0.255

 no auto-summary

!

no ip http server

no ip http secure-server

!

ip nat inside source static tcp 2.2.2.2 23 4.4.4.4 23 extendable

!

control-plane

!

line con 0

 logging synchronous

line aux 0

line vty 0 4

 password cisco

 login

!

end

 ----------------------------------华丽分割线------------------------------

R4路由表

R4#sh ip ro

 

Gateway of last resort is 134.1.1.2 to network 3.0.0.0

 

     1.0.0.0/24 is subnetted, 1 subnets

D       1.1.1.0 [90/409600] via 134.1.1.1, 01:34:11, Ethernet0/0

     2.0.0.0/24 is subnetted, 1 subnets

D       2.2.2.0 [90/2323456] via 134.1.1.2, 01:12:30, Ethernet0/0

                [90/2323456] via 134.1.1.1, 01:12:30, Ethernet0/0

D*   3.0.0.0/8 [90/409600] via 134.1.1.2, 01:24:01, Ethernet0/0

     4.0.0.0/24 is subnetted, 1 subnets

C       4.4.4.0 is directly connected, Loopback0

     5.0.0.0/24 is subnetted, 1 subnets

D       5.5.5.0 [90/2297856] via 45.1.1.5, 01:34:39, Serial1/1

     23.0.0.0/24 is subnetted, 1 subnets

D       23.1.1.0 [90/2195456] via 134.1.1.2, 01:13:38, Ethernet0/0

     12.0.0.0/24 is subnetted, 1 subnets

D       12.1.1.0 [90/2195456] via 134.1.1.1, 01:15:06, Ethernet0/0

     134.1.0.0/24 is subnetted, 1 subnets

C       134.1.1.0 is directly connected, Ethernet0/0

     45.0.0.0/24 is subnetted, 1 subnets

C       45.1.1.0 is directly connected, Serial1/1

D    192.168.0.0/20 [90/2297856] via 45.1.1.5, 00:48:34, Serial1/1

 ----------------------------------华丽分割线------------------------------

R5配置:

R2#sh run

Building configuration...

 

Current configuration : 1323 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname R2

!

boot-start-marker

boot-end-marker

!

enable password cisco

!

no aaa new-model

memory-size iomem 5

!

!

ip cef

no ip domain lookup

!

username lust privilege 15 password 0 cisco

!

interface Loopback0

 ip address 2.2.2.2 255.255.255.0

!

interface Serial1/0

 bandwidth 512

 ip address 23.1.1.2 255.255.255.0

 serial restart-delay 0

 clock rate 64000

!

interface Serial1/1

 ip address 12.1.1.2 255.255.255.0

 serial restart-delay 0

 clock rate 64000

!

router eigrp 100

 variance 3

 network 2.2.2.0 0.0.0.255

 network 12.1.1.0 0.0.0.255

 network 23.1.1.0 0.0.0.255

 no auto-summary

!

no ip http server

no ip http secure-server

!

control-plane

!

line con 0

 logging synchronous

line aux 0

line vty 0 4

 password cisco

 login

!

!

end

 

----------------------------------华丽分割线------------------------------

R5路由表

R2#sh ip ro

Gateway of last resort is 23.1.1.3 to network 3.0.0.0

 

     1.0.0.0/24 is subnetted, 1 subnets

D       1.1.1.0 [90/5665536] via 23.1.1.3, 01:12:46, Serial1/0

                [90/2297856] via 12.1.1.1, 01:12:46, Serial1/1

     2.0.0.0/24 is subnetted, 1 subnets

C       2.2.2.0 is directly connected, Loopback0

D*   3.0.0.0/8 [90/5639936] via 23.1.1.3, 01:12:46, Serial1/0

               [90/2323456] via 12.1.1.1, 01:12:46, Serial1/1

     4.0.0.0/24 is subnetted, 1 subnets

D       4.4.4.0 [90/5665536] via 23.1.1.3, 01:12:46, Serial1/0

                [90/2323456] via 12.1.1.1, 01:12:46, Serial1/1

     5.0.0.0/24 is subnetted, 1 subnets

D       5.5.5.0 [90/6177536] via 23.1.1.3, 01:12:47, Serial1/0

                [90/2835456] via 12.1.1.1, 01:12:47, Serial1/1

     23.0.0.0/24 is subnetted, 1 subnets

C       23.1.1.0 is directly connected, Serial1/0

     12.0.0.0/24 is subnetted, 1 subnets

C       12.1.1.0 is directly connected, Serial1/1

     134.1.0.0/24 is subnetted, 1 subnets

D       134.1.1.0 [90/5537536] via 23.1.1.3, 01:12:48, Serial1/0

                  [90/2195456] via 12.1.1.1, 01:12:48, Serial1/1

     45.0.0.0/24 is subnetted, 1 subnets

D       45.1.1.0 [90/6049536] via 23.1.1.3, 01:12:48, Serial1/0

                 [90/2707456] via 12.1.1.1, 01:12:48, Serial1/1

D    192.168.0.0/20 [90/6177536] via 23.1.1.3, 00:49:23, Serial1/0

                    [90/2835456] via 12.1.1.1, 00:49:23, Serial1/1

 


本文转自lustlost 51CTO博客,原文链接:http://blog.51cto.com/lustlost/849391,如需转载请自行联系原作者

相关实践学习
每个IT人都想学的“Web应用上云经典架构”实战
本实验从Web应用上云这个最基本的、最普遍的需求出发,帮助IT从业者们通过“阿里云Web应用上云解决方案”,了解一个企业级Web应用上云的常见架构,了解如何构建一个高可用、可扩展的企业级应用架构。
相关文章
|
网络虚拟化
网络实验 VlAN 中 Trunk Access端口的说明及实验
本文介绍了VLAN技术及其在网络实验中的应用,包括Access端口和Trunk端口的工作原理,以及如何通过实验划分不同VLAN实现内部通信和跨交换机实现VLAN间通信的详细步骤和配置。
网络实验 VlAN 中 Trunk Access端口的说明及实验
|
网络架构
【第二期】计算机网络常识(端口/网段/路由)
【第二期】计算机网络常识(端口/网段/路由)
392 0
VRRP配置案例(路由走向分析,端口切换)
VRRP配置案例(路由走向分析,端口切换)
308 0
|
网络协议
第二轮学习笔记: 扫描工具 -- nmap端口扫描
第二轮学习笔记: 扫描工具 -- nmap端口扫描
309 0
|
存储 网络协议 分布式数据库
网络名词术语解析 | 路由、交换机、集线器、半/全双工、DNS、LAN、WAN、端口、MTU
网络名词术语解析 | 路由、交换机、集线器、半/全双工、DNS、LAN、WAN、端口、MTU
829 0
|
弹性计算 运维 负载均衡
《企业运维之云上网络原理与实践》——第二章 负载均衡 CLB——配套实验:访问4层&7层CLB场景对比(1)
《企业运维之云上网络原理与实践》——第二章 负载均衡 CLB——配套实验:访问4层&7层CLB场景对比(1)
302 0
|
负载均衡 网络虚拟化 网络架构
MSTP的负载均衡实验
MSTP的负载均衡实验
626 0
java202303java学习笔记第三十九天端口号
java202303java学习笔记第三十九天端口号
163 0
|
负载均衡 网络虚拟化 网络架构
MSTP的负载均衡实验
MSTP的负载均衡实验
|
弹性计算 运维 负载均衡
《企业运维之云上网络原理与实践》——第二章 负载均衡 CLB——配套实验:访问4层&7层CLB场景对比(2)
《企业运维之云上网络原理与实践》——第二章 负载均衡 CLB——配套实验:访问4层&7层CLB场景对比(2)
319 0

热门文章

最新文章

下一篇
开通oss服务