将 ip route add 转换为 netplan 状态

将 ip route add 转换为 netplan 状态

我对以下命令有点困惑(我们在 ubuntu 14 /etc/network/interfaces 文件中有它)

启动 ip 路由添加本地 fc00::x:x:x/126 dev bond0

这里的“本地”是什么意思,如何在 ubuntu 18 中将其转换为 netplan 状态?

bonds: bonds0: routes: - to: fc00::x:x:x/126 scope: link

或者应该有所不同?

答案1

由于嵌入了冒号,必须引用地址 fc00::x:x:x/126:

bonds:
  bonds0:
    routes:
    - to: "fc00::x:x:x/126"
      scope: link

相关内容