I'm trying to replicate in Netplan the equivalent of
ip -6 r a 2605:6400:1:fed5::1 dev eth0
There's no "via" address. I've tried:
routes:
- to: "2605:6400:1:fed5::1"
on-link: true
But unfortunately, netplan comes back with an error
Error in network definition //etc/netplan/01-netcfg.yaml line 13 column 8: unicast route must include both a 'to' and 'via' IP
Is there a fake 'via' address I should use? It seems netplan doesn't even have post-up hooks so I can't work around the problem.