[11:26] I'm trying to follow this tutorial to set up netplan, however I have an issue. When attempting to set up two routes as instructed, I get the following error, multiple times, in quick succession: [11:26] Problem encountered while validating default route consistency.Please set up multiple routing tables and use `routing-policy` instead. [11:26] Error: Conflicting default route declarations for IPv4 (table: main, metric: default), first declared in eth0 but also in eth0 [11:26] (Apologies for the unformatted stuff in here btw, Idk how to format stuff in this IRC.) [11:26] Here is the link to that tutorial btw: https://github.com/elitetheespeon/scripts/blob/main/full_wg_tunnel_remote_example.sh [11:26] Here is my current configuration: [11:26] # /etc/netplan/01-netcfg.yaml [11:26] network: [11:26]   version: 2 [11:26]   renderer: networkd [11:26]   ethernets: [11:26]     eth0: [11:26]       addresses: [11:26]         - 157.245.132.105/32 [11:26]       routes: [11:26]         - on-link: true [11:26]           to: 0.0.0.0/0 [11:26]           via: 157.245.128.1 [11:43] I think you're missing a "-" before "to:". also, why not "routes > - to: default > via: "? [12:06] Doing that generates the error again [12:06] # /etc/netplan/01-netcfg.yaml [12:06] network: [12:06]   version: 2 [12:06]   renderer: networkd [12:06]   ethernets: [12:06]     eth0: [12:06]       addresses: [12:06]         - 157.245.132.105/32 [12:06]       routes: [12:06]         - on-link: true [12:06]           to: default [12:06]           via: 157.245.128.1 [12:06]         - to: 154.29.72.128/32 [12:06]           via: 157.245.128.1 [12:06]           on-link: true