直连路由

首先看一个简单的拓扑图
image.png
PC1与PC2通信的前提:
每台PC都配置好对应网段内的地址,同时配置好网关,网关为路由器上的接口地址
image.png
image.png
我们来看一下路由器里头的配置

  1. [Huawei]display ip interface brief
  2. *down: administratively down
  3. ^down: standby
  4. (l): loopback
  5. (s): spoofing
  6. The number of interface that is UP in Physical is 3
  7. The number of interface that is DOWN in Physical is 0
  8. The number of interface that is UP in Protocol is 3
  9. The number of interface that is DOWN in Protocol is 0
  10. Interface IP Address/Mask Physical Protocol
  11. GigabitEthernet0/0/0 2.0.0.1/24 up up
  12. GigabitEthernet0/0/1 1.0.0.1/24 up up
  13. NULL0 unassigned up up(s)
  14. [Huawei]
  15. [Huawei]display ip routing-table
  16. Route Flags: R - relay, D - download to fib
  17. ------------------------------------------------------------------------------
  18. Routing Tables: Public
  19. Destinations : 10 Routes : 10
  20. Destination/Mask Proto Pre Cost Flags NextHop Interface
  21. 1.0.0.0/24 Direct 0 0 D 1.0.0.1 GigabitEthernet
  22. 0/0/1
  23. 1.0.0.1/32 Direct 0 0 D 127.0.0.1 GigabitEthernet
  24. 0/0/1
  25. 1.0.0.255/32 Direct 0 0 D 127.0.0.1 GigabitEthernet
  26. 0/0/1
  27. 2.0.0.0/24 Direct 0 0 D 2.0.0.1 GigabitEthernet
  28. 0/0/0
  29. 2.0.0.1/32 Direct 0 0 D 127.0.0.1 GigabitEthernet
  30. 0/0/0
  31. 2.0.0.255/32 Direct 0 0 D 127.0.0.1 GigabitEthernet
  32. 0/0/0
  33. 127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0
  34. 127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0
  35. 127.255.255.255/32 Direct 0 0 D 127.0.0.1 InLoopBack0
  36. 255.255.255.255/32 Direct 0 0 D 127.0.0.1 InLoopBack0
  37. [Huawei]

当请求发出,PC通过自己的计算,发现自己不在另一个地址的同网段内。 就会将数据包发送到网关。随后在路由器解封装数据包之后发现目的地址可达则重新封装发送到目的地址。

注意点

路由器的三层接口不能配置同一个网段的地址,配置了就报错
image.png

静态路由

为什么会有静态路由。当上一个拓扑图拓展如下时:
PC1与PC2无法与PC4进行通信,因为他们没有进行直连的操作。
image.png

静态路由是什么

静态路由 - 图6

技术背景

image.png
image.png

静态路由的概述

  • 配置简单、开销小
  • 通过手动配置进行添加和维护
  • 无法根据拓扑的变化而自适应
  • 适合于组网规模较小的场景,在大型网络环境,则配置及维护成本很高
  • 在大型网络中,往往采用动、静态路由结合的方式部署网络

静态路由配置命令

Ip route-static 目标网络 子网掩码/前缀 下一跳/出接口 红色为关键词,紫色为可变
能配置下一跳IP地址时,就必须配置下一跳IP地址
出接口在什么时候配置能? 当遇到下一跳的地址为动态无法指定的时候
通信是双向的 需要配置返回的路由
image.png

等价路由

image.png
将preference 调大 则该路由会成为备份路由
优先级高的为活跃,优先级低的为非活跃
主链路故障,备份链路激活
image.png

缺省路由

缺省路由(网关):一种特殊的路由,能匹配所有目标网络
image.png
image.png

loopback 回环口,逻辑、虚拟的接口

静态路由 - 图14
回环口默认up
image.png