Upgrading from 1.3.4 to VyOS 1.4-rolling-202312031042 I ended up with two static routes not working. These worked perfectly before. Workaround for now is to point to the default-gw of eth0.
[email protected]:~$ show configuration commands | match dhcp-inter set protocols static route 111.111.22.227/32 dhcp-interface 'eth0' set protocols static route 111.111.22.228/32 dhcp-interface 'eth0' [email protected]:~$ show ip route 111.111.22.227/32 % Network not in table [email protected]:~$ show ip route 111.111.22.228/32 % Network not in table
Workaround:
set protocols static route 111.111.22.227/32 next-hop 111.111.128.1 set protocols static route 111.111.22.228/32 next-hop 111.111.128.1 [email protected]:~$ show ip route 111.111.22.227/32 Routing entry for 111.111.22.227/32 Known via "static", distance 1, metric 0, best Last update 00:06:26 ago * 111.111.128.1, via eth0, weight 1 [email protected]:~$ show ip route 111.111.22.228/32 Routing entry for 111.111.22.228/32 Known via "static", distance 1, metric 0, best Last update 00:06:29 ago * 111.111.128.1, via eth0, weight 1 [email protected]:~$