首页 > 代码库 > 动态路由协议
动态路由协议
动态路由协议
R1(config)# router rip ///启动rip进程
R1(config-router)#network 192.168.1.1 //宣告主网络号
R1(config-router) #version 2 //使用rip v2
R1(config-router) # no auto-summary //关闭路由汇总
OSPF单域配置
R1(config)#router ospf 1 // 启用ospf进程和进程号(1-65535)
R1(config-router) #router id 192.168.1.1 //运行ospf的接口
R1(config-router) # network 192.168.2.0 0.0.0.255 area 0 //指定ospf运行的接口和所在的区域
R1(config-if)# IP ospf priority 5
//修改接口优先级,0-55 默认1,位0不参与DR与BDR选举
R1(config-if)# ip sopf cost 1
// 修改cost值 1-65535
R1# show ip ospf neighbor //查看邻居表及其状态
R1# show ip ospf ///查看OSPF
R1# show ip ospf interface type number //查看ospf接口的数据结构
OSPF多区域配置:
R1# show ip ospf database router //查看数据库中路由器LSA通告
R1(config-router) # network 192.168.2.0 0.0.0.255 area 0
///配置多区域 改为 1 ,0位骨干区域。
R1# show ip ospf database asbr-summary ///查看ASBR汇总LSA信息
R1# show ip ospf database external //查看AS外部LSA信息
R1(config-router) # area 1 stub //配置末梢区域
R1(config-router) # area 1 stub no-summary ///配置完全末梢区域
OSPF高级配置:路由重分发
R1(config-router)# redistribute [protocol] [metric metric-value] [metric-type type-value] [subnets]
///[protocol] ;重分发源路由协议rip/ospf/static/connected/bgp/eqp/isis/process-id。
[metric ;重分发路由度量值
[metric-type 重发路由类型 E1 或E1 1/2 默认2
[subnets]; 连其子网一起宣告
R1(config)#router ospf 1
R1(config-router)# default-information originate //重分发默认路由
R1(config)#router ospf 1
R1(config-router)# redistribute rip subnets ///重分发
R2(config)#router rip
R2(config-router)# redistribute ospf 1 metric 3
R3(config-router)# redistribute static subnets
R3(config-router)# redistribute connected subnets
配置NSSA区域
R3(config-router)#area 1 nssa [no-summary]
//完全非纯末梢区域添加[no-summary]
路由汇总:
R3(config-router)#area range 10.0.0.0 255.248.0.0
// 区域间路由汇总
R3(config-router)#summary-address 192.168.1.0 255.255.255.0
///外部路由汇总
R3(config-router)#no auto-summary
///关闭路由汇总
配置虚拟链路:
Area 100 virtual-link 192.168.1.1
服务访问质量qos
1l流量整形配置
基本流量整形配置
R3(config-if)# traffic-shape rate {CIR BC BE } [buffer-limit]
//CIR:允许流量通过平均速率,必须配置
BC,突发量 BE额外突发量,超出突发量后可以转发的流量大小
[buffer-limit] ;缓存区使用限制默认1000
R3(config-if)# traffic-shape rate 1000000
基于ACL流量配置整形:
R3(config-if)# traffic-shape group access-group {CIR BC BE }
R3(config-if)# traffic-shape group 100 1000000 10000000 10000000
单位比特
R3#:show traffic-shape f0/0
///查看GTS配置信息
R3#:show traffic-shape statistics f0/0
///查看GTS流量统计信息
承诺访问速率配置:
R3(config-if)# rate-limit {input |output}
{CIR} {burst-normal} {burst-max}{conform-action set-prec-transmit {action} exceed-action {action}
/// {input |output} ;针对端口进出访问流量
{CIR}:平均速率 8000-200000000
{burst-normal} {burst-max}
: {burst-normal} {burst-max}突发量,1000-512000000最大突发量,2000-1024000000 字节
{conform-action {action};对合格流量进行的操作
exceed-action {action} 不合格流量进行的操作 drop/transmit 丢弃和转发
set-prec-transmit :优先级,合格的流量标记优先级或者不合格的标记,默认为0尽力发送,阻塞时根据优先级丢弃数据,
R3(config-if)# rate-limit input 8000000 2000 4000 conform-action set-prec-transmit 5【transmit】 exceed-action set-prec-transmit 0
【dorp】
扩展承诺访问速率:
ACL
R3(config-if)# rate-limit {input |output}
{access-group- access-group}
{CIR} {burst-normal} {burst-max}{conform-action set-prec-transmit {action} exceed-action {action}
///{access-group- access-group} 与ACL配置的序列号
R3#show interface f0/0 rate-limit
//查看端口限速信息
承诺访问速率与流量整形配置第二种方式:
1定义匹配策略
本文出自 “12040214” 博客,请务必保留此出处http://12050214.blog.51cto.com/12040214/1923900
动态路由协议