RIP在CISCO中的配置

RIP CISCO 中的配置
 
RIP 配置的相关命令
命令
说明
(config)# router rip
启用 RIP 协议进程
(config-router)#network net_address
发布网络信息
(config-router)#version 2
配置 RIPV2 版本
(config-router)#no auto-summary
关闭自动汇总功能
#show running-config
查看当前配置信息
#show ip route
查看路由信息
#show ip rip
查看 RIP 协议相关信息
#debug ip rip
调试 RIP
 
 
 
RA 的配置 :
RA>enable �C 进入特权模式
RA# configure terminal  -- 进入全局配置模式
RA(config)# interface e0/0  -- 进入子接口模式
RA(config-if)# ip address 192.168.1.1 255.255.255.0  -- 配置 IP 地址
RA(config-if)# no shutdown  -- 打开端口
RA(config-if)# interface e0/1 -- 进入子接口模式
RA(config-if)# ip address 10.0.0 .1 255.0.0.0  -- 配置 IP 地址
RA(config-if)# no shutdown  -- 打开端口
RA(config-if)# end �C 回到特权模式
RA(config)# router rip  -- 进入并启用 RIP 配置模式
RA(config-router)# network 11.0.0 .0 �C 宣告直连的网段
RA(config-router)# network 192.168.1.0 �C 宣告直连的网段
RA(config-router)# end �C 回到特权模式
RA# show running-config (查看配置)
RA# show ip route (查看路由表)
RA# show ip interface brief (查看各接口 IP 及状态)
RA# debug ip rip (打开调试功能,查看 rip 运行状态)
RA# undebug all (关闭调试功能)
  RB 的配置:
RB>enable
RB# configure terminal
RB(config)# interface e0/0
RB(config-if)# ip address 192.168.2.1 255.255.255.0
RB(config-if)# no shutdown
RB(config-if)# interface e0/1
RB(config-if)# ip address 11.0.0 .2 255.0.0.0
RB(config-if)# no shutdown
RB(config-if)# interface e0/2
RB(config-if)# ip address 10.0.0 .2 255.0.0.0
RB(config-if)# no shutdown
RB(config-if)# end
RB(config)# router rip
RB(config-router)# network 11.0.0 .0
RB(config-router)# network 10.0.0 .0
RB(config-router)# network 192.168.2.0
RB(config-router)# end
 RC 的配置:
RC>enable
RC# configure terminal
RC(config)# interface e0/0
RC(config-if)# ip address 192.168.3.1
RC(config-if)# no shutdown
RC(config-if)# interface e0/2
RC(config-if)# ip address 11.0.0 .1 255.0.0.0
RC(config-if)# no shutdown
RC(config-if)# end
RC(config)# router rip
RC(config-router)# network 10.0.0 .0
RC(config-router)# network 192.168.3.0
RC(config-router)# end
 
最后的结果将是三个网段的主机动能 PING 通。
 

你可能感兴趣的:(职场,路由,休闲,交换)