HSRF:第一跳冗余协议:(思科4.3.3.4)
步骤1:配置各个路由器,交换机的IP地址等信息。
其中默认网关是利用语句ip default-gateway ,对于端口不要忘记 no shutdown
步骤2:配置各个路由,要求如下:
a.禁用 DNS 查找。
b. 如拓扑所示配置设备名称。
c. 按照地址分配表列出的设置配置路由器的 IP 地址。
d. 将所有 DCE 串行接口的时钟频率设置为 128000。(这个要求针对的是R2的两个端口)
e. 指定 class 作为加密特权 EXEC 模式密码。
f. 指定 cisco 作为控制台和 vty 密码并启用登录。
g. 配置 logging synchronous 以防控制台消息中断命令输入。
h. 将运行配置复制到启动配置中。
其中对于R1(R3):
Router>enable
conf ter
hostname R1(R3)
no ip domain-lookup
enable secret class
line console 0
password cisco
login
line vty 0 15
password cisco
login
line console 0
logging synchronous
exit
R1#write
其中对于R2:
Router>enable
conf ter
hostname R2
no ip domain-lookup
interface s0/0/1
clock rate 128000
no shutdown
interface s0/1/1
clock rate 128000
no shutdown
exit
enable secret class
line console 0
password cisco
login
line vty 0 15
password cisco
login
line console 0
logging synchronous
exit
exit
R2#write
步骤3:配置交换机要求如下:
.对于交换机的配置
a. 禁用 DNS 查找。
b. 如拓扑所示配置设备名称。
c. 指定 class 作为加密特权 EXEC 模式密码。
d. 为地址分配表所列出的交换机配置 IP 地址。
e. 在每台交换机上配置默认网关。
f. 指定 cisco 作为控制台和 vty 密码并启用登录。
g. 配置 logging synchronous 以防控制台消息中断命令输入。
h. 将运行配置复制到启动配置中。
S1、S3>enable
conf ter
hostname S1(S3)
no ip domain-lookup
enable secret class
line console 0
password cisco
login
line vty 0 15
password cisco
login
line console 0
logging synchronous
exit
exit
S1#write
步骤4:主机间进行ping命令
步骤5:配置路由:
a. 在所有路由器上配置 RIP 第 2 版。将所有网络(除了 209.165.200.224/27)添加到 RIP 进程中。
b. 使用 Lo1 作为通向 209.165.200.224/27 网络的送出接口来配置 R2 的默认路由。
c. 在 R2 上,使用以下命令将默认路由重新分布到 RIP 进程中。
R2(config)# router rip
default-information originate
对于R2:
R2(config)#router rip
version 2
network 10.1.1.2
network 10.2.2.2
exit
ip route 0.0.0.0 0.0.0.0 Lo1
route rip
default-information originate
对于R1:
R1>enable
conf ter
route rip
version 2
network 10.1.1.1
network 192.168.1.1
exit
对于R3:
R1>enable
conf ter
route rip
version 2
network 10.2.2.1
network 192.168.1.3
exit
第3步:
在 R1 上配置 HSRP。
R1(config)#interface g0/1
standby version 2
standby 1 ip 192.168.1.254
standby 1 priority
standby 1 priority 150
standby 1 preempt
在 R3 上配置 HSRP。
R3(config)#interface g0/1
standby version 2
standby 1 ip 192.168.1.254