思科 GNS3 配置 vrrp

1. 实验拓扑:

使用GNS3模拟器(版本 0.8.5)

2.实验需求

1. 假设R3路由器为外网路由器,上面有一条虚拟网段3.3.3.0,模拟外网。

2. C1为vlan10 ,C2为vlan 20。

3. sw1作为vlan10的主路由器,vlan20的备用路由器。sw2作为vlan10的备用路由器,vlan10的主路由器。

4. 测试热备路由的效果。

实验步骤:

1. 配置C1,C2的IP地址,配置交换机sw4

3.实验配置:

配置脚本:

sw4#conf t

sw4(config)#no ip routing

sw4(config)#vlan 10,20

sw4(config-vlan)#ex

sw4(config)#int f1/1

sw4(config-if)#switchport access vlan 10

sw4(config-if)#int f1/2

sw4(config-if)#switchport access vlan 20

sw4(config-if)#int f1/3

sw4(config-if)#int range f1/3 -4

sw4(config-if-range)#switchport mode trunk

2.配置sw1

sw1#conf t

sw1(config)#ip routing                   //开启路由

sw1(config)#int f1/4

sw1(config-if)#no sh

sw1(config-if)#switchport mode trunk

sw1(config-if)#exit

sw1(config)#track 1 int f1/3 line-protocol

sw1(config-track)#track 2 int f1/4 line-protocol            //创建监听端口

sw1(config-track)#exit

sw1(config-vlan)#vlan 10,20

sw1(config-vlan)#ex

(1)配置vlan 10

sw1(config)#int vlan 10

sw1(config-if)#ip add 192.168.10.10 255.255.255.0

sw1(config-if)#no sh

sw1(config-if)#vrrp 1 ip 192.168.10.1         //虚拟网关IP

sw1(config-if)#vrrp 1 preempt                  //设置抢占

sw1(config-if)#vrrp 1 priority 100             //设置优先级,主要高于备用优先级

sw1(config-if)#vrrp 1 track 1                  //设置监听端口

sw1(config-if)#vrrp 1 track 2

(2)配置vlan 20

sw1(config)#int vlan 20

sw1(config-if)#ip add 192.168.20.10 255.255.255.0

sw1(config-if)#no sh

sw1(config-if)#vrrp 2 ip 192.168.20.1

sw1(config-if)#vrrp 2 preempt

sw1(config-if)#vrrp 2 priority 95              //要低于主路由器的优先级

3.配置sw2

sw2#conf t

sw2(config)#ip routing

sw2(config)#int f1/4

sw2(config-if)#no sh

sw2(config-if)#switchport mode trunk

sw2(config-if)#

dot1q trunk

sw2(config-if)#ex

sw2(config)#track 1 int f1/3 line-protocol

sw2config-track)#track 2 int f1/4 line-protocol

sw2(config-track)#ex

sw2(config)#vlan 10,20
(1)配置vlan 10

sw2(config-vlan)#int vlan 10

sw2(config-if)#ip add 192.168.10.20 255.255.255.0

sw2(config-if)#no sh

sw2(config-if)#vrrp 1 ip 192.168.10.1

sw2(config-if)#vrrp 1 preempt

sw2(config-if)#vrrp 1 priority 95

sw2(config-if)#ex

(2)配置vlan 20

sw2(config)#int vlan 20

sw2(config-if)#ip add 192.168.20.20 255.255.255.0

sw2(config-if)#no sh

sw2(config-if)#vrrp 2 ip 192.168.20.1

sw2(config-if)#vrrp 2 preempt

sw2(config-if)#vrrp 2 priority 100

sw2(config-if)#vrrp 2 track 1

sw2(config-if)#vrrp 2 track 2

sw2(config-if)#ex

4.分别在sw1,sw2上检查一下vrrp的配置是否正确

sw1#end

sw1#show vrrp brief

sw2#end

sw2#show vrrp b

无误,分别配置上行口IP

sw1(config)#int f1/3

sw1(config-if)#no switchport                              将二层口变为三层口

sw1(config-if)#ip add 13.0.0.1 255.255.255.0

sw1(config-if)#no sh

sw1(config-if)#ex

sw2(config)#int f1/3

sw2(config-if)#no switchport

sw2(config-if)#ip add 23.0.0.2 255.255.255.0

sw2(config-if)#no sh

sw2(config-if)#ex

配置外网路由器R3

R3#conf t

R3(config)#int f0/0

R3(config-if)#ip add 13.0.0.3 255.255.255.0

R3(config-if)#no sh

R3(config-if)#int f0/1

R3(config-if)#ip add 23.0.0.3 255.255.255.0

R3(config-if)#no sh

R3(config-if)#exit

vlan 10

R3(config)#int loopback 10                           //建立虚拟接口

R3(config-if)#ip add 3.3.3.3 255.255.255.0

R3(config-if)#no sh

R3(config-if)#ex

5.使用动态协议RIP互相告知网段

这里简单介绍以下动态路由RIP

RIP是一种距离矢量动态路由协议,通告相邻路由器宣告各自的直连网段,互相学习,达到互通的目的。同时,RIP协议本身也自带了防环机制,包括:水平分割、路由中毒等等。

R3(config)#router rip                          //启动RIP协议

R3(config-router)#network 3.3.3.0              //告知与自己直连网段,以便相邻路由器学习

R3(config-router)#network 13.0.0.0

R3(config-router)#network 23.0.0.0

sw1(config)#router rip

sw1(config-router)#network 13.0.0.0

sw1(config-router)#network 192.168.10.0

sw1(config-router)#network 192.168.20.0

sw2(config)#router rip

sw2(config-router)#network 23.0.0.0

sw2(config-router)#network 192.168.10.0

sw2(config-router)#network 192.168.20.0

4.结果验证:

设置C1 ip

设置C2 ip

这个走向正确

时间: 2025-01-15 10:03:24

思科 GNS3 配置 vrrp的相关文章

思科 GNS3 配置 NAT 端口映射

NAT 端口映射 1. 实验拓扑 使用GNS3模拟器版本 0.8.5 2.实验需求 1实现R2路由器上的C2 能够通过NAT端口映射上公网 2实现R1路由器上的C1能够通过NAT端口映射上公网 3.实验配置: IP规划 C1 C2 R1(config)#int f0/0 R1(config-if)#ip add 12.0.0.1 255.255.255.0 R1(config-if)#no sh R1(config-if)#int f R1(config-if)#int f0/1 R1(conf

思科 GNS3 配置 静态 NAT

静态NAT 1. 实验拓扑 使用GNS3模拟器版本 0.8.5 2.实验需求 1C1通过静态nat上公网 3. 实验拓扑 IP规划 R1(config)#int f0/0 R1(config-if)#ip add 12.0.0.1 255.255.255.0 R1(config-if)#no sh R1(config-if)#int f0/1 R1(config-if)#ip add 192.168.10.1 255.255.255.0 R1(config-if)#no sh R1(config

思科 GNS3 配置 HSRP 热备份选择协议

HSRP 热备份选择协议 1. 实验拓扑: 使用GNS3模拟器(版本 0.8.5) C1连接VM1网卡   因为模拟器pc  不支持  trasert 所以绑定真实网卡 2.实验需求 1R3的路由器挂了 线路192.168.10.20可以自动切换到R2工作 2R2的路由器挂了 线路192.168.10.10可以自动切换到R3工作 3.实验配置 IP规划 sw1#conf t sw1(config)#no ip routing R2#conf t R2(config)#int f0/1 R2(co

思科 GNS3 配置 dhcp 单臂路由

1. 实验拓扑: 使用GNS3模拟器(版本 0.8.5) 2.实验需求: 1:在R1上做DHCP 分配地址 2:sw1 上做中继 配置脚本 (1)在SW1上创建vlan20   关闭路由功能 sw1(config)#no ip routing sw1(config)#vlan 10 sw1(config-vlan)#vlan 20 SW1(config-vlan)#exit (2)将SW1的f0/1和f0/2模式设置为access,并分别加入valn10和vlan20 SW1(config)#i

思科 GNS3 配置 链路捆绑

链路捆绑 1. 实验拓扑: 使用GNS3模拟器(版本 0.8.5) 2.实验需求: 1  把sw1的3个接口集合成一个接口 2  把sw2的3个接口集合成一个接口 3.配置脚本 给c1c2配IP sw1#conf t sw1(config)#no ip routing   关闭路由功能 ctri +c sw1# sw1#show ip int f1/10 代宽是100M   要把他集合成300M sw1:上配置 sw1#conf t sw1(config)#int range fa1/10 -1

思科 GNS3 配置 rip OSPF 路由重发布

1::给R1 0/1 R2 0/1 0/0 look 0 R3 0/0 配置OSPF 放入aren1 2:给R3 0/0 look 0  R4 0/1 配置OSPF 放入aren0 3: 给R4 0/0 look 0 R5 0/0 look 0 放入 aren 2 4:给R1 0/0 look 0 R6 0/0 look 0 放入version 3 5:给R6 R1 配rip 6:给R1 R2 R3 R4 R5 配OSPF 7:实现互通 R1 conf t int f0/1 ip add 11.

华为 配置VRRP

华为配置VRRP 实验: 思路及步骤: 1.sw1 创建vlan10 vlan20 vlan30 vlan40,各自端口加入各自vlan    0/0/5   0/0/6 为trunk模式, 2.在sw2上配置: 0/0/5为trunk模式,创建vlan10 20 30 40 配置   vlanif10 ip:192.168.10.254/24 vlanif20 ip:192.168.20.254/24 vlanif30 ip:192.168.30.254/24 vlanif40 ip:192.

思科命令配置小技巧三:alias 命令

大家都用过手机上的快捷拨号设置 思科设备是否支持命令的快捷键定义呢 答案是肯定的 suzhouxiaoniu(config)#alias exec xx show ip inter bri  xx是自定义的快捷键名称,可以是数字 suzhouxiaoniu#xx 直接敲定义好的名称Interface                  IP-Address      OK? Method Status                ProtocolFastEthernet1/0          

思科命令配置小技巧四:用ACL控制debug 输出

使用debug命令可以帮助我们TS,但是使用debug命令往往会输出一大堆信息,很多是我们不需要用的,也会造成CPU高负荷,这种情况下我们可以限制debug的输出 可以应用ACL到debug以限定仅输出要求的debug信息. 如仅查看从1.1.1.1到1.1.1.2的ICMP包: Router(config)# access-list 100 permit icmp host 1.1.1.1 host 1.1.1.2 Router# debug ip packet detail 100 思科命令