“route add -host xxx.xxx.xxx.xxx dev eth0:1”的含义

“route add -host xxx.xxx.xxx.xxx dev eth0:1”的含义

如果格式是:

route add -host 192.168.1.20 gw 10.1.1.20 dev eth0:1

我知道,它将路由 192.168.1.20 到 10.1.1.20

那么,“dev eth0:1”是什么意思呢?

答案1

包含“dev eth0:1”会强制内核使用 eth0:1 接口来处理与路由规范匹配的流量。

同样在这种情况下,接口规范适用于 eth0 上配置的别名接口或标签。

答案2

您必须分配一个接口来引导流量。

您的接口是 dev (device) eth0:1 :1 是接口的逻辑 ID,因为您可以在接口中配置多个网络。

相关内容