A bug has been encountered during the migration from VyOS 1.3.8 to VyOS 1.4.1. The configuration involves an IPsec VPN with a VTI interface and OSPF.
In version 1.3.8, the following commands were used for route redistribution:
```
set protocols ospf redistribute connected metric-type '2'
set protocols ospf redistribute kernel metric-type '2'
set protocols ospf redistribute static metric-type '2'
```
This configuration successfully transmitted both static routes and VTI routes. However, after migrating to VyOS 1.4.1, only static routes with a destination IP are being transmitted.
For instance, the following static route transmits without issues:
```
set protocols static route 172.31.0.0/16 next-hop 169.254.x.x distance '10'
```
```
O>* 172.31.0.0/16 [110/20] via 10.xx.xx.xx, eth0.xx, weight 1, 00:21:48
```
In contrast, routes using the VTI interface are not being transmitted:
```
set protocols static route 169.254.x.x/30 interface 'vti2' distance '20'
set protocols static route 10.x.x.0/16 interface vti0 distance '10'
```