EIGRP专题实验3:EIGRP多AS号问题研究

1:配置地址(略),并配置EIGRP多个AS

R1(config)#routereigrp 100

R1(config-router)#noauto-summary

R1(config-router)#net192.168.12.0

R1(config-router)#net10.0.0.0

R2(config)#routereigrp 100

R2(config-router)#noauto-summary

R2(config-router)#net192.168.12.0

R2(config)#routereigrp 200

R2(config-router)#noauto-summary

R2(config-router)#net192.168.23.0

R3(config)#routereigrp 200

R3(config-router)#noauto-summary

R3(config-router)#net192.168.23.0

R3(config-router)#net192.168.0.0

R3(config-router)#net192.168.1.0

R2#show ip eigrp neighbors

IP-EIGRPneighbors for process 100

H   Address                 Interface       Hold Uptime   SRTT  RTO  Q  Seq

(sec)         (ms)       Cnt Num

0   192.168.12.1            Fa0/0             10 00:00:50  123  738  0  101

IP-EIGRPneighbors for process 200

H   Address                 Interface       Hold Uptime   SRTT  RTO  Q  Seq

(sec)         (ms)       Cnt Num

0   192.168.23.2            Se1/1             14 00:00:18  191  1146  0  5

以上显示说明:在一台路由器上可以启用多个EIGRP进程(最多允许启动30个)。

R1#show ip ro ei

 

R2#show ip ro ei

10.0.0.0/24 is subnetted, 2 subnets

D       10.1.1.0 [90/156160] via 192.168.12.1, 00:01:40,FastEthernet0/0

D       10.1.0.0 [90/156160] via 192.168.12.1,00:01:40, FastEthernet0/0

D    192.168.0.0/24 [90/2297856] via192.168.23.2, 00:01:01, Serial1/1

D    192.168.1.0/24 [90/2297856] via192.168.23.2, 00:00:58, Serial1/1

R3#show ip ro ei

以上显示说明:不同AS的EIGRP不能直接通信。

解决不同EIGRP AS间通信的方法:路由重分发

R2(config)#routereigrp 100

R2(config-router)#redistributeeigrp 200

R2(config-router)#routereigrp 200

R2(config-router)#redistributeeigrp 100

R1#show ip ro ei

D EX 192.168.23.0/24[170/2172416] via 192.168.12.2, 00:01:11, FastEthernet0/0

D EX 192.168.0.0/24 [170/2300416]via 192.168.12.2, 00:01:11, FastEthernet0/0

D EX 192.168.1.0/24 [170/2300416]via 192.168.12.2, 00:01:11, FastEthernet0/0

R3#show ip ro ei

192.168.12.0/30 is subnetted, 1 subnets

D EX    192.168.12.0 [170/2172416] via192.168.23.1, 00:01:10, Serial1/0

10.0.0.0/24 is subnetted, 2 subnets

D EX    10.1.1.0 [170/2300416] via 192.168.23.1,00:01:10, Serial1/0

D EX    10.1.0.0 [170/2300416] via 192.168.23.1,00:01:10, Serial1/0

2:把接口宣告到多个AS进程中

R2(config)#routereigrp 300

R2(config-router)#noauto-summary

R2(config-router)#net192.168.23.0

R3(config)#routereigrp 300

R3(config-router)#noauto-summary

R3(config-router)#net192.168.23.0

R3(config-router)#net192.168.1.0

R3#show ip protocols

RoutingProtocol is "eigrp 200"

Outgoing update filter list for allinterfaces is not set

Incoming update filter list for allinterfaces is not set

Default networks flagged in outgoing updates

Default networks accepted from incomingupdates

EIGRP metric weight K1=1, K2=0, K3=1, K4=0,K5=0

EIGRP maximum hopcount 100

EIGRP maximum metric variance 1

Redistributing: eigrp 200

EIGRP NSF-aware route hold timer is 240s

Automatic network summarization is not ineffect

Maximum path: 4

Routing for Networks:

192.168.0.0

    192.168.1.0

    192.168.23.0

Routing Information Sources:

Gateway         Distance      Last Update

192.168.23.1          90     00:08:53

Distance: internal 90 external 170

RoutingProtocol is "eigrp 300"

Outgoing update filter list for allinterfaces is not set

Incoming update filter list for allinterfaces is not set

Default networks flagged in outgoing updates

Default networks accepted from incomingupdates

EIGRP metric weight K1=1, K2=0, K3=1, K4=0,K5=0

EIGRP maximum hopcount 100

EIGRP maximum metric variance 1

Redistributing: eigrp 300

EIGRP NSF-aware route hold timer is 240s

Automatic network summarization is not ineffect

Maximum path: 4

Routing for Networks:

    192.168.1.0

    192.168.23.0

Routing Information Sources:

Gateway         Distance      Last Update

Distance: internal 90 external 170

R3#show ip eigrp neighbors

IP-EIGRPneighbors for process 200

H   Address                 Interface       Hold Uptime   SRTT  RTO  Q  Seq

(sec)         (ms)       Cnt Num

0   192.168.23.1            Se1/0             13 00:13:34  172 1032  0  6

IP-EIGRPneighbors for process 300

H   Address                 Interface       Hold Uptime   SRTT  RTO  Q  Seq

(sec)         (ms)       Cnt Num

0   192.168.23.1            Se1/0             13 00:05:08  143  858  0  3

R2#show ip ro ei

10.0.0.0/24 is subnetted, 2 subnets

D       10.1.1.0 [90/156160] via 192.168.12.1,00:14:20, FastEthernet0/0

D       10.1.0.0 [90/156160] via 192.168.12.1,00:14:20, FastEthernet0/0

D    192.168.0.0/24 [90/2297856] via192.168.23.2, 00:13:41, Serial1/1

D    192.168.1.0/24 [90/2297856] via192.168.23.2, 00:13:38, Serial1/1

R2#show ip route 192.168.1.0255.255.255.0

Routingentry for 192.168.1.0/24

Known via "eigrp 200", distance 90,metric 2297856, type internal

Redistributing via eigrp 100, eigrp 200

Advertised by eigrp 100

Last update from 192.168.23.2 on Serial1/1,00:14:17 ago

Routing Descriptor Blocks:

* 192.168.23.2, from 192.168.23.2, 00:14:17ago, via Serial1/1

Route metric is 2297856, traffic sharecount is 1

Total delay is 25000 microseconds,minimum bandwidth is 1544 Kbit

Reliability 255/255, minimum MTU 1500bytes

Loading 1/255, Hops 1

R2#show ip ro ei                      

10.0.0.0/24 is subnetted, 2 subnets

D       10.1.1.0 [90/156160] via 192.168.12.1,00:15:07, FastEthernet0/0

D       10.1.0.0 [90/156160] via 192.168.12.1,00:15:07, FastEthernet0/0

D    192.168.0.0/24 [90/2297856] via192.168.23.2, 00:14:28, Serial1/1

D    192.168.1.0/24 [90/2297856] via 192.168.23.2,00:00:07, Serial1/1

R2#show ip ro192.168.1.0                

Routingentry for 192.168.1.0/24

Known via "eigrp 300", distance 90,metric 2297856, type internal

Redistributing via eigrp 300

Last update from 192.168.23.2 on Serial1/1,00:01:43 ago

Routing Descriptor Blocks:

* 192.168.23.2, from 192.168.23.2, 00:01:43ago, via Serial1/1

Route metric is 2297856, traffic sharecount is 1

Total delay is 25000 microseconds, minimumbandwidth is 1544 Kbit

Reliability 255/255, minimum MTU 1500bytes

Loading 1/255, Hops 1

以上显示说明:EIGRP可以同时在多个AS中建立邻居关系,路由条目使用第一次AS系统更新的条目。

时间: 2024-10-14 09:49:30

EIGRP专题实验3:EIGRP多AS号问题研究的相关文章

CCNP路由专题实验之EIGRP篇,51微博首发!敬请关注连载!

目  录 实验1:EIGRP基本配置和常用show命令复习.. 1 实验2:EIGRP邻居关系建立的条件分析.. 6 实验3:EIGRP多AS号问题研究.. 11 实验4:EIGRP路由条目类型与管理距离修改.. 15 实验5:EIGRP自动汇总和手工汇总.. 19 实验6:EIGRP路由泄露.. 22 实验7:EIGRP浮动汇总路由.. 23 实验8:EIGRP等价负载均衡.. 26 实验9:EIGRP非等价负载均衡.. 29 实验10:EIGRP默认路由.. 32 实验11:EIGRP st

EIGRP专题实验1:EIGRP基本配置和常用show命令复习

实验配置: 1:配置接口地址 R1(config)#interfa0/0 R1(config-if)#ipadd 192.168.12.1 255.255.255.0 R1(config-if)#noshut R1(config-if)#interlo 0 R1(config-if)#ipadd 10.1.0.1 255.255.255.0 R1(config-if)#interlo 1 R1(config-if)#ipadd 10.1.1.1 255.255.255.0 R2(config)#

EIGRP专题实验2:EIGRP邻居关系建立的条件分析

1:配置地址(略),并配置EIGRP R1(config)#routereigrp 100 R1(config-router)#noauto-summary R1(config-router)#net192.168.12.0 R1(config-router)#net10.0.0.0 R2(config)#routereigrp 100 R2(config-router)#noauto-summary R2(config-router)#net192.168.12.0 R2(config-rou

eigrp综合实验

上配置,供参考 INTERNET: Current configuration : 1192 bytes ! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname INTERNET ! boot-start-marker boot-end-marker ! ! no aaa new-mode

eigrp基本实验1

R1#conf tEnter configuration commands, one per line.  End with CNTL/Z.R1(config)#no ip domain-lookup R1(config)#line console 0R1(config-line)#login% Login disabled on line 0, until 'password' is setR1(config-line)#passR1(config-line)#password 1122334

eigrp综合实验笔记

   实际拓扑应该是这样的:        GNS3比较容易理解的拓扑是这样的:     FRAME-RELAY 如图所示:配FRAME-RELAY SWITCH,使R2.R3.R4之间的FRAME-RELAY PVC为FULL-MESH. 但只使用图中所示的PVC. 由图可以看出来,只允许使用4个DLCI,所以需要配置为hub-spoke模式.其中R4是HUB R2,R3,R4的物理接口连接FRAME-RELAY SWITCH, R4与R5间.请使用PPP链路. 请消除多余的32位的主机路由

CCNP第三天 EIGRP综合实验

实验题如图所示:其中R2连R3 R5为快速以太网线,其他均为串线,帧中继默认是富曼斯(全连网状结构),即所有接入的路由之间的PVC都已经打通,所有  要关闭R5和R8的逆向arp功能,来手工配置R5到R8的Map 实验所使用的拓扑为CCNP标准版拓扑图,如下: -----------------------------------------------------------------------------------------------------------------------

EIGRP 高级实验

一.环境准备 1. 软件:GNS3 2. 路由:c7200 二.实验操作 实验要求: 1.掌握EIGRP  的不等价均衡的条件. 2.掌握EIGRP  的metric  值修改方法. 3.掌握 EIGRP  的 AD.FD.FC.Successor.FS  概念. 4.理解EIGRP  的认证过程. 5.掌握EIGRP  的认证的配置. 实验拓扑: 实验过程: 1.配置各台路由器的IP  地址,并且使用ping  命令确认各路由器的直连口的互通性 参照作者 路由协议与交换技术~RIP实验. 2.

专题实验 EXP & IMP

基本语法和实例: 1.EXP: 有三种主要的方式(完全.用户.表) 1.完全: exp icdmain/icd rows=y indexes=n compress=n buffer=65536 feedback=100000 full=y file=exp_.dmp log=exp.log 如果要执行完全导出,必须具有特殊的权限 2.用户模式: exp icdmain/icd owner=icdmain rows=y indexes=n compress=n buffer=65536 feedb