最详细的CISCO路由器配置命令及方法(6)

2019-03-23 13:41

x25 htc 16

x25 map ip 202.96.0.2 10112225 broadcast !

interface Serial1 no ip address shutdown ! !

interface Async 1

ip address 202.96.1.1 255.255.255.252 encapsulation ppp dialer in-band dialer idle-timeout 60

dialer map ip 202.96.1.2 name router2 modem-s cript cisco-default 2113470 dialer-group 1

ppp authentication chap !

router eigrp 200 redistribute connected network 202.96.0.0 !

ip route 202.96.37.0 255.255.255.0 202.96.1.2 200 dialer-list 1 protocol ip permit line con 0 line aux 0

s cript dialer cisco-default s cript reset reset modem InOut

modem autoconfigure discovery transport input all rxspeed 38400 txspeed 38400 flowcontrol hardware line vty 0 4 password cisco login ! end

路由器Router2配置如下: hostname router2 !

enable secret 5 $1$T4IU$2cIqak8f/E4Ug6dLT0k.J0 enable password cisco !

username router1 password cisco ip subnet-zero

chat-s cript cisco-default \\\c

chat-s cript reset atz !

interface Ethernet0

ip address 202.96.37.100 255.255.255.0 !

interface Serial0

ip address 202.96.0.2 255.255.255.0 no ip mroute-cache encapsulation x25 x25 address 10112225 x25 htc 16

x25 map ip 202.96.0.1 10112227 broadcast !

interface Serial1 no ip address shutdown !

interface Async1

ip address 202.96.1.2 255.255.255.252 encapsulation ppp keepalive 30

async default routing async mode dedicated dialer in-band dialer idle-timeout 60

dialer wait-for-carrier-time 120

dialer map ip 202.96.1.1 name router1 modem-s cript cisco-default 2113469 dialer-group 1

ppp authentication chap !

router eigrp 200 redistribute static network 202.96.0.0 !

no ip classless

ip route 202.96.38.0 255.255.255.0 202.96.1.1 200 dialer-list 1 protocol ip permit !

line con 0 exec-timeout 0 0

line aux 0 s cript reset reset modem InOut

modem autoconfigure discovery transport input all rxspeed 38400 txspeed 38400 flowcontrol hardware line vty 0 4 password cisco login ! end

第三章 路由协议设置 一、RIP协议

RIP(Routing information Protocol)是应用较早、使用较普遍的内部网关协议(Interior Gateway Protocol,简称IGP),适用于小型同类网络,是典型的距离向量(distance-vector)协议。文档见RFC1058、 RFC1723。

RIP通过广播UDP报文来交换路由信息,每30秒发送一次路由信息更新。RIP提供跳跃计数(hop count)作为尺度来衡量路由距离,跳跃计数是一个包到达目标所必须经过的路由器的数目。如果到相同目标有二个不等速或不同带宽的路由器,但跳跃计数相同,则RIP认为两个路由是等距离的。RIP最多支持的跳数为15,即在源和目的网间所要经过的最多路由器的数目为15,跳数16表示不可达。 1. 有关命令 任务 命令

指定使用RIP协议 router rip 指定RIP版本 version {1|2}1

指定与该路由器相连的网络 network network

注:1.Cisco的RIP版本2支持验证、密钥管理、路由汇总、无类域间路由(CIDR)和变长子网掩码(VLSMs) 2. 举例 Router1: router rip version 2

network 192.200.10.0 network 192.20.10.0 !

相关调试命令: show ip protocol show ip route

二、IGRP协议

IGRP (Interior Gateway Routing Protocol)是一种动态距离向量路由协议,它由Cisco公司八十年代中期设计。使用组合用户配置尺度,包括延迟、带宽、可靠性和负载。

缺省情况下,IGRP每90秒发送一次路由更新广播,在3个更新周期内(即270秒),没有从路由中的第一个路由器接收到更新,则宣布路由不可访问。在7个更新周期即630秒后,Cisco IOS 软件从路由表中清除路由。 1. 有关命令 任务 命令

指定使用RIP协议 router igrp autonomous-system1 指定与该路由器相连的网络 network network 指定与该路由器相邻的节点地址 neighbor ip-address

注:1、autonomous-system可以随意建立,并非实际意义上的autonomous-system,但运行IGRP的路由器要想交换路由更新信息其autonomous-system需相同。 2.举例 Router1: router igrp 200 network 192.200.10.0 network 192.20.10.0 !

三、OSPF协议

OSPF(Open Shortest Path First)是一个内部网关协议(Interior Gateway Protocol,简称IGP),用于在单一自治系统(autonomous system,AS)内决策路由。与RIP相对,OSPF是链路状态路有协议,而RIP是距离向量路由协议。

链路是路由器接口的另一种说法,因此OSPF也称为接口状态路由协议。OSPF通过路由器之间通告网络接口的状态来建立链路状态数据库,生成最短路径树,每个OSPF路由器使用这些最短路径构造路由表。 文档见RFC2178。 1.有关命令 全局设置 任务 命令

指定使用OSPF协议 router ospf process-id1

指定与该路由器相连的网络 network address wildcard-mask area area-id2 指定与该路由器相邻的节点地址 neighbor ip-address

注:1、OSPF路由进程process-id必须指定范围在1-65535,多个OSPF进程可以在同一个路由器上配置,但最好不这样做。多个OSPF 进程需要多个OSPF数据库的副本,必须运行多个最短路径算法的副本。process-id只在路由器内部起作用,不同路由器的process-id可以不同。

2、wildcard-mask 是子网掩码的反码, 网络区域ID area-id在0-4294967295内的十进制数,也可以是带有IP地址格式的x.x.x.x。当网络区域ID为0或0.0.0.0时为主干域。不同网络区域的路由器通过主干域学习路由信息。 2.基本配置举例: Router1:

interface ethernet 0

ip address 192.1.0.129 255.255.255.192

!

interface serial 0

ip address 192.200.10.5 255.255.255.252 !

router ospf 100

network 192.200.10.4 0.0.0.3 area 0 network 192.1.0.128 0.0.0.63 area 1 !

Router2:

interface ethernet 0

ip address 192.1.0.65 255.255.255.192 !

interface serial 0

ip address 192.200.10.6 255.255.255.252 !

router ospf 200

network 192.200.10.4 0.0.0.3 area 0 network 192.1.0.64 0.0.0.63 area 2 !

Router3:

interface ethernet 0

ip address 192.1.0.130 255.255.255.192 !

router ospf 300

network 192.1.0.128 0.0.0.63 area 1 !

Router4:

interface ethernet 0

ip address 192.1.0.66 255.255.255.192 !

router ospf 400

network 192.1.0.64 0.0.0.63 area 1 !

相关调试命令: debug ip ospf events debug ip ospf packet show ip ospf

show ip ospf database show ip ospf interface show ip ospf neighbor show ip route

下OSPF不使用区域验证。通过两种方法可启用身份验证功能,纯文本身份验证和消息摘要(md5)身份验证。纯文本身份验证传送的身份验证口令为纯文本,它会被网络探测器确定,所以不安全,不建议使用。而消息摘要(md5)身份验证在传输身份验证口令前,要对口令进行加


最详细的CISCO路由器配置命令及方法(6).doc 将本文的Word文档下载到电脑 下载失败或者文档不完整,请联系客服人员解决!

下一篇:孙海英案例分析:孩子注意力不集中怎么办

相关阅读
本类排行
× 注册会员免费下载(下载后可以自由复制和排版)

马上注册会员

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: