[18:10] Hi folks! Hope you are all well today! I'm trying to configure netplan to use an _interface_ route. Here's the /etc/network/interfaces equivalent: [18:10] auto enp196s0f0np0 [18:10] iface enp196s0f0np0 inet static [18:10]         mtu 9216 [18:10]         address 172.16.1.3/24 [18:10]         pointopoint 172.16.1.2 [18:10] And here's what seems to be the netplan equivalent: [18:10] enp196s0f0np0: [18:10]   addresses: [18:10]   - 172.16.1.3/32 [18:10]   routes: [18:10]   - to: 172.16.1.1/32 [18:10]     on-link: true [18:10] However, when I try to apply, I get this: [18:10] unicast route must include both a 'to' and 'via' [18:10] I tried adding a via to the configuration, and it applies, but the route is constructed improperly. Any thoughts on how to get the netplan to cooperate? [18:12] In other words, doing this: [18:12] enp196s0f0np0: [18:12]   addresses: [18:12]   - 172.16.1.3/32 [18:12]   routes: [18:12]   - to: 172.16.1.1/32 [18:12]     via: 172.16.1.1 [18:12]     on-link: true [18:12] Results in this route entry: [18:12] 172.16.1.1 via 172.16.1.1 dev enp196s0f0np0 proto static onlink [18:12] Which is _not_ an interface route. It should look like this: [18:12] 172.16.1.1 via dev enp196s0f0np0