实例:配置rip协议,实现各链路间的通信,并配置MD5认证
步骤一:
配置各接口IP地址
R1:
interface g0/0/0
ip add 12.0.0.1 8
quit
R2:
interface g0/0/0
ip add 12.0.0.2 8
interface g0/0/1
ip add 23.0.0.2 8
quit
R3:
interface g0/0/1
ip add 23.0.0.1 8
quit
步骤二:
配置ripv2
R1:
rip
version 2 //定义为ripv2
network 12.0.0.0 //宣告网络段
R2:
rip
version 2
network 12.0.0.0
network 23.0.0.0
R3:
rip
version 2
network 23.0.0.0
步骤三:
验证各链路之间的互通性
R1:
ping 23.0.0.2
ping 23.0.0.1
R3:
ping 12.0.0.1
ping 12.0.0.2
====
ripv2支持两种认证方式:明文(plain text)认证方式和MD5(Message Digest 5)密文认证方式。
在接口模式下,使用命令 rip authentication-mode simple huawei 配置为明文认证方式,认证密码为huawei;
在接口模式下,使用命令 rip authentication-mode md5 usual huawei 配置为md5认证方式,认证密码为huawei;
注意,链路之间的认证模式必须是同一种模式,否则无法接收到路由信息。
这里采用md5认证方式。
步骤四:
R1:
interface g0/0/0
rip authentication-mode md5 usual cipher huawei
R2:
interface g0/0/0
rip authentication-mode md5 usual cipher huawei
interface g0/0/1
rip authentication-mode md5 usual cipher huawei
R3:
interface g0/0/0
rip authentication-mode md5 usual cipher huawei
配置完成后,退出接口模式,使用display current-configuration 查看配置信息验证。