GNS3 上的简单 VyOs 静态路由

网络工程 路由 gns3 维奥斯
2022-02-24 22:40:38

对不起初学者的问题。我试图在这个 GNS3 拓扑上简单地设置静态路由。具体来说,我希望 Sam 能够 ping Jack。我已经分配了所有 VPCS 机器的 ip,并为每个 VyOS 路由器配置了接口,使其与此拓扑相匹配。我想我弄乱了静态路由表。我已阅读VyOS 文档并尝试了以下命令:

路由器1

set protocols static route 10.10.10.0/24 next-hop 10.10.40.1
set protocols static route 10.10.40.0/24 next-hop 10.10.10.2

路由器2

set protocols static route 10.10.40.0/24 next-hop 10.10.20.1
set protocols static route 10.10.20.0/24 next-hop 10.10.40.2

在此处输入图像描述

当我尝试从 Sam ping Jacks 机器时,我得到 No Gateway Found。

提前致谢!

1个回答

路由器知道它所连接的接口所在的网络,因此它不需要那些路由。

它需要一条到达远程网络的路由。所以你必须告诉:

  • router-1 网络 10.10.20.0/24 和 10.10.30.0/24 在哪里
  • router-2 网络 10.10.10.0/24 和 10.10.30.0/24 在哪里
  • router-3 网络 10.10.10.0/24 和 10.10.20.0/24 在哪里

所以你可以删除你设置的静态路由

路由器 1

delete protocols static route 10.10.10.0/24
delete protocols static route 10.10.40.0/24 
set protocols static route 10.10.20.0/24 next-hop 10.10.40.2
set protocols static route 10.10.30.0/24 next-hop 10.10.50.2

路由器 2

delete protocols static route 10.10.20.0/24
delete protocols static route 10.10.40.0/24 
set protocols static route 10.10.10.0/24 next-hop 10.10.40.1
set protocols static route 10.10.30.0/24 next-hop 10.10.40.1

路由器 3

set protocols static route 10.10.10.0/24 next-hop 10.10.50.1
set protocols static route 10.10.20.0/24 next-hop 10.10.50.1