码迷,mamicode.com
首页 > 其他好文 > 详细

华为路由器RIP配置命令

时间:2016-12-14 02:30:02      阅读:2793      评论:0      收藏:0      [点我收藏+]

标签:华为路由器   network   interface   路由表   version   

RIP配置

rip [process-id]
命令用来使能RIP进程。该命令中,process-id指定了RIP进程ID。如果未指定process-id,命令将使用1 作为缺省进程ID。

version 2
使能RIPv2以支持扩展能力,比如支持VLSM、认证等。

network <network-address>
命令可用于在RIP中通告网络

    rip
    version2
    network 10.0.0.0

rip metricin <metric value>
用于修改接口上应用的度量值。当路由器的一个接口收到路由时,路由器会首先将接口的附加度量值增加到该路由上,然后将路由加入路由表中。

    interface gigabitethernet 0/0/0
    rip metricin 2

rip metricout <metric value>
rip metricout用于路由器在通告RIP路由时修改路由的度量值。配置了rip metricout命令,则只应用命令中配置的度量值。

水平分割&毒性反转

interface gigabitethernet 0/0/0
rip split-horizone  水平分割 默认启用
rip poison-reverse  毒性反转

验证配置

display rip <process_id> interface <interface> verbose
    
    display rip 1 interface gigabitethernet0/0/0 verbose
    
    Poison-reverse:Enabled
    Split-Horizon :Enabled
    
    两者都显示“Enabled”时,只有“Poison-reverse”生效。

禁止/启用RIP发送RIP报文

    interface gigabitethernet 0/0/0
    undo rip output     # 禁止发送发送报文
    rip output          # 启动发送发送报文

禁止/启用RIP接收RIP报文

    interface gigabitethernet 0/0/0
    undo rip input     # 禁止接口发送报文
    rip input          # 启动接口发送报文

抑制端口
    
    只接收不发送RIP报文
    rip
    silent-interface gigabitethernet 0/0/1
    
验证配置
    display rip
    
    可以比较全面的现实路由器的RIP信息


本文出自 “无觉的BLoG” 博客,请务必保留此出处http://wujue.blog.51cto.com/11999347/1882457

华为路由器RIP配置命令

标签:华为路由器   network   interface   路由表   version   

原文地址:http://wujue.blog.51cto.com/11999347/1882457

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!