当前位置:文档之家› 思科设备eigrp协议配置

思科设备eigrp协议配置

本次讲解路由器eigrp协议的配置:

[1]EIGRP与IGRP在network命令的区别在于多了wildcard-mask参数,这是通配符掩码。如果网络定义使用的是默认掩码,则wildcard-mask参数可以省略:如果网络定义使用的不是默认掩码,则wildcard-mask参数必须标明。

[2]EIGRP在处理有类别(A、B、C类)网络地址时,会自动地汇总路由。这意味着即使规定RTC 连接的是10.0.3.0/24这个网络,但EIGRP仍然会发布其连接整个A类网络10.0.0.0。在EIGRP中,路由自动汇总功能默认是有效的。存在不连续子网的网络中,通常需要用no auto-summary命令来关闭该功能。

本例配置模型图

命令行:

RA配置命令:

Router>

Router>enable

Router#conf t

Enter configuration commands, one per line. End with CNTL/Z.

^

Router(config)#router eigrp 100 //使用eigrp协议。使用系统自制号100

Router(config-router)#network 202.1.1.5 0.0.0.3 //指定与该路由器直接相连的网络Router(config-router)#network 192.1.1.0 0.0.0.255 //指定与该路由器直接相连的网络Router(config-router)#no auto-summary //关闭自动汇总功能

Router(config-router)#exit

Router(config)#int s1/0

Router(config-if)#ip address 202.1.1.5 255.255.255.252 //依照图配置IP

Router(config-if)#clock rate 64000 //使用时钟频率

Router(config-if)#bandwidth 64

Router(config-if)#no shutdown

%LINK-5-CHANGED: Interface Serial1/0, changed state to down

Router(config-if)#exit

Router(config)#int f0/0 //依照图配置IP

Router(config-if)#ip address 192.1.1.1 255.255.255.0

Router(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

Router(config-if)#exit

Router(config)#exit

Router#

%SYS-5-CONFIG_I: Configured from console by console

Router#wr

Building configuration...

[OK]

Router#

RB配置命令:

Router>enable

Router#conf t

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#router eigrp 100 //使用eigrp协议。使用系统自制号100

Router(config-router)#network 202.1.1.6 0.0.0.3 //指定与该路由器直接相连的网络Router(config-router)#network 192.168.2.0 0.0.0.255 //指定与该路由器直接相连的网络Router(config-router)#no auto-summary //关闭自动汇总功能

Router(config-router)#exit

Router(config)#int s1/0

Router(config-if)#ip address 202.1.1.6 255.255.255.252 //依照图配置IP

Router(config-if)#bandwidth 64

Router(config-if)#no shutdown

%LINK-5-CHANGED: Interface Serial1/0, changed state to up

Router(config-if)#exit

Router(config)#int f0/0

%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1/0, changed state to up

%DUAL-5-NBRCHANGE: IP-EIGRP 100: Neighbor 202.1.1.5 (Serial1/0) is up: new adjacency

Router(config-if)#ip address 192.168.2.1 255.255.255.0

Router(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

相关主题