浮动路由实验(VRRP)

目录

 

1.浮动路由的原理

2.实验目的

3.实验数据

4.实验拓扑图

5.实验步骤

 1.根据实验数据给两台PC设置网关,子网掩码和IP地址

 2.设置二层交换机LSW3—创建vlan,设置acees口,设置trunk口

3.设置三层交换机LSW1-创建vlan,设置vlanif,设置接口,设置默认路由

3.设置三层交换机LSW2-创建vlan,设置vlanif,设置接口,设置默认路由

5.设置路由器- 设置接口ip,静态路由

6.实验测试

   


1.浮动路由的原理

 ◆         通常,同一网段内的所有主机上都存在一条相同的、以网关为下一跳的缺省路由。 当网关发生故障时,本网段内所有以网关为缺省路由的主机将无法与外部网络通信。
◆          VRRP 是一种容错协议,在提高可靠性的同时,简化了主机的配置。在具有多播或广播能力的局域网(如以太网)中,借助VRRP能在某台路由器出现故障时仍然提供高可靠的缺省链路,有效避免单一链路发生故障后网络中断的问题,而无需修改动态路由协议、路由发现协议等配置信息。
◆         VRRP 将局域网内的一组路由器划分在一起,称为一个备份组。备份组由一个Master 路由器和多个Backup 路由器组成,功能上相当于一台虚拟路由器。
◆         VRRP根据优先级来确定备份组中每台路由器的角色(Master路由器或Backup路由器)。优先级越高,则越有可能成为Master路由器,其他优先级低的成为Backup路由器,路由器在备份组中的状态可以为 Master、Backup和Initialize。
◆          VRRP 优先级的取值范围为0到255(数值越大表明优先级越高),可配置的范围是1到254,优先级0 为系统保留给特殊用途来使用,255则是系统保留给IP 地址拥有者。当路由器为IP地址拥有者时,其优先级始终为255。因此,当备份组内存在IP地址拥有者时,只要其工作正常,则为 Master 路由器。

2.实验目的

     1.实现全网互通

     2.关闭一个三层交换机的上接口,验证浮动路由的成功

3.实验数据

  • eNSP软件
  • 一台路由器
  • 两台三层交换机 
  • 一台二层交换机
  • 两台主机

4.实验拓扑图

 

     浮动路由实验(VRRP)_第1张图片

5.实验步骤

 1.根据实验数据给两台PC设置网关,子网掩码和IP地址

 2.设置二层交换机LSW3—创建vlan,设置acees口,设置trunk口

system-view 
Enter system view, return user view with Ctrl+Z.
[Huawei]sysname SW1
[SW1]vlan batch 10 20                                                    创建vlan 10 20
Info: This operation may take a few seconds. Please wait for a moment...done.
[SW1]int e0/0/1                                                                进入接口
[SW1-Ethernet0/0/1]port link-type access                       设置acees口
[SW1-Ethernet0/0/1]port default vlan 10                         分配vlan 10
[SW1-Ethernet0/0/1]un sh                                               开启接口
Info: Interface Ethernet0/0/1 is not shutdown.
[SW1-Ethernet0/0/1]int e00/0/2                                       进入接口
[SW1-Ethernet0/0/2]port link-type access                       设置acees口
[SW1-Ethernet0/0/2]port default vlan 20                         分配vlan 20
[SW1-Ethernet0/0/2]un sh
Info: Interface Ethernet0/0/2 is not shutdown.
[SW1-Ethernet0/0/2]q
[SW1]int g0/0/1                                                                                 进入接口
[SW1-GigabitEthernet0/0/1]port link-type trunk                                设置trunk口
[SW1-GigabitEthernet0/0/1]port trunk allow-pass vlan 10 20           设置trunk能够通过vlan 10 20 的流量
[SW1-GigabitEthernet0/0/1]un sh
Info: Interface GigabitEthernet0/0/1 is not shutdown.
[SW1-GigabitEthernet0/0/1]int g0/0/2
[SW1-GigabitEthernet0/0/2]port link-type trunk 
[SW1-GigabitEthernet0/0/2]port trunk allow-pass vlan 10 20
[SW1-GigabitEthernet0/0/2]un sh
Info: Interface GigabitEthernet0/0/2 is not shutdown.

3.设置三层交换机LSW1-创建vlan,设置vlanif,设置接口,设置默认路由

system-view 
Enter system view, return user view with Ctrl+Z.
[Huawei]sysname SW2
[SW2]vlan batch 10 20 100
Info: This operation may take a few seconds. Please wait for a moment...done.
[SW2]int g0/0/1  
[SW2-GigabitEthernet0/0/1]port link-type trunk 
[SW2-GigabitEthernet0/0/1]port trunk allow-pass vlan 10 20
[SW2-GigabitEthernet0/0/1]un sh
Info: Interface GigabitEthernet0/0/1 is not shutdown.
[SW2-GigabitEthernet0/0/1]int g0/0/2 
[SW2-GigabitEthernet0/0/2]port link-type access 
[SW2-GigabitEthernet0/0/2]port default vlan 100
[SW2-GigabitEthernet0/0/2]un sh
Info: Interface GigabitEthernet0/0/2 is not shutdown.
[SW2-GigabitEthernet0/0/2]q
[SW2]int Vlanif 10
[SW2-Vlanif10]ip add 192.168.10.10 24                                           设置ip地址
[SW2-Vlanif10]vrrp vrid 1 virtual-ip 192.168.10.1                             设置虚拟ip地址
[SW2-Vlanif10]vrrp vrid 1 priority 120                                               设置优先级
[SW2-Vlanif10]vrrp vrid 1 track interface GigabitEthernet 0/0/1        监听g0/0/1 当这个端口down之后,优先级减10
[SW2-Vlanif10]vrrp vrid 1 track interface GigabitEthernet 0/0/2        监听g0/0/2 当这个端口down之后,优先级减10
[SW2]int Vlanif 20
[SW2-Vlanif20]ip add 192.168.20.10 24
[SW2-Vlanif20]vrrp vrid 2 virtual-ip 192.168.20.1
[SW2-Vlanif20]vrrp vrid 2 priority 115
[SW2-Vlanif20]un sh
Info: Interface Vlanif20 is not shutdown.
[SW2-Vlanif20]q
[SW2]int Vlanif 100
[SW2-Vlanif100]ip add 11.0.0.2 30                                       设置ip地址
[SW2-Vlanif100]q
[SW2]ip route-static 0.0.0.0 0.0.0.0 11.0.0.1                         默认路由

3.设置三层交换机LSW2-创建vlan,设置vlanif,设置接口,设置默认路由

system-view 
Enter system view, return user view with Ctrl+Z.
[Huawei]sysname SW3
[SW3]int g0/0/1
[SW3-GigabitEthernet0/0/1]port link-type trunk 
[SW3-GigabitEthernet0/0/1]port trunk allow-pass vlan 10 20
[SW3-GigabitEthernet0/0/1]un sh
Info: Interface GigabitEthernet0/0/1 is not shutdown.
[SW3-GigabitEthernet0/0/1]int g0/0/2
[SW3-GigabitEthernet0/0/2]q
[SW3]vlan batch 10 20 100
Info: This operation may take a few seconds. Please wait for a moment...done.
[SW3]int g0/0/2
[SW3-GigabitEthernet0/0/2]port link-type access 
[SW3-GigabitEthernet0/0/2]port default vlan 100
[SW3-GigabitEthernet0/0/2]un sh
Info: Interface GigabitEthernet0/0/2 is not shutdown.
[SW3-GigabitEthernet0/0/2]q
[SW3]int Vlanif 10
[SW3-Vlanif10]ip add 192.168.10.20 24
[SW3-Vlanif10]vrrp vrid 1 virtual-ip 192.168.10.1
[SW3-Vlanif10]vrrp vrid 1 priority 115
[SW3-Vlanif10]un sh
Info: Interface Vlanif10 is not shutdown.
[SW3]int Vlanif 20
[SW3-Vlanif20]ip add 192.168.20.20 24
[SW3-Vlanif20]vrrp vrid 2 virtual-ip 192.168.20.1 
[SW3-Vlanif20]vrrp vrid 2 priority 120
[SW3-Vlanif20]vrrp vrid 2 track interface GigabitEthernet0/0/1
[SW3-Vlanif20]vrrp vrid 2 track interface GigabitEthernet0/0/2
[SW3-Vlanif20]un sh
Info: Interface Vlanif20 is not shutdown.
[SW3]int Vlanif 100
[SW3-Vlanif100]ip add 12.0.0.2 30
[SW3-Vlanif100]un sh
Info: Interface Vlanif100 is not shutdown.
[SW3]ip route-static 0.0.0.0 0.0.0.0 12.0.0.1

5.设置路由器- 设置接口ip,静态路由

system-view 
Enter system view, return user view with Ctrl+Z.
[Huawei]sysname R1
[R1]int g0/0/0
[R1-GigabitEthernet0/0/0]ip add 11.0.0.1 30
[R1-GigabitEthernet0/0/0]un sh
Info: Interface GigabitEthernet0/0/0 is not shutdown.
[R1-GigabitEthernet0/0/0]int g0/0/1
[R1-GigabitEthernet0/0/1]ip add 12.0.0.1 30
[R1-GigabitEthernet0/0/1]un sh
Info: Interface GigabitEthernet0/0/1 is not shutdown.
[R1-GigabitEthernet0/0/1]q
[R1]ip route-static 192.168.10.0 24 11.0.0.2
[R1]ip route-static 192.168.20.0 24 11.0.0.2 preference 70
[R1]ip route-static 192.168.10.0 24 12.0.0.2 preference 70
[R1]ip route-static 192.168.20.0 24 12.0.0.2 
[R1]int LoopBack 0                                                                             设置环回口
[R1-LoopBack0]ip add 1.1.1.1 24

6.实验测试

浮动路由实验(VRRP)_第2张图片

down LSW1 的接口 可实现上内容

实验成功



 

 

 


 

 

   

你可能感兴趣的:(浮动路由实验(VRRP))