如何使用 netplan 创建 GRE 隧道?以前在 /etc/network/interfaces 中,我会这样做。
iface gr0 inet manual
pre-up ip tunnel add gr0 mode gre remote 10.10.10.10 local 10.20.10.10 dev ens33 ttl 255
post-down ip tunnel del gre0
这如何转化为 netplan?
答案1
看起来这是一个老问题,但做了一些挖掘,发现了以下内容:
- NetPlan 中的隧道:示例显示 SIT 隧道,但更改为 GRE应该工作...
- netplan 隧道部分的属性:是的,GRE 是一个选择。
我现在已经成功尝试了这一点,并且它有效...TTL 部分我还没有让它工作,但是其他一切都正常......