**Update Fabruary 3rd, 2026**
I noticed that this config path DOES exist, but is also not documented in VyOS!
```
protocols {
bgp {
address-family {
ipv4-unicast {
route-map {
vrf {
import myRouteMap
}
}
}
```
Converting this into a docs issue.
**Summary**
In FRR, it's possible to configure the following:
```
router bgp AS
address-family ipv4 unicast
import vrf route-map foobar
import vrf myVRF
exit-address-family
```
The `import vrf route-map foobar` currently cannot be configured in VyOS.
```
protocols {
bgp {
address-family {
ipv4-unicast {
import {
/* Currently cannot specify import vrf route-map <Route-Map> in VyOS... */
vrf myVRF
}
}
....
```
This command is currently undocumented in FRR, but appears to work just fine, relevant FRR docs issue https://github.com/FRRouting/frr/issues/20646
**Use case**
Filtering routes during direct VRF-to-VRF route leaking
**Additional information**
N/A