第1段:路由器R1的配置清单 R1#sh mnn Building configuration...
Current configuration : 931 bytes ! version 12.1 service timestamps debug uptime service timestamps log uptime no service passWord-encryption ! hostname R1 ! ip subnet-zero i interface LoopbackO ip address 10.1.1.1255.255.255.0 ! interface Serial0 bandwidth 2000 ipaddress 201.1.12.1 255.255.255.252 clockrate 2000000 ! interface Serial 1 bandwidth 2000 ipaddress 201.1.13.1 255.255.255.252 clockrate 2000000 ! router eigrp 100 network 10.1.1.0 0.0.0.255 network 201.1.12.0 0.0.0.3 network 201.1.l3.0.0.0.0.3 no ayto-summary no eigrp log-neighbor-changes ! ip classless ip http server ! ! line con 0 line aux 0 line vty 0 4 ! end R1# 第2段:路由器R2的配置清单 R2#sh run Building configuration...
Current configuration : 656 bytes ! version 12.1 service timestamps debug uptime service timestamps log uptime no service password-encryption ! hostname R2 ! ip subnet-zero no ip finger ! interface Ethemet0 ip address 200.1.1.2 255.255.255.0 ! interface Serial0 bandwidth 2000 ip address 201.1.12.2 255.255.255.2; ! router elgrp 100 network 200.1.1.0 network 201.1.12.0 0.0.0.3 no auto-summary no eigrp log-neighbor-changes ! ip classless ip http server ! line con 0 line aux 0 line vty 0 4 ! end R2# 第3段:路由器R3的配置清单 R3#sh runn Building configuration...
Current configuration : 702 bytes ! version 12.1 service timestamps debug uptime service timestamps log uptime no service password-encryption ! hostname R3 ! ip subnet-zero no ip finger ! interface Ethemet0 ip address 200.1.1.3 255.255.255.0 ! interface Serial0 bandwidth 2000 ip address 201.1.13.2 255.255.255.252 ! router eigrp 100 network 200.1.1.0 network 201.1.13.0.0.0.0.3 no auto-susmmary no eigrp log-neighbor-changes ! ip classless ip http server ! line con 0 line aux 0 line vty 04 ! end (1)在配置清单6-1的第1、2、3段中,分别对R1、R2和R3路由器的接口进行了配置。在配置过程中,应非凡注重串行接口的DCE和DTE的区分,并且配置bandwidth参数; 配置bandwidth参数的意义在于,可以使路由器正确计算相应的度量值,从而使路由表正确反映实际的拓扑和链路情况。EIGRP协议和IGRP协议一样,把带宽作为度量值的主要因子之一。在RIP协议的实验中。我们己经看到bandwidth命令对实际的路由选择不起作用,那是因为RIP协议的惟一度量值因子是跳数。 (2)在EIGRP协议配置模式下,使用network命令来声明网段。 与IGRP协议和RIP协议所不同的是,EIGRP协议的网段声明中,假如是主网地址(即A、B、C类的主网,没有划分于网的网络),只需输入此网络地址;假如是子网的话,则必须在网段号后面写入反掩码。 反掩码是用广播地址(255.255.255.255)减去掩码地址所得到的地址。如掩码地址是255.255.255.0,则反掩码是0.0.0.255;掩码地址是255.255.255.252,则掩码地址是0.0.0.3。 当然也可以在对子网的声明中只写入主网的网络地址,这表明此网络的所有子网都加入了EIGRP路由进程。 (3)no auto-sumnary命令关闭了EIGRP协议的路由自动汇总功能,缺省的配置是自动汇总生效。在处理使用VLSM尤其是存在不连续的子网的网络中,通常需要关闭路由自动汇总功能。 (4)no egrp-log-neighbor-changes是路由器的缺省配置,作用是不记录相邻路由器有关EIGRP协议的变化信息。 下面通过有关的show命令查看配置完成后的结果,看是否实现了全网的连通,并查看有关配置和统计信息。具体结果见监测清单6-1。