我还没有找到如何在 Ubuntu Bionic 18.04 中配置 Netplan 并设置全局黑洞/无法访问路由的示例。所以我把它放在这里,以防其他人遇到同样的问题,这里有一个例子。
答案1
network:
version: 2
renderer: networkd
ethernets:
lo:
match:
name: lo
addresses: [ 127.0.0.2/32 ]
routes:
- to: 10.0.0.0/8
via: 0.0.0.0
metric: 240
type: unreachable
- to: 192.168.0.0/16
via: 0.0.0.0
metric: 240
type: unreachable
- to: 172.16.0.0/12
via: 0.0.0.0
metric: 240
type: unreachable
- to: 169.254.0.0/16
via: 0.0.0.0
metric: 240
type: blackhole
- 提示:如果没有“地址 127.0.0.2”或“通过 0.0.0.0”,netplan 将会默默忽略该配置。