祖瑞科技 全国计算机 网络IT运维社区!

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 7503|回复: 0

HCNA-20 浮动静态路由及负载均衡

[复制链接]

205

主题

218

帖子

1286

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1286
发表于 2021-2-5 16:32:40 | 显示全部楼层 |阅读模式
HCNA-20 浮动静态路由及负载均衡

基本配置
实现R2通信两处分点,分点与分点之间通信
<Huawei>system-view
[Huawei]sysnamer1
[r1]interfacegigabitethernet 0/0/0
[r1-GigabitEthernet0/0/0]ipaddress 172.16.12.1 24
[r1-GigabitEthernet0/0/0]interfacegigabitethernet 0/0/1
[r1-GigabitEthernet0/0/1]ipaddress 172.16.13.1 24
[r1-GigabitEthernet0/0/1]interfacegigabitethernet 0/0/2
[r1-GigabitEthernet0/0/2]ipaddress 172.16.10.1 24
[r1-GigabitEthernet0/0/2]quit
[r1]displayip interface brief
[r1]iproute-static 172.16.30.0 24 172.16.13.3
<Huawei>system-view
[Huawei]sysnamer2
[r2]interfaceGigabitEthernet 0/0/0
[r2-GigabitEthernet0/0/0]ipaddress 172.16.12.2 24
[r2-GigabitEthernet0/0/0]interfacegigabitethernet 0/0/1
[r2-GigabitEthernet0/0/1]ipaddress 172.16.23.2 24
[r2-GigabitEthernet0/0/1]quit
[r2]displayip interface brief
[r2]iproute-static 172.16.10.0 24 172.16.12.1
[r2]iproute-static 172.16.30.0 24 172.16.23.3
<Huawei>system-view
[Huawei]sysnamer3
[r3]interfacegigabitethernet 0/0/0
[r3-GigabitEthernet0/0/0]ipaddress 172.16.23.3 24
[r3-GigabitEthernet0/0/0]interfacegigabitethernet 0/0/1
[r3-GigabitEthernet0/0/1]ipaddress 172.16.13.3 24
[r3-GigabitEthernet0/0/1]interfacegigabitethernet 0/0/2
[r3-GigabitEthernet0/0/2]ipaddress 172.16.30.1 24
[r3-GigabitEthernet0/0/2]quit
[r3]displayip interface brief
[r3]iproute-static 172.16.10.0 24 172.16.13.1
PC>tracert172.16.30.100
tracerouteto 172.16.30.100, 8 hops max
(ICMP),press Ctrl+C to stop
1 172.16.10.1   16 ms  16 ms 15 ms
2 172.16.13.3   <1 ms  31 ms 16 ms
3 172.16.30.100   31 ms  16 ms 16 ms
配置浮动静态路由实现路由备份
[r1]ip route-static172.16.30.0 24 172.16.12.2 preference 100  //配置静态路由并设置优先级
[r1]displayip routing-table
RouteFlags: R - relay, D - download to fib
------------------------------------------------------------------------------
RoutingTables: Public
         Destinations : 14       Routes : 14      
Destination/Mask    Proto  Pre  Cost      Flags NextHop         Interface
     ……
0/0/1
    172.16.30.0/24  Static 60   0          RD  172.16.13.3     GigabitEthernet
0/0/1
255.255.255.255/32  Direct 0    0           D  127.0.0.1       InLoopBack0
查看路由表没有任何变化;
[r1]display ip routing-tableprotocol static  //查看静态路由的路由协议
Route Flags: R - relay, D -download to fib
------------------------------------------------------------------------------
Public routing table :Static
         Destinations : 1        Routes : 2        Configured Routes : 2
Static routing table status: <Active>
         Destinations : 1        Routes : 1
Destination/Mask    Proto  Pre  Cost      Flags NextHop         Interface
    172.16.30.0/24  Static 60   0          RD  172.16.13.3     GigabitEthernet
0/0/1
Static routing table status: <Inactive>
         Destinations : 1        Routes : 1
Destination/Mask    Proto  Pre  Cost      Flags NextHop         Interface
    172.16.30.0/24  Static 100  0          R   172.16.12.2     GigabitEthernet
0/0/0
查看结果是两条路由都存在,但R2的这条路由目前是不活动的状态Pre优先级为100。
R3进行同样配置。
[r3]ip route-static172.16.10.0 24 172.16.23.2 preference 100
关闭R1 G0/0/1测试
[r1]interfaceGigabitEthernet 0/0/1
[r1-GigabitEthernet0/0/1]shutdown
PC>tracert 172.16.30.100
traceroute to 172.16.30.100,8 hops max
(ICMP), press Ctrl+C to stop
1 172.16.10.1   15 ms  16 ms <1 ms
2 172.16.12.2   31 ms  16 ms 31 ms
3 172.16.23.3   16 ms  31 ms 31 ms
4 172.16.30.100   31 ms  32 ms 31 ms
[r1]display ip routing-tableprotocol static
Route Flags: R - relay, D -download to fib
------------------------------------------------------------------------------
Public routing table :Static
         Destinations : 1        Routes : 2        Configured Routes : 2
Static routing table status: <Active>
         Destinations : 1        Routes : 1
Destination/Mask    Proto  Pre  Cost      Flags NextHop         Interface
    172.16.30.0/24  Static 100  0          RD  172.16.12.2     GigabitEthernet
0/0/0
Static routing table status: <Inactive>
         Destinations : 1        Routes : 1
Destination/Mask    Proto  Pre  Cost      Flags NextHop         Interface
172.16.30.0/24 Static  60   0               172.16.13.3     Unknown
配置负载均衡
[r1]interfaceGigabitEthernet 0/0/1
[r1-GigabitEthernet0/0/1]undoshutdown
[r1-GigabitEthernet0/0/1]quit
[r1]ip route-static172.16.30.0 24 172.16.12.2
[r1]display ip routing-table
Route Flags: R - relay, D -download to fib
------------------------------------------------------------------------------
Routing Tables: Public
         Destinations : 14       Routes : 15      
Destination/Mask    Proto  Pre  Cost      Flags NextHop         Interface
……
    172.16.30.0/24  Static 60   0          RD  172.16.13.3     GigabitEthernet
0/0/1
                    Static  60  0          RD  172.16.12.2     GigabitEthernet
0/0/0
255.255.255.255/32  Direct 0    0           D  127.0.0.1       InLoopBack0
配置静态路由使用默认优先级后,目标172.16.30.0出现了两条可以到达的路由,不同的下一跳地址。这样便完成负载均衡。
再配置R3
[r3]ip route-static172.16.10.0 24 172.16.23.2
[r3]display ip routing-table
Route Flags: R - relay, D -download to fib
------------------------------------------------------------------------------
Routing Tables: Public
         Destinations : 14       Routes : 15      
Destination/Mask    Proto  Pre  Cost      Flags NextHop         Interface
      127.0.0.0/8   Direct 0    0           D  127.0.0.1       InLoopBack0
      127.0.0.1/32  Direct 0    0           D  127.0.0.1       InLoopBack0
127.255.255.255/32  Direct 0    0           D  127.0.0.1       InLoopBack0
    172.16.10.0/24  Static 60   0          RD  172.16.13.1     GigabitEthernet
0/0/1
                    Static  60  0          RD   172.16.23.2     GigabitEthernet
……
[r3]display ip routing-tableprotocol static
Route Flags: R - relay, D - downloadto fib
------------------------------------------------------------------------------
Public routing table :Static
         Destinations : 1        Routes : 2        Configured Routes : 2
Static routing table status: <Active>
         Destinations : 1        Routes : 2
Destination/Mask    Proto  Pre  Cost      Flags NextHop         Interface
    172.16.10.0/24  Static 60   0          RD  172.16.13.1     GigabitEthernet
0/0/1
                    Static  60  0          RD   172.16.23.2     GigabitEthernet
0/0/0
Static routing table status: <Inactive>
         Destinations : 0        Routes : 0
注意:当中由表中出现到过同一目标的多条等价路径时,路由器在转发到达该目的地的数据包会逐包,逐流,逐目的等负载均衡算法将数据包分布在相应的链路上发送。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
祖瑞(上海)网络科技有限公司
我们在全国范围提供企业IT运维、网络工程、弱电安装、监控安防、计算机产品收售、办公设备耗材等服务!
期待与您的合作!
邮箱:sanne@zurkj.com
电话:021-51850021 18918292296
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

公司网站

QQ|Archiver|手机版|小黑屋|祖瑞科技 全国计算机 网络IT运维社区! ( 沪ICP备16021636号-2 )

GMT+8, 2024-11-26 03:36 , Processed in 0.036069 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表