Open
Description
AL2023 has cloud-init version 22.2.2 which is incorrectly writing the Routes into systemd-network, if we open /etc/systemd/network/10-cloud-init-eth0.network
We see the following:
[Route]
Destination=168.94.58.128/26
Destination=172.29.3.128/26
Gateway=172.29.18.1
This section is incorrectly configured as it should be:
[Route]
Destination=168.94.58.128/26
Gateway=172.29.18.1
[Route]
Destination=172.29.3.128/26
Gateway=172.29.18.1
Instance ID(s):
Resolution is to upgrade to cloud-init version 23.1
canonical/cloud-init#1868