linux 路由表如何配置round-robin 模式
时间: 2023-02-12 15:19:55 浏览: 272
Linux_Ad-hoc_mode_set_aodv-uu.tar.gz_ad hoc_ad-hoc linux_aodv-uu
在 Linux 中,可以使用 iproute2 工具来配置路由表。
要在路由表上配置 round-robin 模式,需要使用 ip route add 指令。
具体来说,可以这样做:
```
# 为目标地址为 192.168.1.0/24 的路由添加三条路径
ip route add 192.168.1.0/24 nexthop via 192.168.1.1 weight 1
ip route add 192.168.1.0/24 nexthop via 192.168.1.2 weight 1
ip route add 192.168.1.0/24 nexthop via 192.168.1.3 weight 1
# 设置路由表策略为 round-robin
ip route change 192.168.1.0/24 nexthop via 192.168.1.1 weight 1 nexthop via 192.168.1.2 weight 1 nexthop via 192.168.1.3 weight 1
```
上面的命令将会给192.168.1.0/24的路由添加三个nexthop,并设置三个nexthop的权重为1,这样就可以实现路由表的round-robin了。
阅读全文