Layer3-2 静态路由和负载均衡

session 1 静态路由
常用参数介绍:
R(config)#ip route 192.168.1.0 255.255.255.0 ?
  A.B.C.D            Forwarding router's address 下一跳地址
  FastEthernet     FastEthernet IEEE 802.3 出接口
  GigabitEthernet    GigabitEthernet IEEE 802.3z 出接口(千兆口)
  Loopback              Loopback interface 下一跳走还回接口
  Null             Null interface         指这条路由的数据全部走null空,类似丢包
  Port-channel        Ethernet Channel of interfaces 下一跳为走以太网捆绑链路
  Tunnel           Tunnel interface 下一跳为创建的隧道
  Vlan             Catalyst Vlans 下一条为vlan

R(config)#ip route 192.168.1.0 255.255.255.0 g5/46 ?        走出接口的参数
  <1-255>    Distance metric for this route metric度量值,小为优。
  A.B.C.D    Forwarding router's address 还可以跟下一跳地址,做双保险
  name       Specify name of the next hop 使用NETBIOS解析下一跳设备的ip
  permanent  permanent route 添加一条永久静态路由,不受接口up、down状态的影响。
  tag        Set tag for this route                 打tag,用于区分路由和分类策略
 
R(config)#ip route 192.168.1.0 255.255.255.0 172.18.1.2 ?      使用下一跳地址
  <1-255>    Distance metric for this route           metric度量值,小为优
  name       Specify name of the next hop 使用NETBIOS解析下一跳设备的ip
  permanent  permanent route 添加一条永久静态路由,不受接口up、down状态的影响。

  tag        Set tag for this route 打tag,用于区分路由和分类策略


session 2 常用静态路由和浮动路由技术
R(config)#ip route 192.168.1.0 255.255.255.0  f0/24            去往192.168.1.0网段的路由走出接口f0/24
R(config)#ip route 192.168.1.0 255.255.255.0 172.18.1.2      去往192.168.1.0网段的路由走下一跳地址为1.2
      这里看,走出接口和下一跳的区别:走出接口,可以省去路由递归查询过程,直接从接口转发出去。而下一跳需要做下一跳ip地址的递归查询,最终查询到的接口还是走某个接口,但是下一跳比出接口的优势在于可以同时对多个目的网络(每一个目的网路都有不同的下一跳,而出接口只有一个)。所以综合方案就是:

R(config)#ip route 192.168.1.0 255.255.255.0 f0/24 172.18.1.2  在静态路由中同时写出接口和下一跳地址,既可以不用地柜查询又解决了多个目的网络的路由问题。


2、浮动路由技术(和CEF的负载均衡模式有关,CEF默认是目的地址负载均衡)

Layer3-2 静态路由和负载均衡_第1张图片

      应用场景为上图中的拓扑,用浮动路由做理由热备份。
R1的f0/0口(192.168.2.2)连接R2的f0/0口(192.168.2.1) 路径1到达R4
R1的f0/0口(192.168.1.2)连接R3的f0/0口(192.168.1.1) 路径2到达R4
      上面场景中PC1到PC2的线路有两条,路径1和路径2,路径1带宽100M,而路径2的带宽10M,我们要让数据走路径1,而路径2作为路径1出现故障时的备用路由。利用merict度量值
R1(config)#ip route 172.16.1.0 255.255.255.0 f0/0 192.168.2.1 1    通过出接口f0/0下一跳192.168.2.1到达172.16.1.0网络,度量值为1
R1(config)#ip route 172.16.1.0 255.255.255.0 f1/0 192.168.1.1 2    通过出接口f1/0下一跳192.168.1.1到达172.16.1.0网络,度量值为2
      同一个目的地的路由能否被写入RIB的依据就是度量值merict,上面的两条相同目的的路由,路径1的度量值为1,而路径2的度量值为2,所以度量值为1的路由被写入到路由表中,而度量值为2的路由被保存在start-config中,当路径1消失时,路径2就被写入路由表。这样就起到路由热备份效果。
查看路由表的命令:
R1(config)#do show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     172.16.0.0/24 is subnetted, 1 subnets
S       172.16.1.0 [1/0] via 192.168.2.1, FastEthernet0/0                 S表示静态路由
C    192.168.1.0/24 is directly connected, FastEthernet1/0           C表示直连路由(接口产生的)
C    192.168.2.0/24 is directly connected, FastEthernet0/0
只有一条路由被写入RIB,但是shou run会全部显示
R1#show run
interface Vlan1
 no ip address
!
no ip http server
no ip http secure-server
!        
ip forward-protocol nd             CEF默认的负载均衡模式,目的destination负载均衡模式。
ip route 172.16.1.0 255.255.255.0 FastEthernet0/0 192.168.2.1          路由1
ip route 172.16.1.0 255.255.255.0 FastEthernet1/0 192.168.1.1 2       备用路由2
ip route 192.168.1.0 255.255.255.0 FastEthernet1/0 10.0.0.1             
 
session 3 缺省路由

R2(config)# ip route 0.0.0.0 0.0.0.0 f1/0 172.16.254.1 缺省的默认路由


你可能感兴趣的:(Layer3-2 静态路由和负载均衡)